source: roaraudio/roard/req.c @ 3630:89a9079f8e3f

Last change on this file since 3630:89a9079f8e3f was 3630:89a9079f8e3f, checked in by phi, 14 years ago

implemented roles, still need some support to set them

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