source: roaraudio/roard/streams.c @ 2361:6cd94216bb06

Last change on this file since 2361:6cd94216bb06 was 2361:6cd94216bb06, checked in by phi, 15 years ago

only set nonblock in case sync really means nonblock

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