source: roaraudio/roard/req.c @ 4298:f36b7f925311

Last change on this file since 4298:f36b7f925311 was 4298:f36b7f925311, checked in by phi, 14 years ago

added support for large number of streams in LTM

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