source: roaraudio/roard/streams.c @ 4217:e190045a8333

Last change on this file since 4217:e190045a8333 was 4157:692ec8c7f69d, checked in by phi, 14 years ago

change delay messurement: do not include delay by mixer stream

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