source: roaraudio/roard/streams.c @ 2021:9f8951a93401

Last change on this file since 2021:9f8951a93401 was 2021:9f8951a93401, checked in by phi, 15 years ago

do not crach on invalide stream meta data

File size: 28.9 KB
RevLine 
[0]1//streams.c:
2
[668]3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[0]25#include "roard.h"
26
27int streams_init (void) {
28 int i;
29
30 for (i = 0; i < ROAR_STREAMS_MAX; i++)
31  g_streams[i] = NULL;
32
33 return 0;
34}
35
36int streams_free (void) {
37 int i;
38
39 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
40  if ( g_streams[i] != NULL ) {
41   streams_delete(i);
42  }
43 }
44
45 return 0;
46}
47
48
49int streams_new    (void) {
[16]50 int i, j;
[494]51 struct roar_stream        * n = NULL;
52 struct roar_stream_server * s = NULL;
[0]53
[1498]54#ifdef ROAR_SUPPORT_LISTEN
[1155]55 if ( g_terminate && !g_no_listen ) // don't accept new streams in case of termination state
[1148]56  return -1;
[1498]57#else
58 if ( g_terminate )                 // don't accept new streams in case of termination state
59  return -1;
60#endif
[1148]61
[0]62 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
63  if ( g_streams[i] == NULL ) {
[494]64   s = ROAR_STREAM_SERVER(n = ROAR_STREAM(malloc(sizeof(struct roar_stream_server))));
[0]65   if ( n == NULL ) {
66    ROAR_ERR("streams_new(void): can not allocate memory for new stream: %s", strerror(errno));
67    ROAR_DBG("streams_new(void) = -1");
68    return -1;
69   }
70
71   n->id         = i;
72   n->fh         = -1;
73//   n->pos_rel_id = i;
[1804]74/*
[0]75   n->database   = NULL;
76   n->dataoff    = NULL;
77   n->datalen    = 0;
78   n->offset     = 0;
[1804]79*/
[381]80   n->pos        = 0;
[0]81
[1842]82   s->name            = NULL;
83
[494]84   s->client          = -1;
85   s->socktype        = ROAR_SOCKET_TYPE_UNKNOWN;
86   s->buffer          = NULL;
87   s->need_extra      =  0;
88   s->output          = NULL;
89   s->is_new          =  1;
90   s->codecfilter     = -1;
[538]91   s->pre_underruns   =  0;
92   s->post_underruns  =  0;
[1137]93   s->delay           =  0;
[538]94   s->codec_orgi      = -1;
[643]95   s->primary         =  0;
[1913]96   s->ready           =  0;
[494]97
98   s->mixer.scale     = 65535;
99   s->mixer.rpg_mul   = 1;
100   s->mixer.rpg_div   = 1;
[16]101   for (j = 0; j < ROAR_MAX_CHANNELS; j++)
[494]102    s->mixer.mixer[j] = 65535;
103
[1498]104#ifdef ROAR_SUPPORT_META
[90]105   for (j = 0; j < ROAR_META_MAX_PER_STREAM; j++) {
[494]106    s->meta[j].type   = ROAR_META_TYPE_NONE;
107    s->meta[j].key[0] = 0;
108    s->meta[j].value  = NULL;
[90]109   }
[1498]110#endif
[0]111
[592]112   roar_vio_init_calls(&(s->vio));
[930]113   s->driver_id = -1;
[1030]114   s->flags     =  ROAR_FLAG_NONE;
[592]115
[1857]116   //roardsp_fchain_init(&(s->fc));
[981]117
[494]118   g_streams[i] = s;
[491]119   ROAR_DBG("streams_new(void): n->id=%i", n->id);
[0]120   ROAR_DBG("streams_new(void) = %i", i);
121   return i;
122  }
123 }
124
125 return -1;
126}
127
128int streams_delete (int id) {
[643]129 struct roar_stream_server * s;
[645]130 int prim;
[1245]131 int no_vio_close = 0;
[1836]132 int i;
[645]133
[643]134 if ( (s = g_streams[id]) == NULL )
[0]135  return 0;
136
137 ROAR_DBG("streams_delete(id=%i) = ?", id);
[643]138 ROAR_DBG("streams_delete(id=%i): g_streams[id]->id=%i", id, ROAR_STREAM(s)->id);
[0]139
[1836]140 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
141  if ( g_streams[i] != NULL && ROAR_STREAM(g_streams[i])->pos_rel_id == id ) {
142   if ( ROAR_STREAM(g_streams[i])->dir == ROAR_DIR_THRU ) {
143    streams_delete(i);
144   } else {
145    ROAR_STREAM(g_streams[i])->pos_rel_id = -1;
146   }
147  }
148 }
149
[1498]150#ifdef ROAR_SUPPORT_META
[1045]151 // delete meta data form other meta streams if needed
152 if ( streams_get_flag(id, ROAR_FLAG_META) == 1 ) {
153  ROAR_DBG("streams_delete(id=%i): deleting meta stream!", id);
154  stream_meta_clear(id);
155  stream_meta_finalize(id);
156 }
[1498]157#endif
[1045]158
[643]159 if ( s->codecfilter != -1 ) {
160  codecfilter_close(s->codecfilter_inst, s->codecfilter);
161  s->codecfilter_inst = NULL;
162  s->codecfilter = -1;
163 }
164
[936]165 if ( s->driver_id != -1 ) {
[937]166  driver_closevio(&(s->vio), s->driver_id);
[936]167  roar_vio_init_calls(&(s->vio));
168  s->driver_id = -1;
[1245]169  no_vio_close =  1;
[936]170 }
171
[1857]172 //roardsp_fchain_uninit(&(s->fc));
[981]173
[643]174 if ( s->client != -1 ) {
175  ROAR_DBG("streams_delete(id=%i): Stream is owned by client %i", id, g_streams[id]->client);
176  client_stream_delete(s->client, id);
[269]177 }
178
[643]179 if ( s->buffer != NULL )
180  roar_buffer_free(s->buffer);
181
182 if ( s->output != NULL )
183  free(s->output);
184
[1243]185/*
[643]186 if ( ROAR_STREAM(s)->fh != -1 )
187  close(ROAR_STREAM(s)->fh);
[1243]188*/
189
[1245]190 if ( !no_vio_close )
191  roar_vio_close(&(s->vio));
[643]192
[645]193 prim = s->primary;
[0]194
[1842]195 if ( s->name != NULL )
196  free(s->name);
197
[643]198 free(s);
[0]199
200 g_streams[id] = NULL;
201
[645]202 if ( prim ) {
203  alive = 0;
204  clean_quit();
205 }
206
[0]207 ROAR_DBG("streams_delete(id=%i) = 0", id);
208 return 0;
209}
210
211int streams_set_client (int id, int client) {
212 if ( g_streams[id] == NULL )
213  return -1;
214
[491]215 ROAR_DBG("streams_set_client(id=%i): g_streams[id]->id=%i", id, ROAR_STREAM(g_streams[id])->id);
[0]216 g_streams[id]->client = client;
217
218 return 0;
219}
220
[766]221int streams_get_client (int id) {
222 if ( g_streams[id] == NULL )
223  return -1;
224
225 return g_streams[id]->client;
226}
227
[1609]228int streams_set_dir    (int id, int dir, int defaults) {
229 struct roar_stream_server * ss;
230
231 if ( (ss = g_streams[id]) == NULL )
232  return -1;
233
234 ROAR_STREAM(ss)->dir = dir;
235
236 if ( defaults ) {
237  if ( dir <= 0 || dir >= ROAR_DIR_DIRIDS )
238   return -1;
239
[1906]240  ROAR_DBG("streams_set_dir(*): g_config->streams[dir=%i].flags = 0x%0.4x", dir, g_config->streams[dir].flags);
241
242  if ( streams_set_flag(id, g_config->streams[dir].flags) == -1 ) {
243   ROAR_DBG("streams_set_dir(*) = -1 // can not set stream flags");
[1609]244   return -1;
[1906]245  }
[1609]246
247   ss->mixer.scale   = g_config->streams[dir].mixer.scale;
248   ss->mixer.rpg_mul = g_config->streams[dir].mixer.rpg_mul;
249   ss->mixer.rpg_div = g_config->streams[dir].mixer.rpg_div;
250 }
251
[1906]252 ROAR_DBG("streams_set_dir(*) = 0");
[1609]253 return 0;
254}
[766]255
[0]256int streams_set_fh     (int id, int fh) {
[1243]257 struct roar_stream_server * ss;
[1913]258 struct roar_stream        * s;
[51]259 int dir;
260
[1913]261 if ( (s = ROAR_STREAM(ss = g_streams[id])) == NULL )
[0]262  return -1;
263
[1913]264 ROAR_DBG("streams_set_fh(id=%i): g_streams[id]->id=%i", id, s->id);
[491]265
[1913]266 s->fh = fh;
[0]267
[1243]268 ROAR_DBG("streams_set_fh(id=%i, fh=%i): driverID=%i", id, fh, ss->driver_id);
269
[1610]270 if ( ss->driver_id == -1 && fh != -2 )
[1243]271  roar_vio_set_fh(&(ss->vio), fh);
272
273 if ( codecfilter_open(&(ss->codecfilter_inst), &(ss->codecfilter), NULL,
[1913]274                  s->info.codec, ss) == -1 ) {
275  return streams_delete(id); // TODO: FIXME: is this correct? shoudn't we return -1 in any case here?
[571]276 }
[268]277
[1610]278 if ( fh == -2 ) {
279  ROAR_DBG("streams_set_fh(id=%i, fh=%i) = ?", id, fh);
280  if ( roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_GET_READ_FH, &fh) == -1 ) {
281   fh = -2;
282  } else {
283   ROAR_DBG("streams_set_fh(id=%i, fh=%i) = ?", id, fh);
284   if ( fh < 0 ) {
285    fh = -2;
286   } else {
[1913]287    s->fh = fh;
[1610]288   }
289  }
290 }
291
292 if ( fh == -1 || fh == -2 ) { // yes, this is valid, indecats full vio!
[1913]293  ss->ready = 1;
[634]294  return 0;
295 }
296
[971]297// roar_socket_recvbuf(fh, ROAR_OUTPUT_CALC_OUTBUFSIZE( &(ROAR_STREAM(g_streams[id])->info) )); // set recv buffer to minimum
[968]298
[1243]299 dir = ROAR_STREAM(ss)->dir;
[51]300
[1912]301 switch (dir) {
302  case ROAR_DIR_MONITOR:
303  case ROAR_DIR_RECORD:
304  case ROAR_DIR_OUTPUT:
305  case ROAR_DIR_MIDI_OUT:
306  case ROAR_DIR_LIGHT_OUT:
307    ROAR_SHUTDOWN(fh, SHUT_RD);
308   break;
[51]309 }
310
311 if ( dir == ROAR_DIR_FILTER ) {
[1913]312  ss->ready = 1;
[0]313  return 0;
314 } else {
[1913]315  if ( roar_socket_nonblock(fh, ROAR_SOCKET_NONBLOCK) == -1 )
316   return -1;
317
318  ss->ready = 1;
319  return 0;
[0]320 }
321}
322
[66]323int streams_get_fh     (int id) {
[84]324 if ( id < 0 )
325  return -1;
326
[66]327 if ( g_streams[id] == NULL )
328  return -1;
329
[609]330 return ROAR_STREAM(g_streams[id])->fh;
[66]331}
[0]332
333int streams_get    (int id, struct roar_stream_server ** stream) {
334 if ( g_streams[id] == NULL )
335  return -1;
336
337 *stream = g_streams[id];
338
339 return 0;
340}
341
[377]342int streams_set_socktype (int id, int socktype) {
343 if ( g_streams[id] == NULL )
344  return -1;
345
346 g_streams[id]->socktype = socktype;
347
348 return 0;
349}
350
351int streams_get_socktype (int id) {
352 if ( g_streams[id] == NULL )
353  return -1;
354
355 return g_streams[id]->socktype;
356}
[0]357
[643]358int streams_set_primary (int id, int prim) {
359 if ( g_streams[id] == NULL )
360  return -1;
361
362 g_streams[id]->primary = prim;
363
364 return 0;
365}
366
367int streams_mark_primary (int id) {
368 return streams_set_primary(id, 1);
369}
[1029]370
[1116]371int streams_set_sync     (int id, int sync) {
[1117]372 int fh = streams_get_fh(id);
[1116]373
[1117]374 if ( fh != -1 ) {
375  if ( roar_socket_nonblock(fh, sync ? ROAR_SOCKET_BLOCK : ROAR_SOCKET_NONBLOCK) == -1 )
376   return -1;
[1116]377
[1498]378#ifdef ROAR_FDATASYNC
[1171]379  ROAR_FDATASYNC(fh);
[1498]380#endif
[1125]381
382  return 0;
[1117]383 } else {
384  return roar_vio_nonblock(&(g_streams[id]->vio), sync);
385 }
[1116]386}
387
[1928]388int streams_set_mmap (int id, int reset) {
389 int use = !reset;
390
391 if ( g_streams[id] == NULL )
392  return -1;
393
394 return roar_vio_ctl(&(g_streams[id]->vio), ROAR_VIO_CTL_SET_UMMAP, &use);
395}
396
[1029]397int streams_set_flag     (int id, int flag) {
398 if ( g_streams[id] == NULL )
399  return -1;
400
[1926]401 if ( flag & ROAR_FLAG_MMAP )
[1928]402  if ( streams_set_mmap(id, 0) == -1 )
403   flag -= ROAR_FLAG_MMAP;
[1926]404
[1043]405 if ( flag & ROAR_FLAG_PRIMARY ) {
406  streams_set_primary(id, 1);
407  flag -= ROAR_FLAG_PRIMARY;
408 }
409
[1116]410 if ( flag & ROAR_FLAG_SYNC ) {
[1908]411  switch (ROAR_STREAM(g_streams[id])->dir) {
412   // for this stream types the flag is used in the subsystem:
413   case ROAR_DIR_BRIDGE:
414   case ROAR_DIR_MIDI_OUT:
415    break;
416
417   // normal behavor (vio blocking):
418   default:
419     if ( streams_set_sync(id, 1) == -1 )
420      flag -= ROAR_FLAG_SYNC;
421  }
[1116]422 }
423
[1585]424 if ( flag & ROAR_FLAG_HWMIXER ) { // currently not supported -> ignored
[1590]425  g_streams[id]->flags |= flag;
426  if ( streams_set_mixer(id) == -1 ) {
427   g_streams[id]->flags -= flag;
428   return -1;
429  }
[1585]430 }
431
[1029]432 g_streams[id]->flags |= flag;
433
[1498]434#ifdef ROAR_SUPPORT_META
[1043]435 if ( flag & ROAR_FLAG_META )
436  stream_meta_finalize(id);
[1498]437#endif
[1043]438
[1029]439 return 0;
440}
441
442int streams_reset_flag   (int id, int flag) {
443 if ( g_streams[id] == NULL )
444  return -1;
445
[1928]446 if ( flag & ROAR_FLAG_MMAP )
447  if ( streams_set_mmap(id, 1) == -1 )
448   flag -= ROAR_FLAG_MMAP;
449
[1043]450 if ( flag & ROAR_FLAG_PRIMARY ) {
451  streams_set_primary(id, 0);
452  flag -= ROAR_FLAG_PRIMARY;
453 }
454
[1116]455 if ( flag & ROAR_FLAG_SYNC ) {
456  streams_set_sync(id, 0);
457 }
458
[1029]459 g_streams[id]->flags |= flag;
460 g_streams[id]->flags -= flag;
461
462 return 0;
463}
464
[1042]465int streams_get_flag     (int id, int flag) {
466 if ( g_streams[id] == NULL )
467  return -1;
468
469 return g_streams[id]->flags & flag ? 1 : 0;
470}
471
[1842]472int streams_set_name     (int id, char * name) {
473 char * str;
474
475 if ( g_streams[id] == NULL )
476  return -1;
477
478 if ( (str = strdup(name)) == NULL )
479  return -1;
480
481 if ( g_streams[id]->name != NULL )
482  free(g_streams[id]->name);
483
484 g_streams[id]->name = str;
[1845]485
486 return 0;
[1842]487}
488
489char * streams_get_name  (int id) {
490 if ( g_streams[id] == NULL )
491  return NULL;
492
493 return g_streams[id]->name;
494}
495
496
[1223]497int streams_calc_delay    (int id) {
[1142]498 struct roar_stream_server * ss;
[1151]499 struct roar_stream        * s;
[1142]500 register uint_least32_t d = 0;
501 uint_least32_t t[1];
[1151]502 uint64_t       tmp;
[1142]503
[1151]504 if ( (s = ROAR_STREAM(ss = g_streams[id])) == NULL )
[1142]505  return -1;
506
507 if ( ss->codecfilter != -1 ) {
508  if ( codecfilter_delay(ss->codecfilter_inst, ss->codecfilter, t) != -1 )
509   d += *t;
510 }
511
[1151]512 if ( ss->vio.ctl != NULL ) {
513  if ( roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_GET_DELAY, t) != -1 ) { // *t is in byte
[1223]514   ROAR_DBG("streams_calc_delay(id=%i): VIO delay in byte: %i", id, *t);
[1151]515   tmp = *t;
516   tmp *= 1000000; // musec per sec
517   tmp /= s->info.rate * s->info.channels * (s->info.bits/8);
[1223]518   ROAR_DBG("streams_calc_delay(id=%i): VIO delay in musec: %i", id, tmp);
[1151]519
520   d += tmp;
521  }
522 }
523
[1223]524 ROAR_DBG("streams_calc_delay(id=%i): delay in musec: %i", id, d);
[1151]525
[1142]526 ss->delay = d;
527
528 return 0;
529}
530
[1590]531int streams_set_mixer    (int id) {
532 struct roar_stream_server * ss;
533
534 if ( (ss = g_streams[id]) == NULL )
535  return -1;
536
537 if ( !streams_get_flag(id, ROAR_FLAG_HWMIXER) )
538  return 0;
539
540 if ( ss->driver_id == -1 )
541  return 0;
542
543 return driver_set_volume(id, &(ss->mixer));
544}
545
[1224]546int streams_ctl          (int id, int_least32_t cmd, void * data) {
547 struct roar_stream_server * ss;
548 int_least32_t comp;
549
550 if ( (ss = g_streams[id]) == NULL )
551  return -1;
552
553 comp = cmd & ROAR_STREAM_CTL_COMPMASK;
554
555 cmd &= ~comp;
556
[1239]557 ROAR_DBG("streams_ctl(id=%i, cmd=?, data=%p): comp=0x%.8x, cmd=0x%.4x", id, data, comp, cmd);
[1238]558
[1224]559 switch (comp) {
560  case ROAR_STREAM_CTL_COMP_BASE:
561   break;
562  case ROAR_STREAM_CTL_COMP_CF:
563    return codecfilter_ctl(ss->codecfilter_inst, ss->codecfilter, cmd, data);
564   break;
565  case ROAR_STREAM_CTL_COMP_DRV:
566   break;
567  default:
568   return -1;
569 }
570
571 return -1;
572}
573
[0]574int streams_get_outputbuffer  (int id, void ** buffer, size_t size) {
575 if ( g_streams[id] == NULL )
576  return -1;
577
578 // output buffer size does never change.
579 if ( g_streams[id]->output != NULL ) {
580  *buffer = g_streams[id]->output;
581  return 0;
582 }
583
584 if ( (g_streams[id]->output = malloc(size)) == NULL ) {
585  ROAR_ERR("streams_get_outputbuffer(*): Can not alloc: %s", strerror(errno));
586  return -1;
587 }
588
589 *buffer = g_streams[id]->output;
590
591 return 0;
592}
593
594int streams_fill_mixbuffer (int id, struct roar_audio_info * info) {
595 // TODO: decide: is this the most complex, hacked, un-understadable,
596 //               un-writeable and even worse: un-readable
597 //               function in the whole project?
598 size_t todo = ROAR_OUTPUT_CALC_OUTBUFSIZE(info);
[381]599 size_t needed = todo;
[0]600 size_t todo_in;
601 size_t len, outlen;
[491]602 size_t mul = 1, div = 1;
[0]603 void * rest = NULL;
604 void * in   = NULL;
605 struct roar_buffer     * buf;
606 struct roar_audio_info * stream_info;
[495]607 struct roar_stream_server * stream = g_streams[id];
[0]608 int is_the_same = 0;
609
610 if ( g_streams[id] == NULL )
611  return -1;
612
613 if ( streams_get_outputbuffer(id, &rest, todo) == -1 ) {
614  return -1;
615 }
616
617 if ( rest == NULL ) {
618  return -1;
619 }
620
621 // set up stream_info
622
[495]623 stream_info = &(ROAR_STREAM(stream)->info);
[0]624
625 // calc todo_in
[491]626 todo_in = ROAR_OUTPUT_CALC_OUTBUFSIZE(stream_info);
627
[2021]628 if ( todo_in == 0 ) {
629  ROAR_WARN("streams_fill_mixbuffer(id=%i, info=%p{...}): todo_in == 0, this should not happen!", id, info);
630  return -1;
631 }
632
[491]633 // calc mul and div:
634 mul = todo    / todo_in;
635 div = todo_in / todo;
636
637 if ( mul == 0 ) {
638  mul = 1;
639 } else {
640  div = 1;
641 }
642
643 ROAR_DBG("streams_fill_mixbuffer(*): mul=%i, div=%i", mul, div);
[0]644
645 ROAR_DBG("streams_fill_mixbuffer(*): rest=%p, todo=%i->%i (in->out)", rest, todo_in, todo);
646 // are both (input and output) of same format?
647
648
649 ROAR_DBG("streams_fill_mixbuffer(*): stream_info:");
650 roar_debug_audio_info_print(stream_info);
651 ROAR_DBG("streams_fill_mixbuffer(*): info:");
652 roar_debug_audio_info_print(info);
653
654 is_the_same = stream_info->rate     == info->rate     && stream_info->bits  == info->bits &&
655               stream_info->channels == info->channels && stream_info->codec == info->codec;
656
657 ROAR_DBG("streams_fill_mixbuffer(*): is_the_same=%i", is_the_same);
658
659/* How it works:
660 *
661 * set a counter to the number of samples we need.
662 * loop until we have all samples done or no samples are
663 * left in our input buffer.
664 * If there a no samples left in the input buffer: fill the rest
665 * of the output buffer with zeros.
666 *
667 * The loop:
668 * get a buffer from the input.
669 * if it's bigger than needed, set an offset.
670 * The rest of the data:
671 * 0) convert endianness (codec) from remote to local...
672 * 1) change bits in of the samples
673 * 2) change sample rate
674 * 3) change the nummber of channels
675 * 4) insert into output buffer
676 */
677
678/*
679 // get our first buffer:
680
681 if ( stream_shift_buffer(id, &buf) == -1 ) {
682  return -1;
683 }
684
685 // first test for some basic simple cases...
686
687 if ( buf == NULL ) { // we habe nothing in input queue
688                      // we may memset() our output buffer OR
689                      // just return with -1 so we are going to
690                      // be ignored.
691  return -1;
692 }
693*/
694
695 while (todo) { // main loop
696  ROAR_DBG("streams_fill_mixbuffer(*): looping...");
697  // exit loop if nothing is left, even if we need more data..
698  if ( stream_shift_buffer(id, &buf) == -1 )
699   break;
700  if ( buf == NULL )
701   break;
702
703  // read the data for this loop...
704  roar_buffer_get_data(buf, &in);
705  roar_buffer_get_len(buf, &len);
706
707  ROAR_DBG("streams_fill_mixbuffer(*): len = %i", len);
708
709  if ( len > todo_in ) {
710   roar_buffer_set_offset(buf, todo_in);
711   len = todo_in;
712  } else {
713   roar_buffer_set_len(buf, 0); // queue for deletation
714  }
715
716  // we now have 'len' bytes in 'in'
717
718  // calc how much outlen this has...
[491]719  outlen = (len * mul) / div;
[0]720
721  ROAR_DBG("streams_fill_mixbuffer(*): outlen = %i, buf = %p, len = %i", outlen, in, len);
722
723  if ( is_the_same ) {
724/*
725 * 0) convert endianness (codec) from remote to local...
726 * 1) change bits in of the samples
727 * 2) change sample rate
728 * 3) change the nummber of channels
729   \\==> skiping,...
730 */
731   // * 4) insert into output buffer
732   ROAR_DBG("streams_fill_mixbuffer(*): memcpy: in->rest: %p -> %p", in, rest);
733   if ( memcpy(rest, in, len) != rest ) {
734    ROAR_ERR("streams_fill_mixbuffer(*): memcpy returned invalid pointer.");
735   }
736
737  } else {
738
739/*
740   // * 0) convert endianness (codec) from remote to local...
741   if ( stream_info->codec != info->codec ) {
742    // we neet to convert...
743    return -1;
744   }
745
746   // * 1) change bits in of the samples
747   if ( stream_info->bits != info->bits ) {
748    return -1;
749   }
750
751   // * 2) change sample rate
752   if ( stream_info->rate != info->rate ) {
753    return -1;
754   }
755
756   // * 3) change the nummber of channels
757   if ( stream_info->channels != info->channels ) {
758    return -1;
759   }
760
761   // * 4) insert into output buffer
762*/
763  // hey! we have roar_conv() :)
764
[491]765  if ( roar_conv(rest, in, 8*len / stream_info->bits, stream_info, info) == -1 )
766   return -1;
767  }
[0]768
[1590]769  if ( !streams_get_flag(id, ROAR_FLAG_HWMIXER) ) {
770   if ( change_vol(rest, info->bits, rest, 8*outlen / info->bits, info->channels, &(stream->mixer)) == -1 )
771    return -1;
772  }
[17]773
[0]774  // we habe outlen bytes more...
[491]775  todo    -= outlen;
776  rest    += outlen;
777  todo_in -= len;
[0]778
[491]779  roar_buffer_get_len(buf, &len);
780  ROAR_DBG("streams_fill_mixbuffer(*): New length of buffer %p is %i", buf, len);
781  if ( len == 0 ) {
782   roar_buffer_delete(buf, NULL);
783  } else {
784   stream_unshift_buffer(id, buf);
[271]785  }
[0]786 }
787
[271]788//len = 0;
789//roar_buffer_get_len(buf, &len);
[0]790
791/*
792 if ( len > 0 ) // we still have some data in this buffer, re-inserting it to the input buffers...
793  stream_unshift_buffer(id, buf);
794 else
795  buffer_delete(buf, NULL);
796*/
797
[609]798 ROAR_STREAM(g_streams[id])->pos =
799      ROAR_MATH_OVERFLOW_ADD(ROAR_STREAM(g_streams[id])->pos,
[381]800          ROAR_OUTPUT_CALC_OUTBUFSAMP(info, needed-todo));
801 //ROAR_WARN("stream=%i, pos=%u", id, ((struct roar_stream*)g_streams[id])->pos);
802
[495]803 if ( todo > 0 ) { // zeroize the rest of the buffer
[0]804  memset(rest, 0, todo);
[125]805
806  if ( todo != ROAR_OUTPUT_CALC_OUTBUFSIZE(info) ) {
[495]807   if ( g_streams[id]->is_new ) {
808    stream->pre_underruns++;
809   } else {
[701]810    ROAR_WARN("streams_fill_mixbuffer(*): Underrun in stream: %u bytes missing, filling with zeros", (unsigned int)todo);
[495]811    stream->post_underruns++;
812   }
[125]813
[495]814   stream->is_new = 0;
[125]815  }
816 } else {
[495]817  stream->is_new = 0;
[0]818 }
819
820 return 0;
821}
822
[491]823
[0]824int streams_get_mixbuffers (void *** bufferlist, struct roar_audio_info * info, unsigned int pos) {
[84]825 static void * bufs[ROAR_STREAMS_MAX+1];
[0]826 int i;
827 int have = 0;
828
829 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
830  if ( g_streams[i] != NULL ) {
[826]831   if ( ROAR_STREAM(g_streams[i])->dir != ROAR_DIR_PLAY && ROAR_STREAM(g_streams[i])->dir != ROAR_DIR_BIDIR )
[0]832    continue;
833
834   if ( streams_get_outputbuffer(i, &bufs[have], ROAR_OUTPUT_CALC_OUTBUFSIZE(info)) == -1 ) {
835    ROAR_ERR("streams_get_mixbuffer(*): Can not alloc output buffer for stream %i, BAD!", i);
836    ROAR_ERR("streams_get_mixbuffer(*): Ignoring stream for this round.");
837    continue;
838   }
839   if ( streams_fill_mixbuffer(i, info) == -1 ) {
840    ROAR_ERR("streams_get_mixbuffer(*): Can not fill output buffer for stream %i, this should not happen", i);
841    continue;
842   }
843
[139]844//   printf("D: bufs[have=%i] = %p\n", have, bufs[have]);
845
[0]846   ROAR_DBG("streams_get_mixbuffers(*):  bufs[have] = %p", bufs[have]);
847   ROAR_DBG("streams_get_mixbuffers(*): *bufs[have] = 0x%08x...", *(uint32_t*)bufs[have]);
848
[1887]849   if ( !streams_get_flag(i, ROAR_FLAG_MUTE) )
850    have++; // we have a new stream!
[0]851  }
852 }
853
854 bufs[have] = NULL;
[139]855 //printf("D: bufs[have=%i] = %p\n", have, bufs[have]);
[0]856
857 ROAR_DBG("streams_get_mixbuffers(*): have = %i", have);
858
859 *bufferlist = bufs;
[547]860 return have;
[0]861}
862
863
864int stream_add_buffer  (int id, struct roar_buffer * buf) {
865 ROAR_DBG("stream_add_buffer(id=%i, buf=%p) = ?", id, buf);
866
867 if ( g_streams[id] == NULL )
868  return -1;
869
870 if ( g_streams[id]->buffer == NULL ) {
871  g_streams[id]->buffer = buf;
872  ROAR_DBG("stream_add_buffer(id=%i, buf=%p) = 0", id, buf);
873  return 0;
874 }
875
876 ROAR_DBG("stream_add_buffer(id=%i, buf=%p) = ?", id, buf);
877 return roar_buffer_add(g_streams[id]->buffer, buf);
878}
879
880int stream_shift_buffer   (int id, struct roar_buffer ** buf) {
881 struct roar_buffer * next;
882
883 if ( g_streams[id] == NULL )
884  return -1;
885
886 if ( g_streams[id]->buffer == NULL ) {
887  *buf = NULL;
888  return 0;
889 }
890
891 roar_buffer_get_next(g_streams[id]->buffer, &next);
892
893 *buf                  = g_streams[id]->buffer;
894 g_streams[id]->buffer = next;
895
896 return 0;
897}
898int stream_unshift_buffer (int id, struct roar_buffer *  buf) {
899 if ( g_streams[id] == NULL )
900  return -1;
901
902 if ( g_streams[id]->buffer == NULL ) {
903  g_streams[id]->buffer = buf;
904  return 0;
905 }
906
[271]907 buf->next = NULL;
908
[0]909 roar_buffer_add(buf, g_streams[id]->buffer);
910
911 g_streams[id]->buffer = buf;
912
913 return 0;
914}
915
916int streams_check  (int id) {
917 int fh;
[1837]918 int i;
[508]919 ssize_t req, realreq, done;
[0]920 struct roar_stream        *   s;
921 struct roar_stream_server *  ss;
922 struct roar_buffer        *   b;
923 char                      * buf;
924
925 if ( g_streams[id] == NULL )
926  return -1;
927
928 ROAR_DBG("streams_check(id=%i) = ?", id);
929
[609]930 s = ROAR_STREAM(ss = g_streams[id]);
[0]931
932 if ( (fh = s->fh) == -1 )
933  return 0;
934
[1821]935 if ( streams_get_flag(id, ROAR_FLAG_PAUSE) )
[0]936  return 0;
937
[1821]938 switch (s->dir) {
939  case ROAR_DIR_LIGHT_IN:
940    return light_check_stream(id);
941   break;
[1845]942  case ROAR_DIR_MIDI_IN:
943    return midi_check_stream(id);
944   break;
[1821]945  case ROAR_DIR_PLAY:
946  case ROAR_DIR_BIDIR:
947   break;
948  default:
949    return 0;
950   break;
951 }
[1585]952
[0]953 ROAR_DBG("streams_check(id=%i): fh = %i", id, fh);
954
955 req  = ROAR_OUTPUT_BUFFER_SAMPLES * s->info.channels * s->info.bits / 8; // optimal size
956 req += ss->need_extra; // bytes left we sould get....
957
958 if ( roar_buffer_new(&b, req) == -1 ) {
959  ROAR_ERR("streams_check(*): Can not alloc buffer space!");
960  ROAR_DBG("streams_check(*) = -1");
961  return -1;
962 }
963
964 roar_buffer_get_data(b, (void **)&buf);
965
966 ROAR_DBG("streams_check(id=%i): buffer is up and ready ;)", id);
967
[270]968 if ( ss->codecfilter == -1 ) {
[508]969  realreq = req;
970/*
[270]971  req = read(fh, buf, req);
[508]972  if ( req < realreq ) { // we can do this as the stream is in nonblocking mode!
973   if ( (realreq = read(fh, buf+req, realreq-req)) > 0 )
974    req += realreq;
975  }
976*/
977  done = 0;
978  while (req > 0 && done != realreq) {
[881]979   if ( (req = stream_vio_s_read(ss, buf+done, realreq-done)) > 0 )
[508]980    done += req;
981  }
982  req = done;
[1837]983
984  roar_buffer_get_data(b, (void **)&buf);
985  for (i = 0; i < ROAR_STREAMS_MAX; i++) {
986   if ( g_streams[i] != NULL && ROAR_STREAM(g_streams[i])->pos_rel_id == id ) {
987    if ( ROAR_STREAM(g_streams[i])->dir == ROAR_DIR_THRU ) {
988     if ( stream_vio_write(i, buf, req) != req ) {
989      streams_delete(i);
990     }
991    }
992   }
993  }
[270]994 } else {
995  req = codecfilter_read(ss->codecfilter_inst, ss->codecfilter, buf, req);
996 }
997
998 if ( req > 0 ) {
[0]999  ROAR_DBG("streams_check(id=%i): got %i bytes", id, req);
1000
1001  roar_buffer_set_len(b, req);
1002
1003  if ( stream_add_buffer(id, b) != -1 )
1004   return 0;
1005
1006  ROAR_ERR("streams_check(id=%i): something is wrong, could not add buffer to stream!", id);
1007  roar_buffer_free(b);
1008 } else {
[272]1009  ROAR_DBG("streams_check(id=%i): read() = %i // errno: %s", id, req, strerror(errno));
1010#ifdef ROAR_HAVE_LIBVORBISFILE
1011  if ( errno != EAGAIN && errno != ESPIPE ) { // libvorbis file trys to seek a bit ofen :)
1012#else
1013  if ( errno != EAGAIN ) {
1014#endif
1015   ROAR_DBG("streams_check(id=%i): EOF!", id);
1016   streams_delete(id);
1017   ROAR_DBG("streams_check(id=%i) = 0", id);
1018  }
[334]1019  roar_buffer_free(b);
[0]1020  return 0;
1021 }
1022
1023
1024 ROAR_DBG("streams_check(id=%i) = -1", id);
1025 return -1;
1026}
1027
1028
1029int streams_send_mon   (int id) {
[936]1030// int fh;
[0]1031 struct roar_stream        *   s;
1032 struct roar_stream_server *  ss;
[1157]1033 void  * obuf;
1034 int     olen;
1035 int     need_to_free = 0;
1036 ssize_t ret;
[0]1037
1038 if ( g_streams[id] == NULL )
1039  return -1;
1040
1041 ROAR_DBG("streams_send_mon(id=%i) = ?", id);
1042
[585]1043 s = ROAR_STREAM((ss = g_streams[id]));
[0]1044
[934]1045/*
[0]1046 if ( (fh = s->fh) == -1 )
1047  return 0;
[934]1048*/
[0]1049
[1914]1050 if ( !ss->ready )
1051  return 0;
[930]1052
[1585]1053 if ( streams_get_flag(id, ROAR_FLAG_PAUSE) )
1054  return 0;
1055
[1821]1056 switch (s->dir) {
1057  case ROAR_DIR_LIGHT_OUT:
1058    return light_send_stream(id);
1059   break;
[1845]1060  case ROAR_DIR_MIDI_OUT:
1061    return midi_send_stream(id);
1062   break;
[1821]1063  case ROAR_DIR_OUTPUT:
1064    if ( g_standby )
1065     return 0;
1066  case ROAR_DIR_MONITOR:
1067  case ROAR_DIR_BIDIR:
1068   break;
1069
1070  default:
1071    return 0;
1072   break;
1073 }
1074
1075
[1042]1076 ROAR_DBG("streams_send_mon(id=%i): fh = %i", id, s->fh);
[0]1077
[625]1078 if ( s->info.channels != g_sa->channels || s->info.bits  != g_sa->bits ||
1079      s->info.rate     != g_sa->rate     || s->info.codec != g_sa->codec  ) {
1080  olen = ROAR_OUTPUT_CALC_OUTBUFSIZE(&(s->info)); // we hope g_output_buffer_len
1081                                                  // is ROAR_OUTPUT_CALC_OUTBUFSIZE(g_sa) here
1082  if ( (obuf = malloc(olen)) == NULL )
1083   return -1;
1084
1085  need_to_free = 1;
1086
1087  ROAR_DBG("streams_send_mon(id=%i): obuf=%p, olen=%i", id, obuf, olen);
1088
1089  if ( roar_conv(obuf, g_output_buffer, ROAR_OUTPUT_BUFFER_SAMPLES*g_sa->channels, g_sa, &(s->info)) == -1 ) {
1090   free(obuf);
1091   return -1;
1092  }
1093 } else {
1094  obuf = g_output_buffer;
1095  olen = g_output_buffer_len;
1096 }
1097
[585]1098 errno = 0;
1099
1100 if ( ss->codecfilter == -1 ) {
[1042]1101  ROAR_DBG("streams_send_mon(id=%i): not a CF stream", id);
1102  if ( s->fh == -1 && roar_vio_get_fh(&(ss->vio)) == -1 )
[1014]1103   return 0;
1104
[1157]1105  if ( (ret = stream_vio_s_write(ss, obuf, olen)) == olen ) {
[625]1106   if ( need_to_free ) free(obuf);
[981]1107   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), olen)*s->info.channels);
[585]1108   return 0;
[625]1109  }
[1157]1110
1111  if ( ret > 0 && errno == 0 ) {
[1231]1112   ROAR_WARN("streams_send_mon(id=%i): Overrun in stream: wrote %i of %i bytes, %i bytes missing", id, (int)ret, olen, olen-(int)ret);
[1157]1113   if ( need_to_free ) free(obuf);
1114   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), ret)*s->info.channels);
1115   return 0;
1116  }
[585]1117 } else {
[1012]1118  errno = 0;
[625]1119  if ( codecfilter_write(ss->codecfilter_inst, ss->codecfilter, obuf, olen)
1120            == olen ) {
1121   if ( need_to_free ) free(obuf);
[981]1122   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), olen)*s->info.channels);
[585]1123   return 0;
1124  } else { // we cann't retry on codec filetered streams
[1012]1125   if ( errno != EAGAIN ) {
1126    if ( need_to_free ) free(obuf);
1127    streams_delete(id);
1128    return -1;
1129   }
[585]1130  }
1131 }
[0]1132
[129]1133 if ( errno == EAGAIN ) {
1134  // ok, the client blocks for a moment, we try to sleep a bit an retry in the hope not to
1135  // make any gapes in any output because of this
1136
[1750]1137#ifdef ROAR_HAVE_USLEEP
[129]1138  usleep(100); // 0.1ms
[1750]1139#endif
[129]1140
[881]1141  if ( stream_vio_s_write(ss, obuf, olen) == olen ) {
[625]1142   if ( need_to_free ) free(obuf);
[981]1143   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), olen)*s->info.channels);
[129]1144   return 0;
[1015]1145  } else if ( errno == EAGAIN ) {
1146   ROAR_WARN("streams_send_mon(id=%i): Can not send data to client: %s", id, strerror(errno));
1147   return 0;
[625]1148  }
[129]1149 }
1150
[0]1151 // ug... error... delete stream!
1152
[625]1153 if ( need_to_free ) free(obuf);
[0]1154 streams_delete(id);
1155
1156 return -1;
1157}
1158
1159int streams_send_filter(int id) {
1160 int fh;
[127]1161 int have = 0;
1162 int len;
[0]1163 struct roar_stream        *   s;
1164 struct roar_stream_server *  ss;
1165
1166 if ( g_streams[id] == NULL )
1167  return -1;
1168
1169 ROAR_DBG("streams_send_filter(id=%i) = ?", id);
1170
[609]1171 s = ROAR_STREAM(ss = g_streams[id]);
[0]1172
1173 if ( (fh = s->fh) == -1 )
1174  return 0;
1175
1176 if ( s->dir != ROAR_DIR_FILTER )
1177  return 0;
1178
[1585]1179 if ( streams_get_flag(id, ROAR_FLAG_PAUSE) )
1180  return 0;
1181
1182
[0]1183 ROAR_DBG("streams_send_filter(id=%i): fh = %i", id, fh);
1184
[881]1185 if ( stream_vio_s_write(ss, g_output_buffer, g_output_buffer_len) == g_output_buffer_len ) {
[127]1186  while ( have < g_output_buffer_len ) {
[881]1187   if ( (len = stream_vio_s_read(ss, g_output_buffer+have, g_output_buffer_len-have)) < 1 ) {
[127]1188    streams_delete(id);
1189    return -1;
1190   }
1191   have += len;
[0]1192  }
[127]1193  return 0;
[0]1194 }
1195
1196 // ug... error... delete stream!
1197
1198 streams_delete(id);
1199
1200 return -1;
1201}
1202
[596]1203
1204// VIO:
1205
1206ssize_t stream_vio_read (int stream, void *buf, size_t count) {
1207 struct roar_stream_server * s = g_streams[stream];
1208
1209 if ( !s )
1210  return -1;
1211
1212 return stream_vio_s_read(s, buf, count);
1213}
1214
1215ssize_t stream_vio_write(int stream, void *buf, size_t count) {
1216 struct roar_stream_server * s = g_streams[stream];
1217
1218 if ( !s )
1219  return -1;
1220
1221 return stream_vio_s_write(s, buf, count);
1222}
1223
1224
1225ssize_t stream_vio_s_read (struct roar_stream_server * stream, void *buf, size_t count) {
[741]1226  size_t len =  0;
1227 ssize_t r   = -1;
[739]1228
[596]1229 errno = 0;
1230
1231 if ( !stream )
1232  return -1;
1233
[1613]1234 //roar_vio_set_fh(&(stream->vio), ROAR_STREAM(stream)->fh);
[881]1235
[596]1236 if ( ! stream->vio.read )
1237  return -1;
1238
[881]1239 while ( (r = roar_vio_read(&(stream->vio), buf, count)) > 0 ) {
[739]1240  len   += r;
1241  buf   += r;
1242  count -= r;
1243  if ( count == 0 )
1244   break;
1245 }
1246
[740]1247 if ( len == 0 && r == -1 )
1248  return -1;
1249
[739]1250 return len;
[596]1251}
1252
1253ssize_t stream_vio_s_write(struct roar_stream_server * stream, void *buf, size_t count) {
1254 errno = 0;
1255
1256 if ( !stream )
1257  return -1;
1258
[1613]1259/*
[934]1260 if ( roar_vio_get_fh(&(stream->vio)) == -1 && ROAR_STREAM(stream)->fh != -1 )
1261  roar_vio_set_fh(&(stream->vio), ROAR_STREAM(stream)->fh);
[1613]1262*/
[934]1263
1264// ROAR_WARN("stream_vio_s_write(*): writing...");
[596]1265
[881]1266 return roar_vio_write(&(stream->vio), buf, count);
[596]1267}
1268
[0]1269//ll
Note: See TracBrowser for help on using the repository browser.