source: roaraudio/roard/streams.c @ 2952:ce25506bc479

Last change on this file since 2952:ce25506bc479 was 2952:ce25506bc479, checked in by phi, 15 years ago

support for the true meaning of ROAR_FLAG_IMMUTABLE

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