source: roaraudio/roard/req.c @ 1030:21c645bcc836

Last change on this file since 1030:21c645bcc836 was 1030:21c645bcc836, checked in by phi, 15 years ago

use flags on req for stream para

File size: 14.7 KB
Line 
1//req.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "roard.h"
26
27int req_on_noop        (int client, struct roar_message * mes, char * data) {
28 mes->cmd     = ROAR_CMD_OK;
29 mes->datalen = 0;
30 return 0;
31}
32
33int req_on_identify    (int client, struct roar_message * mes, char * data) {
34 struct roar_client * c;
35 int max_len;
36
37 if ( mes->datalen < 1 )
38  return -1;
39
40 clients_get(client, &c);
41
42 if ( mes->data[0] == 1 ) {
43  if ( c->pid == -1 ) {
44   c->pid       = ROAR_NET2HOST32(*(uint32_t*)((mes->data)+1));
45   ROAR_DBG("req_on_identify(): new PID: c->pid = %i", c->pid);
46  }
47
48  ROAR_DBG("req_on_identify(): final PID: c->pid = %i", c->pid);
49
50  max_len = (mes->datalen - 5) < (ROAR_BUFFER_NAME-1) ? (mes->datalen - 5) : (ROAR_BUFFER_NAME-1);
51
52  strncpy(c->name, mes->data + 5, max_len);
53  c->name[max_len] = 0;
54
55  mes->cmd     = ROAR_CMD_OK;
56  mes->datalen = 0;
57
58  ROAR_DBG("req_on_identify(*): client=%i, pid=%i", client, c->pid);
59  ROAR_DBG("req_on_identify(*) = 0");
60  return 0;
61 }
62
63 return -1;
64}
65
66int req_on_auth        (int client, struct roar_message * mes, char * data) {
67 // TODO: add code to support some auth.
68 mes->cmd     = ROAR_CMD_OK;
69 mes->datalen = 0;
70 return 0;
71}
72
73
74int req_on_new_stream  (int client, struct roar_message * mes, char * data) {
75 int stream;
76 struct roar_stream * s;
77
78 if ((stream = streams_new()) == -1 )
79  return -1;
80
81 if ( streams_get(stream, (struct roar_stream_server **)&s) == -1 ) {
82  streams_delete(stream);
83  return -1;
84 }
85
86 if ( client_stream_add(client, stream) == -1 ) {
87  streams_delete(stream);
88  return -1;
89 }
90
91 if ( roar_stream_m2s(s, mes) == -1 ) {
92  streams_delete(stream);
93  return -1;
94 }
95
96 ROAR_STREAM(s)->id = stream; // roar_stream_m2s() resets this
97 ROAR_STREAM_SERVER(s)->codec_orgi = ROAR_STREAM(s)->info.codec;
98
99 mes->cmd     = ROAR_CMD_OK;
100 mes->stream  = stream;
101 mes->datalen = 0;
102
103 return 0;
104}
105
106int req_on_exec_stream (int client, struct roar_message * mes, char * data) {
107 int r;
108
109 if ( (r = client_stream_exec(client, mes->stream)) == -1 )
110  return -1;
111
112 mes->cmd     = ROAR_CMD_OK;
113 mes->datalen = 0;
114
115 return 0;
116}
117
118int req_on_con_stream  (int client, struct roar_message * mes, char * data) {
119 char   host[80] = {0};
120 int    port = 0;
121 int    type;
122 int    fh;
123 int    len;
124
125 if ( mes->datalen < 4 )
126  return -1;
127
128 if ( *(mes->data) != 0 )
129  return -1;
130
131 if ( mes->datalen > 80 ) // we do not support long messages here
132  return -1;
133
134 type = (unsigned)mes->data[1];
135 port = ROAR_NET2HOST16(((uint16_t*)mes->data)[1]);
136
137 len = mes->datalen - 4;
138
139 strncpy(host, &(mes->data[4]), len);
140 host[len] = 0;
141
142 if ( type > ROAR_SOCKET_TYPE_MAX )
143  return -1;
144
145 if ( type == ROAR_SOCKET_TYPE_FILE ) // disabled because of security resons
146  return -1;
147
148 if ( type == ROAR_SOCKET_TYPE_FORK ) // why should we connect to ourself?
149  return -1;
150
151 ROAR_DBG("req_on_con_stream(*): CONNECT(type=%i, host='%s', port=%i)", type, host, port);
152
153 if ( (fh = roar_socket_open(ROAR_SOCKET_MODE_CONNECT, type, host, port)) == -1 )
154  return -1;
155
156 if ( client_stream_set_fh(client, mes->stream, fh) == -1 ) {
157  close(fh);
158  return 1;
159 }
160
161 mes->datalen = 0;
162 mes->cmd     = ROAR_CMD_OK;
163
164 return 0;
165}
166
167int req_on_passfh      (int client, struct roar_message * mes, char * data) {
168 int fh;
169 int sock = clients_get_fh(client);
170
171 if ( (fh = roar_socket_recv_fh(sock, NULL, NULL)) == -1 )
172  return -1;
173
174 if ( client_stream_set_fh(client, mes->stream, fh) == -1 ) {
175  close(fh);
176  return 1;
177 }
178
179
180 mes->datalen = 0;
181 mes->cmd     = ROAR_CMD_OK;
182
183 return 0;
184}
185
186int req_on_set_meta    (int client, struct roar_message * mes, char * data) {
187 int type;
188 int mode;
189 int namelen, vallen;
190 char   val[255+1];
191 char   name[ROAR_META_MAX_NAMELEN+1];
192
193 if ( mes->datalen < 3 )
194  return -1;
195
196 if ( mes->data[0] != 0 ) // version
197  return -1;
198
199 mode = (unsigned) mes->data[1];
200 type = (unsigned) mes->data[2];
201
202 ROAR_DBG("req_on_set_meta(*): mode=%i, type=%i", mode, type);
203
204 if ( mode == ROAR_META_MODE_CLEAR ) {
205  stream_meta_clear(mes->stream);
206  mes->datalen = 0;
207  mes->cmd     = ROAR_CMD_OK;
208  return 0;
209 } else if ( mode == ROAR_META_MODE_DELETE ) { // unsuppoerted at the moment
210 } else if ( mode == ROAR_META_MODE_SET || mode == ROAR_META_MODE_ADD ) {
211  if ( mes->datalen < 5 )
212   return -1;
213
214  namelen = (unsigned) mes->data[3];
215  vallen  = (unsigned) mes->data[4];
216
217  ROAR_DBG("req_on_set_meta(*): namelen=%i, vallen=%i", namelen, vallen);
218
219  if ( mes->datalen < (5 + namelen + vallen) )
220   return -1;
221
222  if ( namelen > ROAR_META_MAX_NAMELEN )
223   return -1;
224
225  strncpy(name, &(mes->data[5]), namelen);
226  name[namelen] = 0;
227
228  if ( vallen > 255 )
229   return -1;
230
231  strncpy(val, &(mes->data[5+namelen]), vallen);
232  val[vallen] = 0;
233
234  if ( mode == ROAR_META_MODE_SET ) {
235   if ( stream_meta_set(mes->stream, type, name, val) == -1 )
236    return -1;
237  } else {
238   if ( stream_meta_add(mes->stream, type, name, val) == -1 )
239    return -1;
240  }
241
242  mes->datalen = 0;
243  mes->cmd     = ROAR_CMD_OK;
244  return 0;
245 } else { // unknown mode!
246  return -1;
247 }
248
249 return -1;
250}
251
252int req_on_get_meta    (int client, struct roar_message * mes, char * data) {
253 int vallen;
254 int type;
255 char val[LIBROAR_BUFFER_MSGDATA-1];
256
257 if ( mes->datalen != 2 )
258  return -1;
259
260 if ( mes->data[0] != 0 ) // version
261  return -1;
262
263 type = (unsigned) mes->data[1];
264
265 if ( stream_meta_get(mes->stream, type, NULL, val, LIBROAR_BUFFER_MSGDATA-2) == -1 )
266  return -1;
267
268 vallen = strlen(val);
269
270 mes->cmd     = ROAR_CMD_OK;
271 mes->datalen = 2 + vallen;
272
273 mes->data[0] = 0;
274 mes->data[1] = (unsigned char) vallen;
275
276 val[vallen] = 0;
277
278 strncpy(&(mes->data[2]), val, vallen+1);
279
280 return 0;
281}
282
283int req_on_list_meta   (int client, struct roar_message * mes, char * data) {
284 int i;
285 int len = 0;
286 int types[ROAR_META_MAX_PER_STREAM];
287
288 if ( mes->datalen != 1 )
289  return -1;
290
291 if ( mes->data[0] != 0 ) // version
292  return -1;
293
294 if ( (len = stream_meta_list(mes->stream, types, ROAR_META_MAX_PER_STREAM)) == -1 )
295  return -1;
296
297 mes->cmd     = ROAR_CMD_OK;
298 mes->datalen = 1 + len;
299 mes->data[0] = 0;
300
301 for (i = 0; i < len; i++)
302  mes->data[i+1] = types[i];
303
304 return 0;
305}
306
307int req_on_server_oinfo    (int client, struct roar_message * mes, char * data) {
308 struct roar_stream s;
309//ROAR_DIR_OUTPUT
310
311 memset(&s, 0, sizeof(struct roar_stream));
312
313 s.dir           = ROAR_DIR_MIXING;
314 s.pos_rel_id    = -1;
315 s.info.rate     = g_sa->rate;
316 s.info.bits     = g_sa->bits;
317 s.info.channels = g_sa->channels;
318 s.info.codec    = g_sa->codec;
319 s.pos           = g_pos;
320
321 if ( roar_stream_s2m(&s, mes) == -1 )
322  return -1;
323
324 mes->cmd = ROAR_CMD_OK;
325
326 return 0;
327}
328
329
330int req_on_get_standby (int client, struct roar_message * mes, char * data) {
331 mes->cmd = ROAR_CMD_OK;
332 mes->datalen = 2;
333
334 *((uint16_t*)mes->data) = ROAR_HOST2NET16((unsigned) g_standby);
335
336 return 0;
337}
338
339int req_on_set_standby (int client, struct roar_message * mes, char * data) {
340 if ( mes->datalen != 2 )
341  return -1;
342
343 g_standby = ROAR_NET2HOST16(*((uint16_t*)mes->data));
344
345 mes->cmd     = ROAR_CMD_OK;
346 mes->datalen = 0;
347
348 return 0;
349}
350
351int req_on_exit      (int client, struct roar_message * mes, char * data) {
352 int term = 0;
353
354 if ( mes->datalen == 1 )
355  term = mes->data[0];
356
357 mes->cmd     = ROAR_CMD_OK;
358 mes->datalen = 0;
359
360 ROAR_DBG("req_on_exit(*): term=%i", term);
361
362 if ( term ) {
363  cleanup_listen_socket(1);
364 } else {
365  alive = 0;
366 }
367
368 return 0;
369}
370
371int req_on_list_clients(int client, struct roar_message * mes, char * data) {
372 unsigned char filter, cmp;
373 uint32_t id;
374 int clients[ROAR_CLIENTS_MAX];
375 int i, c = 0;
376
377 if ( roar_ctl_m2f(mes, &filter, &cmp, &id) == -1 )
378  return -1;
379
380 // TODO: add code to support filter
381 if ( filter != ROAR_CTL_FILTER_ANY )
382  return -1;
383
384 for (i = 0; i < ROAR_CLIENTS_MAX; i++) {
385  if ( g_clients[i] != NULL ) {
386   clients[c++] = i;
387  }
388 }
389
390 roar_ctl_ia2m(mes, clients, c);
391
392 mes->cmd = ROAR_CMD_OK;
393
394 return 0;
395}
396int req_on_list_streams(int client, struct roar_message * mes, char * data) {
397 unsigned char filter, cmp;
398 uint32_t id;
399 int streams[ROAR_STREAMS_MAX];
400 int i, c = 0;
401
402 if ( roar_ctl_m2f(mes, &filter, &cmp, &id) == -1 )
403  return -1;
404
405 // TODO: add code to support filter
406 if ( filter != ROAR_CTL_FILTER_ANY )
407  return -1;
408
409 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
410  if ( g_streams[i] != NULL ) {
411   streams[c++] = i;
412  }
413 }
414
415 roar_ctl_ia2m(mes, streams, c);
416
417 mes->cmd = ROAR_CMD_OK;
418
419 return 0;
420}
421
422int req_on_get_client  (int client, struct roar_message * mes, char * data) {
423 struct roar_client * c;
424
425 if ( mes->datalen != 1 )
426  return -1;
427
428 if ( clients_get(mes->data[0], &c) == -1 )
429  return -1;
430
431 mes->cmd = ROAR_CMD_OK;
432
433 return roar_ctl_c2m(mes, c);
434}
435
436int req_on_get_stream  (int client, struct roar_message * mes, char * data) {
437 struct roar_stream_server * s;
438
439 if ( mes->datalen != 1 )
440  return -1;
441
442 if ( streams_get(mes->data[0], &s) == -1 )
443  return -1;
444
445 mes->cmd = ROAR_CMD_OK;
446 mes->stream = mes->data[0];
447
448 return roar_stream_s2m(ROAR_STREAM(s), mes);
449}
450
451int req_on_get_stream_para (int client, struct roar_message * mes, char * data) {
452 struct roar_stream * s;
453 struct roar_stream_server * ss;
454 struct roar_audio_info * audio_info;
455 uint16_t * d = (uint16_t *) mes->data;
456 int i;
457
458 if ( mes->datalen != 4 )
459  return -1;
460
461 for (i = 0; i < mes->datalen/2; i++) {
462  d[i] = ROAR_NET2HOST16(d[i]);
463 }
464
465 if ( streams_get(mes->stream, &ss) == -1 ) {
466  ROAR_WARN("req_on_get_stream_para(*): request on non existing (or other error?) stream %i", mes->stream);
467  return -1;
468 }
469
470 s = ROAR_STREAM(ss);
471
472 audio_info = &(s->info);
473
474 if ( d[0] != 0 || d[1] != 1 ) {
475  ROAR_WARN("req_on_get_stream_para(*): unsupported command version: %i, %i", d[0], d[1]);
476  return -1;
477 }
478
479 mes->datalen = 2*7;
480
481 d[2] = ROAR_OUTPUT_CALC_OUTBUFSIZE(audio_info);
482 d[3] = ss->pre_underruns;
483 d[4] = ss->post_underruns;
484 d[5] = ss->codec_orgi;
485 d[6] = ss->flags | (ss->primary ? ROAR_FLAG_PRIMARY : 0) | (ss->driver_id != -1 ? ROAR_FLAG_OUTPUT : 0);
486
487 for (i = 0; i < mes->datalen/2; i++) {
488  d[i] = ROAR_HOST2NET16(d[i]);
489 }
490
491 mes->pos = s->pos;
492
493 mes->cmd = ROAR_CMD_OK;
494 return 0;
495}
496
497int req_on_kick (int client, struct roar_message * mes, char * data) {
498 uint16_t * info = (uint16_t *) mes->data;
499
500 if ( mes->datalen != 4 )
501  return -1;
502
503 info[0] = ROAR_NET2HOST16(info[0]);
504 info[1] = ROAR_NET2HOST16(info[1]);
505
506 if ( info[0] == ROAR_OT_CLIENT ) {
507  clients_delete(info[1]);
508 } else if ( info[0] == ROAR_OT_STREAM ) {
509  streams_delete(info[1]);
510 } else {
511  return -1;
512 }
513
514 mes->cmd     = ROAR_CMD_OK;
515 mes->datalen = 0;
516
517 return 0;
518}
519
520int req_on_attach      (int client, struct roar_message * mes, char * data) {
521 uint16_t * info = (uint16_t *) mes->data;
522
523 if ( mes->datalen < 6 )
524  return -1;
525
526 info[0] = ROAR_NET2HOST16(info[0]);
527 info[1] = ROAR_NET2HOST16(info[1]);
528 info[2] = ROAR_NET2HOST16(info[2]);
529
530 if ( info[0] != 0 )
531  return -1;
532
533 if ( info[1] == ROAR_ATTACH_SIMPLE ) {
534  if ( client_stream_move(info[2], mes->stream) == -1 )
535   return -1;
536 } else {
537  return -1;
538 }
539
540 mes->cmd     = ROAR_CMD_OK;
541 mes->datalen = 0;
542
543 return 0;
544}
545
546int req_on_set_vol (int client, struct roar_message * mes, char * data) {
547 uint16_t * info = (uint16_t *) mes->data;
548 int stream;
549 struct roar_stream_server * s;
550 int i;
551 int chans;
552
553 ROAR_DBG("req_on_set_vol(*) = ?");
554 ROAR_DBG("req_on_set_vol(*): mes->datalen=%i", mes->datalen);
555
556 if ( mes->datalen < (4*2) )
557  return -1;
558
559 if ( info[0] != 0 ) // version
560  return -1;
561
562 stream = ROAR_NET2HOST16(info[1]);
563 ROAR_DBG("req_on_set_vol(*): stream=%i", stream);
564
565 // TODO: change this code.
566 //       we should not directly change the stream object but use some stream_*()-func
567 //       for that job.
568
569 if ( stream < 0 || stream >= ROAR_STREAMS_MAX )
570  return -1;
571
572 s = g_streams[stream];
573
574 if ( s == NULL )
575  return -1;
576
577 ROAR_DBG("req_on_set_vol(*): s=%p", s);
578
579 info[2] = ROAR_NET2HOST16(info[2]);
580
581 if ( info[2] == ROAR_SET_VOL_ALL ) {
582  chans = (mes->datalen/2) - 3;
583  ROAR_DBG("req_on_set_vol(*): mode is ROAR_SET_VOL_ALL, channes=%i", chans);
584
585  if ( chans >= ROAR_MAX_CHANNELS )
586   return -1;
587
588  ROAR_DBG("req_on_set_vol(*): mixer at %p", s->mixer.mixer);
589
590  for (i = 0; i < chans; i++) {
591   s->mixer.mixer[i] = ROAR_NET2HOST16(info[i+3]);
592   ROAR_DBG("req_on_set_vol(*): channel %i: %i", i, ROAR_NET2HOST16(info[i+3]));
593  }
594
595  ROAR_DBG("req_on_set_vol(*): mixer changed!");
596
597 } else if ( info[2] == ROAR_SET_VOL_ONE ) {
598  ROAR_DBG("req_on_set_vol(*): mode is ROAR_SET_VOL_ONE");
599  if ( ROAR_NET2HOST16(info[3]) >= ROAR_MAX_CHANNELS )
600   return -1;
601
602  s->mixer.mixer[ROAR_NET2HOST16(info[3])] = ROAR_NET2HOST16(info[4]);
603 } else {
604  return -1;
605 }
606
607 mes->cmd     = ROAR_CMD_OK;
608 mes->datalen = 0;
609
610 return 0;
611}
612
613int req_on_get_vol (int client, struct roar_message * mes, char * data) {
614 uint16_t * info = (uint16_t *) mes->data;
615 int stream;
616 struct roar_stream_server * s;
617 int i;
618 int chans;
619
620 ROAR_DBG("req_on_get_vol(*) = ?");
621 ROAR_DBG("req_on_get_vol(*): mes->datalen=%i", mes->datalen);
622
623 if ( mes->datalen < (2*2) )
624  return -1;
625
626 if ( info[0] != 0 ) // version
627  return -1;
628
629 stream = ROAR_NET2HOST16(info[1]);
630 ROAR_DBG("req_on_get_vol(*): stream=%i", stream);
631
632 // TODO: change this code.
633 //       we should not directly change the stream object but use some stream_*()-func
634 //       for that job.
635
636 if ( stream < 0 || stream >= ROAR_STREAMS_MAX )
637  return -1;
638
639 s = g_streams[stream];
640
641 if ( s == NULL )
642  return -1;
643
644 ROAR_DBG("req_on_get_vol(*): s=%p", s);
645
646 // ok, we have everything
647
648 info[0] = 0;
649 info[1] = ROAR_HOST2NET16(chans = ROAR_STREAM(s)->info.channels);
650
651 for (i = 0; i < chans; i++)
652  info[2+i] = ROAR_HOST2NET16(s->mixer.mixer[i]);
653
654 mes->datalen = (2 + chans)*2;
655 mes->cmd = ROAR_CMD_OK;
656
657 return 0;
658}
659
660int req_on_add_data (int client, struct roar_message * mes, char * data) {
661 struct roar_buffer * b;
662 char               * buf;
663
664 if ( roar_buffer_new(&b, mes->datalen) == -1 ) {
665  ROAR_ERR("req_on_add_data(*): Can not alloc buffer space!");
666  ROAR_DBG("req_on_add_data(*) = -1");
667  return -1;
668 }
669
670 roar_buffer_get_data(b, (void **)&buf);
671
672 if ( data == NULL ) {
673  memcpy(buf, mes->data, mes->datalen);
674 } else {
675  memcpy(buf, data, mes->datalen);
676 }
677
678 if ( stream_add_buffer(mes->stream, b) == -1 ) {
679  roar_buffer_free(b);
680  return -1;
681 }
682
683 mes->cmd     = ROAR_CMD_OK_STOP;
684 mes->datalen = 0;
685
686 return 0;
687}
688
689//ll
Note: See TracBrowser for help on using the repository browser.