source: roaraudio/roard/req.c @ 4272:9dbff74050ba

Last change on this file since 4272:9dbff74050ba was 4272:9dbff74050ba, checked in by phi, 14 years ago

support to reg and unreg for LTM :))

File size: 26.5 KB
Line 
1//req.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2010
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, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include "roard.h"
27
28int req_on_noop        (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
29 mes->cmd     = ROAR_CMD_OK;
30 mes->pos     = g_pos;
31 mes->datalen = 0;
32 return 0;
33}
34
35int req_on_identify    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
36 struct roar_client * c;
37 int max_len;
38
39 if ( mes->datalen < 1 )
40  return -1;
41
42 clients_get(client, &c);
43
44 if ( mes->data[0] == 1 ) {
45  if ( c->pid == -1 ) {
46   c->pid       = ROAR_NET2HOST32(*(uint32_t*)((mes->data)+1));
47   ROAR_DBG("req_on_identify(): new PID: c->pid = %i", c->pid);
48  }
49
50  ROAR_DBG("req_on_identify(): final PID: c->pid = %i", c->pid);
51
52  max_len = (mes->datalen - 5) < (ROAR_BUFFER_NAME-1) ? (mes->datalen - 5) : (ROAR_BUFFER_NAME-1);
53
54  strncpy(c->name, mes->data + 5, max_len);
55  c->name[max_len] = 0;
56
57  mes->cmd     = ROAR_CMD_OK;
58  mes->pos     = g_pos;
59  mes->datalen = 0;
60
61  ROAR_DBG("req_on_identify(*): client=%i, pid=%i", client, c->pid);
62  ROAR_DBG("req_on_identify(*) = 0");
63  return 0;
64 }
65
66 return -1;
67}
68
69int req_on_auth        (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
70 // TODO: add code to support some auth.
71 mes->cmd     = ROAR_CMD_OK;
72 mes->pos     = g_pos;
73 mes->datalen = 0;
74 return 0;
75}
76
77
78int req_on_whoami      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
79 mes->cmd     = ROAR_CMD_OK;
80 mes->pos     = g_pos;
81 mes->datalen = 1;
82 mes->data[0] = client;
83 return 0;
84}
85
86
87int req_on_new_stream  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
88 int stream;
89 struct roar_stream * s;
90 struct roar_stream * source_stream;
91 struct roar_audio_info * info;
92 struct roar_audio_info * source_info;
93
94 ROAR_DBG("req_on_new_stream(client=%i, ...): creating stream...", client);
95 if ((stream = streams_new()) == -1 )
96  return -1;
97
98 ROAR_DBG("req_on_new_stream(client=%i, ...): stream=%i", client, stream);
99
100 ROAR_DBG("req_on_new_stream(client=%i, ...): getting stream...", client);
101 if ( streams_get(stream, (struct roar_stream_server **)&s) == -1 ) {
102  streams_delete(stream);
103  return -1;
104 }
105
106 ROAR_DBG("req_on_new_stream(client=%i, ...): set client of stream...", client);
107 if ( client_stream_add(client, stream) == -1 ) {
108  streams_delete(stream);
109  return -1;
110 }
111
112 ROAR_DBG("req_on_new_stream(client=%i, ...): loading stream from message...", client);
113 if ( roar_stream_m2s(s, mes) == -1 ) {
114  streams_delete(stream);
115  return -1;
116 }
117
118 ROAR_DBG("req_on_new_stream(client=%i, ...): setting id and codec of stream...", client);
119 ROAR_STREAM(s)->id = stream; // roar_stream_m2s() resets this
120 ROAR_STREAM_SERVER(s)->codec_orgi = ROAR_STREAM(s)->info.codec;
121
122 ROAR_DBG("req_on_new_stream(client=%i, ...): setting direction stream...", client);
123 // int streams_set_dir    (int id, int dir, int defaults)
124 if ( streams_set_dir(stream, ROAR_STREAM(s)->dir, 1) == -1 ) {
125  streams_delete(stream);
126  return -1;
127 }
128
129 ROAR_DBG("req_on_new_stream(client=%i, ...): setting up direction specific stream settings...", client);
130 switch (ROAR_STREAM(s)->dir) {
131  case ROAR_DIR_LIGHT_IN:
132  case ROAR_DIR_LIGHT_OUT:
133#ifndef ROAR_WITHOUT_DCOMP_LIGHT
134    info = &(ROAR_STREAM(s)->info);
135
136    info->channels = 0;
137    info->bits     = 0;
138    info->rate     = 0;
139#else
140    streams_delete(stream);
141    return -1;
142#endif
143
144   break;
145  case ROAR_DIR_MIDI_IN:
146  case ROAR_DIR_MIDI_OUT:
147#ifndef ROAR_WITHOUT_DCOMP_MIDI
148    info = &(ROAR_STREAM(s)->info);
149
150    info->channels = ROAR_MIDI_CHANNELS_DEFAULT;
151    info->bits     = ROAR_MIDI_BITS;
152    info->rate     = 0;
153#else
154    streams_delete(stream);
155    return -1;
156#endif
157
158   break;
159
160  case ROAR_DIR_RAW_IN:
161#ifndef ROAR_WITHOUT_DCOMP_RAW
162    if ( ROAR_STREAM(s)->pos_rel_id == -1     ||
163         ROAR_STREAM(s)->pos_rel_id == stream ||
164         streams_get_dir(ROAR_STREAM(s)->pos_rel_id) != ROAR_DIR_RAW_OUT
165       ) {
166     ROAR_STREAM(s)->pos_rel_id = -1; // force this here as it will try to delete itself while deleting
167                                      // in case rel_id == stream
168     streams_delete(stream);
169     return -1;
170    }
171#else
172  case ROAR_DIR_RAW_OUT:
173    streams_delete(stream);
174    return -1;
175#endif
176
177   break;
178  case ROAR_DIR_THRU:
179
180    if ( ROAR_STREAM(s)->pos_rel_id == -1 || ROAR_STREAM(s)->pos_rel_id == stream ) {
181     ROAR_STREAM(s)->pos_rel_id = -1; // force this here as it will try to delete itself while deleting
182                                      // in case rel_id == stream
183     streams_delete(stream);
184     return -1;
185    }
186
187    if ( streams_get(ROAR_STREAM(s)->pos_rel_id, (struct roar_stream_server **)&source_stream) == -1 ) {
188     streams_delete(stream);
189     return -1;
190    }
191
192    info        = &(ROAR_STREAM(s)->info);
193    source_info = &(ROAR_STREAM(source_stream)->info);
194
195    info->channels = source_info->channels;
196    info->bits     = source_info->bits;
197    info->rate     = source_info->rate;
198    info->codec    = source_info->codec;
199    ROAR_STREAM_SERVER(s)->codec_orgi = ROAR_STREAM_SERVER(source_stream)->codec_orgi;
200
201   break;
202  case ROAR_DIR_FILTER:
203    info        = &(ROAR_STREAM(s)->info);
204
205    if ( ROAR_STREAM(s)->pos_rel_id == -1 ) {
206     source_info = g_sa;
207    } else {
208     if ( streams_get(ROAR_STREAM(s)->pos_rel_id, (struct roar_stream_server **)&source_stream) == -1 ) {
209      streams_delete(stream);
210      return -1;
211     }
212     source_info = &(ROAR_STREAM(source_stream)->info);
213    }
214
215    if ( info->channels != source_info->channels || info->bits != source_info->bits ||
216         info->codec    != source_info->codec    || info->rate != source_info->rate ) {
217     // the stream parameters don't match the one of the stream being filtered.
218     // -> delete and reject the stream.
219     streams_delete(stream);
220     return -1;
221    }
222   break;
223 }
224
225 ROAR_DBG("req_on_new_stream(client=%i, ...): returning (OK, stream=%i)...", client, stream);
226
227 mes->cmd     = ROAR_CMD_OK;
228 mes->stream  = stream;
229 mes->datalen = 0;
230
231 return 0;
232}
233
234int req_on_exec_stream (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
235 int r;
236
237 ROAR_DBG("req_on_exec_stream(client=%i, mes={stream=%i,...},...): execing stream", client, mes->stream);
238
239
240 if ( streams_is_ready(mes->stream) ) {
241  flags[1] |= COMMAND_FLAG_OUT_CLOSECON;
242 } else {
243  if ( (r = client_stream_exec(client, mes->stream)) == -1 )
244   return -1;
245 }
246
247 ROAR_DBG("req_on_exec_stream(client=%i, mes={stream=%i,...},...): returning (OK)...", client, mes->stream);
248 mes->cmd     = ROAR_CMD_OK;
249 mes->datalen = 0;
250
251 return 0;
252}
253
254int req_on_con_stream  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
255 char   host[80] = {0};
256 int    port = 0;
257 int    type;
258 int    fh;
259 int    len;
260
261 if ( mes->datalen < 4 )
262  return -1;
263
264 if ( *(mes->data) != 0 )
265  return -1;
266
267 if ( mes->datalen > 80 ) // we do not support long messages here
268  return -1;
269
270 type = (unsigned)mes->data[1];
271 port = ROAR_NET2HOST16(((uint16_t*)mes->data)[1]);
272
273 len = mes->datalen - 4;
274
275 strncpy(host, &(mes->data[4]), len);
276 host[len] = 0;
277
278 if ( type > ROAR_SOCKET_TYPE_MAX )
279  return -1;
280
281 if ( type == ROAR_SOCKET_TYPE_FILE ) // disabled because of security resons
282  return -1;
283
284 if ( type == ROAR_SOCKET_TYPE_FORK ) // why should we connect to ourself?
285  return -1;
286
287 ROAR_DBG("req_on_con_stream(*): CONNECT(type=%i, host='%s', port=%i)", type, host, port);
288
289 if ( (fh = roar_socket_open(ROAR_SOCKET_MODE_CONNECT, type, host, port)) == -1 )
290  return -1;
291
292 if ( client_stream_set_fh(client, mes->stream, fh) == -1 ) {
293  close(fh);
294  return 1;
295 }
296
297 mes->datalen = 0;
298 mes->cmd     = ROAR_CMD_OK;
299
300 return 0;
301}
302
303int req_on_passfh      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
304 int sock = clients_get_fh(client);
305 int16_t * d = (int16_t*)mes->data;
306 struct roard_listen * lsock;
307 int listening;
308 int fh;
309 int i;
310
311 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...) = ?", client, mes->stream);
312
313 if ( (fh = roar_socket_recv_fh(sock, NULL, NULL)) == -1 ) {
314  ROAR_WARN("req_on_passfh(client=%i, mes={stream=%i,...},...): was unabled to get filehandle from remote end. bad.", client, mes->stream);
315  ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (ERROR)...", client, mes->stream);
316  return -1;
317 }
318
319 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): fh=%i", client, mes->stream, fh);
320
321 if ( mes->stream != -1 ) { // stream pass:
322  ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): This is a stream passfh", client, mes->stream);
323
324  if ( client_stream_set_fh(client, mes->stream, fh) == -1 ) {
325   close(fh);
326   ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (ERROR)...", client, mes->stream);
327   return -1;
328  }
329
330  ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (OK)...", client, mes->stream);
331
332  mes->datalen = 0;
333  mes->cmd     = ROAR_CMD_OK;
334
335  return 0;
336 }
337
338// non-stream pass:
339
340 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): This is a client passfh", client, mes->stream);
341
342/*
343 0: Version,   16
344 1: Flags,     16
345 2: Protocol,  16
346 3: Byteorder, 16
347 Options...
348*/
349
350 if ( mes->datalen < 4*2 )
351  return -1;
352
353 for (i = 0; i < 4; i++) {
354  d[i] = ROAR_NET2HOST16(d[i]);
355 }
356
357 if ( d[0] != 0 ) // version
358  return -1;
359
360 listening = d[1] & ROAR_CLIENTPASS_FLAG_LISTEN;
361
362 if ( listening )
363  d[1] -= ROAR_CLIENTPASS_FLAG_LISTEN;
364
365 if ( d[1] != 0 ) // flags
366  return -1;
367
368 if ( listening ) {
369  if ( get_listen(&lsock, NULL) == -1 ) {
370   close(fh);
371   return -1;
372  }
373
374  roar_vio_open_fh_socket(&(lsock->sock), fh);
375  lsock->used   = 1;
376  lsock->proto  = d[2];
377 } else {
378  if ( clients_new_from_fh(fh, d[2], d[3], 1) == -1 )
379   return -1;
380 }
381
382 ROAR_DBG("req_on_passfh(client=%i, mes={stream=%i,...},...): returning (OK)...", client, mes->stream);
383
384 mes->datalen = 0;
385 mes->cmd     = ROAR_CMD_OK;
386
387 return 0;
388}
389
390#ifdef ROAR_SUPPORT_META
391int req_on_set_meta    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
392 int type;
393 int mode;
394 int namelen, vallen;
395 char   val[255+1];
396 char   name[ROAR_META_MAX_NAMELEN+1];
397
398 if ( mes->datalen < 3 )
399  return -1;
400
401 if ( mes->data[0] != 0 ) // version
402  return -1;
403
404 mode = (unsigned) mes->data[1];
405 type = (unsigned) mes->data[2];
406
407 ROAR_DBG("req_on_set_meta(*): mode=%i, type=%i", mode, type);
408
409 if ( mode == ROAR_META_MODE_CLEAR ) {
410  stream_meta_clear(mes->stream);
411  mes->datalen = 0;
412  mes->cmd     = ROAR_CMD_OK;
413  return 0;
414 } else if ( mode == ROAR_META_MODE_DELETE ) { // unsuppoerted at the moment
415  return -1;
416 } else if ( mode == ROAR_META_MODE_FINALIZE ) {
417  stream_meta_finalize(mes->stream);
418  mes->datalen = 0;
419  mes->cmd     = ROAR_CMD_OK;
420  return 0;
421 } else if ( mode == ROAR_META_MODE_SET || mode == ROAR_META_MODE_ADD ) {
422  if ( mes->datalen < 5 )
423   return -1;
424
425  namelen = (unsigned) mes->data[3];
426  vallen  = (unsigned) mes->data[4];
427
428  ROAR_DBG("req_on_set_meta(*): namelen=%i, vallen=%i", namelen, vallen);
429
430  if ( mes->datalen < (5 + namelen + vallen) )
431   return -1;
432
433  if ( namelen > ROAR_META_MAX_NAMELEN )
434   return -1;
435
436  strncpy(name, &(mes->data[5]), namelen);
437  name[namelen] = 0;
438
439  if ( vallen > 255 )
440   return -1;
441
442  strncpy(val, &(mes->data[5+namelen]), vallen);
443  val[vallen] = 0;
444
445  if ( mode == ROAR_META_MODE_SET ) {
446   if ( stream_meta_set(mes->stream, type, name, val) == -1 )
447    return -1;
448  } else {
449   if ( stream_meta_add(mes->stream, type, name, val) == -1 )
450    return -1;
451  }
452
453  mes->datalen = 0;
454  mes->cmd     = ROAR_CMD_OK;
455  return 0;
456 } else { // unknown mode!
457  return -1;
458 }
459
460 return -1;
461}
462
463int req_on_get_meta    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
464 int vallen;
465 int type;
466 char val[LIBROAR_BUFFER_MSGDATA-1];
467
468 if ( mes->datalen != 2 )
469  return -1;
470
471 if ( mes->data[0] != 0 ) // version
472  return -1;
473
474 type = (unsigned) mes->data[1];
475
476 if ( stream_meta_get(mes->stream, type, NULL, val, LIBROAR_BUFFER_MSGDATA-2) == -1 )
477  return -1;
478
479 vallen = strlen(val);
480
481 mes->cmd     = ROAR_CMD_OK;
482 mes->datalen = 2 + vallen;
483
484 mes->data[0] = 0;
485 mes->data[1] = (unsigned char) vallen;
486
487 val[vallen] = 0;
488
489 strncpy(&(mes->data[2]), val, vallen+1);
490
491 return 0;
492}
493
494int req_on_list_meta   (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
495 int i;
496 int len = 0;
497 int types[ROAR_META_MAX_PER_STREAM];
498
499 if ( mes->datalen != 1 )
500  return -1;
501
502 if ( mes->data[0] != 0 ) // version
503  return -1;
504
505 if ( (len = stream_meta_list(mes->stream, types, ROAR_META_MAX_PER_STREAM)) == -1 )
506  return -1;
507
508 mes->cmd     = ROAR_CMD_OK;
509 mes->datalen = 1 + len;
510 mes->data[0] = 0;
511
512 for (i = 0; i < len; i++)
513  mes->data[i+1] = types[i];
514
515 return 0;
516}
517#endif
518
519int req_on_server_oinfo    (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
520 struct roar_stream s;
521//ROAR_DIR_OUTPUT
522
523 memset(&s, 0, sizeof(struct roar_stream));
524
525 s.dir           = ROAR_DIR_MIXING;
526 s.pos_rel_id    = -1;
527 s.info.rate     = g_sa->rate;
528 s.info.bits     = g_sa->bits;
529 s.info.channels = g_sa->channels;
530 s.info.codec    = g_sa->codec;
531 s.pos           = g_pos;
532
533 if ( roar_stream_s2m(&s, mes) == -1 )
534  return -1;
535
536 mes->cmd = ROAR_CMD_OK;
537
538 return 0;
539}
540
541
542int req_on_get_standby (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
543 mes->cmd     = ROAR_CMD_OK;
544 mes->pos     = g_pos;
545 mes->datalen = 2;
546
547 *((uint16_t*)mes->data) = ROAR_HOST2NET16((unsigned) g_standby);
548
549 return 0;
550}
551
552int req_on_set_standby (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
553 if ( mes->datalen != 2 )
554  return -1;
555
556 g_standby = ROAR_NET2HOST16(*((uint16_t*)mes->data));
557
558 mes->cmd     = ROAR_CMD_OK;
559 mes->pos     = g_pos;
560 mes->datalen = 0;
561
562 return 0;
563}
564
565int req_on_exit      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
566 int term = 0;
567
568 if ( mes->datalen == 1 )
569  term = mes->data[0];
570
571 mes->cmd     = ROAR_CMD_OK;
572 mes->pos     = g_pos;
573 mes->datalen = 0;
574
575 ROAR_DBG("req_on_exit(*): term=%i", term);
576
577 if ( term ) {
578  cleanup_listen_socket(1);
579 } else {
580  alive = 0;
581 }
582
583 return 0;
584}
585
586int req_on_list_clients(int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
587 unsigned char filter, cmp;
588 uint32_t id;
589 int clients[ROAR_CLIENTS_MAX];
590 int i, c = 0;
591
592 if ( roar_ctl_m2f(mes, &filter, &cmp, &id) == -1 )
593  return -1;
594
595 // TODO: add code to support filter
596 if ( filter != ROAR_CTL_FILTER_ANY )
597  return -1;
598
599 for (i = 0; i < ROAR_CLIENTS_MAX; i++) {
600  if ( g_clients[i] != NULL ) {
601   clients[c++] = i;
602  }
603 }
604
605 roar_ctl_ia2m(mes, clients, c);
606
607 mes->cmd = ROAR_CMD_OK;
608
609 return 0;
610}
611int req_on_list_streams(int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
612 unsigned char filter, cmp;
613 uint32_t id;
614 int streams[ROAR_STREAMS_MAX];
615 int i, c = 0;
616
617 if ( roar_ctl_m2f(mes, &filter, &cmp, &id) == -1 )
618  return -1;
619
620 // TODO: add code to support filter
621 if ( filter != ROAR_CTL_FILTER_ANY )
622  return -1;
623
624 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
625  if ( g_streams[i] != NULL ) {
626   streams[c++] = i;
627  }
628 }
629
630 roar_ctl_ia2m(mes, streams, c);
631
632 mes->cmd = ROAR_CMD_OK;
633
634 return 0;
635}
636
637int req_on_get_client  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
638 struct roar_client * c;
639
640 if ( mes->datalen != 1 )
641  return -1;
642
643 if ( clients_get(mes->data[0], &c) == -1 )
644  return -1;
645
646 mes->cmd = ROAR_CMD_OK;
647
648 return roar_ctl_c2m(mes, c);
649}
650
651int req_on_get_stream  (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
652 struct roar_stream_server * s;
653
654 if ( mes->datalen != 1 )
655  return -1;
656
657 if ( streams_get(mes->data[0], &s) == -1 )
658  return -1;
659
660 mes->cmd = ROAR_CMD_OK;
661 mes->stream = mes->data[0];
662
663 return roar_stream_s2m(ROAR_STREAM(s), mes);
664}
665
666int req_on_get_stream_para (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
667 struct roar_stream * s;
668 struct roar_stream_server * ss;
669 struct roar_audio_info * audio_info;
670 uint16_t * d = (uint16_t *) mes->data;
671 int i;
672 char * str;
673
674 if ( mes->datalen != 4 )
675  return -1;
676
677 for (i = 0; i < mes->datalen/2; i++) {
678  d[i] = ROAR_NET2HOST16(d[i]);
679 }
680
681 if ( d[0] != 0 ) {
682  ROAR_WARN("req_on_get_stream_para(*): unsupported command version: %i, %i", (int)d[0], (int)d[1]);
683  return -1;
684 }
685
686 switch (d[1]) {
687  case ROAR_STREAM_PARA_INFO:
688    if ( streams_get(mes->stream, &ss) == -1 ) {
689     ROAR_WARN("req_on_get_stream_para(*): request on non existing (or other error?) stream %i", mes->stream);
690     return -1;
691    }
692
693    if ( streams_calc_delay(mes->stream) == -1 ) {
694     ROAR_WARN("req_on_get_stream_para(*): can not calc delay for stream %i", mes->stream);
695    }
696
697    s = ROAR_STREAM(ss);
698
699    audio_info = &(s->info);
700
701    mes->datalen = 2*12;
702
703    d[ 2] = ROAR_OUTPUT_CALC_OUTBUFSIZE(audio_info);
704    d[ 3] = ss->pre_underruns;
705    d[ 4] = ss->post_underruns;
706    d[ 5] = ss->codec_orgi;
707    d[ 6] = (ss->flags & 0xFFFF) | (ss->primary ? ROAR_FLAG_PRIMARY : 0) | (ss->driver_id != -1 ? ROAR_FLAG_OUTPUT : 0);
708    d[ 7] = ss->delay/1000;
709    d[ 8] = ss->state;
710    d[ 9] = (ss->flags & 0xFFFF0000) >> 16;
711    d[10] = ss->mixer_stream;
712    d[11] = ss->role;
713
714    ROAR_DBG("req_on_get_stream_para(*): ss->driver_id=%i", ss->driver_id);
715
716    ROAR_DBG("req_on_get_stream_para(*): delay=%i, send delay=%i", ss->delay, d[7]);
717
718    for (i = 0; i < mes->datalen/2; i++) {
719     d[i] = ROAR_HOST2NET16(d[i]);
720    }
721
722    mes->pos = s->pos;
723   break;
724
725  case ROAR_STREAM_PARA_NAME:
726   str = streams_get_name(mes->stream);
727
728   if ( str == NULL )
729    return -1;
730
731    mes->datalen = 4 + strlen(str);
732
733    if ( mes->datalen > LIBROAR_BUFFER_MSGDATA )
734     return -1;
735
736    strncpy(((char*)&(mes->data))+4, str, mes->datalen);
737
738    d[0] = ROAR_HOST2NET16(d[0]);
739    d[1] = ROAR_HOST2NET16(d[1]);
740   break;
741
742  case ROAR_STREAM_PARA_CHANMAP:
743    if ( streams_get(mes->stream, &ss) == -1 ) {
744     ROAR_WARN("req_on_get_stream_para(*): request on non existing (or other error?) stream %i", mes->stream);
745     return -1;
746    }
747
748    s = ROAR_STREAM(ss);
749
750    memcpy(&(mes->data[4]), ss->chanmap.in, s->info.channels);
751    mes->datalen = 2*2 + s->info.channels;
752
753    d[0] = ROAR_HOST2NET16(d[0]);
754    d[1] = ROAR_HOST2NET16(d[1]);
755   break;
756
757  default:
758    ROAR_WARN("req_on_get_stream_para(*): unsupported command: %i", d[1]);
759    return -1;
760 }
761
762 mes->cmd = ROAR_CMD_OK;
763 return 0;
764}
765
766int req_on_set_stream_para (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
767 uint16_t * d = (uint16_t *) mes->data;
768 int i;
769
770 if ( mes->datalen < 2*2 )
771  return -1;
772
773 for (i = 0; i < 2; i++) {
774  d[i] = ROAR_NET2HOST16(d[i]);
775 }
776
777 if ( d[0] != 0 )
778  return -1;
779
780 switch (d[1]) {
781  case ROAR_STREAM_PARA_FLAGS:
782    if ( mes->datalen != 2*4 )
783     return -1;
784
785    d[2] = ROAR_NET2HOST16(d[2]);
786    d[3] = ROAR_NET2HOST16(d[3]);
787
788    ROAR_DBG("req_on_set_stream_para(*): request seems to be valid");
789
790    if ( d[2] == ROAR_RESET_FLAG ) {
791     if ( streams_reset_flag(mes->stream, d[3]) == -1 )
792      return -1;
793    } else {
794     if ( streams_set_flag(mes->stream, d[3]) == -1 )
795      return -1;
796    }
797   break;
798  case ROAR_STREAM_PARA_CHANMAP:
799    if ( streams_set_map(mes->stream, &(mes->data[4]), mes->datalen - 4) == -1 )
800     return -1;
801   break;
802  case ROAR_STREAM_PARA_ROLE:
803    if ( mes->datalen != 2*3 )
804     return -1;
805
806    d[2] = ROAR_NET2HOST16(d[2]);
807
808    if ( streams_set_role(mes->stream, d[2]) == -1 )
809     return -1;
810   break;
811  case ROAR_STREAM_PARA_LTM:
812    if ( mes->stream == -1 )
813     return -1;
814
815    for (i = 2; i < mes->datalen/2; i++) {
816     d[i] = ROAR_NET2HOST16(d[i]);
817    }
818
819    if ( streams_ltm_ctl(mes->stream, d[5], d[3], d[2]) == -1 )
820     return -1;
821   break;
822  default:
823    ROAR_WARN("req_on_set_stream_para(*): unsupported command version: %i, %i", d[0], d[1]);
824    return -1;
825   break;
826 }
827
828 mes->cmd     = ROAR_CMD_OK;
829 mes->datalen = 0;
830
831 return 0;
832}
833
834int req_on_kick (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
835 uint16_t * info = (uint16_t *) mes->data;
836
837 if ( mes->datalen != 4 )
838  return -1;
839
840 info[0] = ROAR_NET2HOST16(info[0]);
841 info[1] = ROAR_NET2HOST16(info[1]);
842
843 if ( info[0] == ROAR_OT_CLIENT ) {
844  clients_delete(info[1]);
845 } else if ( info[0] == ROAR_OT_STREAM ) {
846  if ( streams_get_flag(info[1], ROAR_FLAG_IMMUTABLE) == 1 )
847   return -1;
848
849  streams_delete(info[1]);
850 } else if ( info[0] == ROAR_OT_SOURCE ) {
851  if ( streams_get_flag(info[1], ROAR_FLAG_IMMUTABLE) == 1 )
852   return -1;
853
854  if ( streams_get_flag(info[1], ROAR_FLAG_SOURCE) == 1 ) {
855   streams_delete(info[1]);
856  } else {
857   return -1;
858  }
859 } else {
860  return -1;
861 }
862
863 mes->cmd     = ROAR_CMD_OK;
864 mes->datalen = 0;
865
866 return 0;
867}
868
869int req_on_attach      (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
870 uint16_t * info = (uint16_t *) mes->data;
871
872 if ( mes->datalen < 6 )
873  return -1;
874
875 info[0] = ROAR_NET2HOST16(info[0]);
876 info[1] = ROAR_NET2HOST16(info[1]);
877 info[2] = ROAR_NET2HOST16(info[2]);
878
879 if ( info[0] != 0 )
880  return -1;
881
882 if ( info[1] == ROAR_ATTACH_SIMPLE ) {
883  if ( client_stream_move(info[2], mes->stream) == -1 )
884   return -1;
885 } else {
886  return -1;
887 }
888
889 mes->cmd     = ROAR_CMD_OK;
890 mes->datalen = 0;
891
892 return 0;
893}
894
895int req_on_set_vol (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
896 struct roar_stream_server * s;
897 uint16_t * info = (uint16_t *) mes->data;
898 uint16_t   version;
899 uint16_t   scale = 65535;
900 int stream;
901 int i;
902 int chans;
903
904 ROAR_DBG("req_on_set_vol(*) = ?");
905 ROAR_DBG("req_on_set_vol(*): mes->datalen=%i", mes->datalen);
906
907 if ( mes->datalen < (4*2) )
908  return -1;
909
910 version = ROAR_NET2HOST16(info[0]);
911 ROAR_DBG("req_on_set_vol(*): version=%i", (int)version);
912
913 switch (version) {
914  case 0:
915    stream = ROAR_NET2HOST16(info[1]);
916   break;
917  case 1:
918    stream = mes->stream;
919    scale  = ROAR_NET2HOST16(info[1]);
920   break;
921  default:
922    return -1;
923   break;
924 }
925 ROAR_DBG("req_on_set_vol(*): stream=%i", stream);
926
927 if ( scale == 0 )
928  return -1;
929
930 // TODO: change this code.
931 //       we should not directly change the stream object but use some stream_*()-func
932 //       for that job.
933
934 if ( stream < 0 || stream >= ROAR_STREAMS_MAX )
935  return -1;
936
937 s = g_streams[stream];
938
939 if ( s == NULL )
940  return -1;
941
942 ROAR_DBG("req_on_set_vol(*): s=%p", s);
943
944 info[2] = ROAR_NET2HOST16(info[2]);
945
946 if ( info[2] == ROAR_SET_VOL_ALL ) {
947  chans = (mes->datalen/2) - 3;
948  ROAR_DBG("req_on_set_vol(*): mode is ROAR_SET_VOL_ALL, channes=%i", chans);
949
950  if ( chans >= ROAR_MAX_CHANNELS )
951   return -1;
952
953  ROAR_DBG("req_on_set_vol(*): mixer at %p", s->mixer.mixer);
954
955  for (i = 0; i < chans; i++) {
956   s->mixer.mixer[i] = ROAR_NET2HOST16(info[i+3]);
957   ROAR_DBG("req_on_set_vol(*): channel %i: %i", i, ROAR_NET2HOST16(info[i+3]));
958  }
959
960  s->mixer.scale = scale;
961
962  ROAR_DBG("req_on_set_vol(*): mixer changed!");
963
964 } else if ( info[2] == ROAR_SET_VOL_ONE ) {
965  ROAR_DBG("req_on_set_vol(*): mode is ROAR_SET_VOL_ONE");
966  if ( ROAR_NET2HOST16(info[3]) >= ROAR_MAX_CHANNELS )
967   return -1;
968
969  s->mixer.mixer[ROAR_NET2HOST16(info[3])] = ROAR_NET2HOST16(info[4]);
970
971  s->mixer.scale = scale;
972 } else {
973  return -1;
974 }
975
976 if ( streams_set_mixer(stream) == -1 )
977  return -1;
978
979 mes->cmd     = ROAR_CMD_OK;
980 mes->datalen = 0;
981
982 return 0;
983}
984
985int req_on_get_vol (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
986 uint16_t * info = (uint16_t *) mes->data;
987 uint16_t   version = -1;
988 int stream;
989 struct roar_stream_server * s;
990 int i;
991 int chans;
992
993 ROAR_DBG("req_on_get_vol(*) = ?");
994 ROAR_DBG("req_on_get_vol(*): mes->datalen=%i", mes->datalen);
995
996 if ( mes->datalen < 2 ) {
997  return -1;
998 }
999
1000 version = ROAR_NET2HOST16(info[0]);
1001
1002 switch (version) {
1003  case 0:
1004    if ( mes->datalen < (2*2) )
1005     return -1;
1006
1007    stream = ROAR_NET2HOST16(info[1]);
1008   break;
1009  case 1:
1010    stream = mes->stream;
1011   break;
1012  default:
1013    return -1;
1014   break;
1015 }
1016
1017 ROAR_DBG("req_on_get_vol(*): stream=%i", stream);
1018
1019 // TODO: change this code.
1020 //       we should not directly change the stream object but use some stream_*()-func
1021 //       for that job.
1022
1023 if ( stream < 0 || stream >= ROAR_STREAMS_MAX )
1024  return -1;
1025
1026 s = g_streams[stream];
1027
1028 if ( s == NULL )
1029  return -1;
1030
1031 ROAR_DBG("req_on_get_vol(*): s=%p", s);
1032
1033 // ok, we have everything
1034
1035 info[0] = ROAR_HOST2NET16(version);
1036
1037 switch (version) {
1038  case 0:
1039    info[1] = ROAR_HOST2NET16(chans = ROAR_STREAM(s)->info.channels);
1040
1041    for (i = 0; i < chans; i++)
1042     info[2+i] = ROAR_HOST2NET16(s->mixer.mixer[i]);
1043
1044     mes->datalen = (2 + chans)*2;
1045   break;
1046  case 1:
1047    info[1] = ROAR_HOST2NET16(chans = ROAR_STREAM(s)->info.channels);
1048    info[2] = ROAR_HOST2NET16(s->mixer.scale);
1049    info[3] = ROAR_HOST2NET16(s->mixer.rpg_mul);
1050    info[4] = ROAR_HOST2NET16(s->mixer.rpg_div);
1051
1052    for (i = 0; i < chans; i++)
1053     info[5+i] = ROAR_HOST2NET16(s->mixer.mixer[i]);
1054
1055     mes->datalen = (5 + chans)*2;
1056   break;
1057  default:
1058    return -1;
1059   break;
1060 }
1061
1062 mes->cmd = ROAR_CMD_OK;
1063
1064 return 0;
1065}
1066
1067int req_on_add_data (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1068 struct roar_buffer * b;
1069 char               * buf;
1070
1071 if ( roar_buffer_new_data(&b, mes->datalen, (void **)&buf) == -1 ) {
1072  ROAR_ERR("req_on_add_data(*): Can not alloc buffer space!");
1073  ROAR_DBG("req_on_add_data(*) = -1");
1074  return -1;
1075 }
1076
1077 if ( data == NULL ) {
1078  memcpy(buf, mes->data, mes->datalen);
1079 } else {
1080  memcpy(buf, *data, mes->datalen);
1081 }
1082
1083 if ( stream_add_buffer(mes->stream, b) == -1 ) {
1084  roar_buffer_free(b);
1085  return -1;
1086 }
1087
1088 mes->cmd     = ROAR_CMD_OK_STOP;
1089 mes->datalen = 0;
1090
1091 return 0;
1092}
1093
1094int req_on_beep        (int client, struct roar_message * mes, char ** data, uint32_t flags[2]) {
1095 struct roar_beep bs;
1096 int16_t * info = (int16_t*)mes->data;
1097 int stream;
1098
1099 memset(&bs, 0, sizeof(bs));
1100
1101 if ( mes->datalen > 0 ) {
1102  if ( mes->datalen < 2 )
1103   return -1;
1104
1105  if ( ROAR_NET2HOST16(info[0]) != 0 ) /* version */
1106   return -1;
1107
1108  if ( mes->datalen != 8*2 )
1109   return -1;
1110
1111  bs.vol  = ROAR_NET2HOST16(info[1]);
1112  bs.time = ROAR_NET2HOST16(info[2]);
1113  bs.freq = ROAR_NET2HOST16(info[3]);
1114  bs.type = ROAR_NET2HOST16(info[4]);
1115  bs.x    = ROAR_NET2HOST16(info[5]);
1116  bs.y    = ROAR_NET2HOST16(info[6]);
1117  bs.z    = ROAR_NET2HOST16(info[7]);
1118 }
1119
1120 if ( (stream = beep_start(client, &bs)) == -1 )
1121  return -1;
1122
1123 mes->stream  = stream;
1124 mes->cmd     = ROAR_CMD_OK_STOP;
1125 mes->datalen = 0;
1126
1127 return 0;
1128}
1129
1130//ll
Note: See TracBrowser for help on using the repository browser.