2 * Copyright (C) 1997-2007 Andre Noll <maan@systemlinux.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
19 /** \file vss.c the virtual streaming system
21 * This contains the audio streaming code of para_server which is independent
22 * of the current audio format, audio file selector and of the activated
27 #include <sys/mman.h> /* mmap */
28 #include <sys/time.h> /* gettimeofday */
29 #include "server.cmdline.h"
37 extern const char *status_item_list
[];
39 static struct timeval announce_tv
;
40 static struct timeval data_send_barrier
;
41 static struct timeval eof_barrier
;
42 static struct timeval autoplay_barrier
;
44 extern struct misc_meta_data
*mmd
;
45 extern struct audio_file_selector selectors
[];
46 extern struct sender senders
[];
48 static int audio_file
;
52 void mp3_init(struct audio_format_handler
*);
56 void ogg_init(struct audio_format_handler
*);
59 void aac_afh_init(struct audio_format_handler
*);
63 * the list of supported audio formats
65 static struct audio_format_handler afl
[] = {
89 /** iterate over each supported audio format */
90 #define FOR_EACH_AUDIO_FORMAT(i) for (i = 0; afl[i].name; i++)
95 * check if vss status flag \a P (playing) is set
97 * \return greater than zero if playing, zero otherwise.
100 unsigned int vss_playing(void)
102 return mmd
->new_vss_status_flags
& VSS_PLAYING
;
106 * check if \a N (next) status flag is set
108 * \return greater than zero if set, zero if not.
111 unsigned int vss_next(void)
113 return mmd
->new_vss_status_flags
& VSS_NEXT
;
117 * check if a reposition request is pending
119 * \return greater than zero if true, zero otherwise.
122 unsigned int vss_repos(void)
124 return mmd
->new_vss_status_flags
& VSS_REPOS
;
128 * check if the vss is currently paused
130 * \return greater than zero if paused, zero otherwise.
133 unsigned int vss_paused(void)
135 return !(mmd
->new_vss_status_flags
& VSS_NEXT
)
136 && !(mmd
->new_vss_status_flags
& VSS_PLAYING
);
140 * get the name of the given audio format
141 * \param i the audio format number
143 * This returns a pointer to statically allocated memory so it
144 * must not be freed by the caller.
146 const char *audio_format_name(int i
)
148 return i
>= 0? afl
[i
].name
: "(none)";
152 * initialize the virtual streaming system
154 * Call the init functions of all supported audio format handlers and
155 * initialize all supported senders.
160 char *hn
= para_hostname(), *home
= para_homedir();
161 long unsigned announce_time
= conf
.announce_time_arg
> 0?
162 conf
.announce_time_arg
: 300,
163 autoplay_delay
= conf
.autoplay_delay_arg
> 0?
164 conf
.autoplay_delay_arg
: 0;
166 PARA_DEBUG_LOG("supported audio formats: %s\n",
167 SUPPORTED_AUDIO_FORMATS
);
168 for (i
= 0; afl
[i
].name
; i
++) {
169 PARA_NOTICE_LOG("initializing %s handler\n",
171 afl
[i
].init(&afl
[i
]);
173 ms2tv(announce_time
, &announce_tv
);
174 PARA_INFO_LOG("announce timeval: %lums\n", tv2ms(&announce_tv
));
175 for (i
= 0; senders
[i
].name
; i
++) {
176 PARA_NOTICE_LOG("initializing %s sender\n", senders
[i
].name
);
177 senders
[i
].init(&senders
[i
]);
181 if (conf
.autoplay_given
) {
182 struct timeval now
, tmp
;
183 mmd
->vss_status_flags
|= VSS_PLAYING
;
184 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
185 gettimeofday(&now
, NULL
);
186 ms2tv(autoplay_delay
, &tmp
);
187 tv_add(&now
, &tmp
, &autoplay_barrier
);
191 static int get_file_info(int i
)
193 return afl
[i
].get_file_info(map
, mmd
->size
, &mmd
->afi
);
197 * guess the audio format judging from filename
199 * \param name the filename
201 * \return This function returns -1 if it has no idea what kind of audio
202 * file this might be. Otherwise the (non-negative) number of the audio format
205 int guess_audio_format(const char *name
)
207 int i
,j
, len
= strlen(name
);
209 FOR_EACH_AUDIO_FORMAT(i
) {
210 for (j
= 0; afl
[i
].suffixes
[j
]; j
++) {
211 const char *p
= afl
[i
].suffixes
[j
];
212 int plen
= strlen(p
);
215 if (name
[len
- plen
- 1] != '.')
217 if (strcasecmp(name
+ len
- plen
, p
))
219 // PARA_DEBUG_LOG("might be %s\n", audio_format_name(i));
226 static int get_audio_format(int omit
)
230 FOR_EACH_AUDIO_FORMAT(i
) {
233 if (get_file_info(i
) > 0)
236 return -E_AUDIO_FORMAT
;
242 static int update_mmd(void)
246 i
= guess_audio_format(mmd
->filename
);
247 if (i
< 0 || get_file_info(i
) < 0)
248 i
= get_audio_format(i
);
251 mmd
->audio_format
= i
;
252 mmd
->chunks_sent
= 0;
253 mmd
->current_chunk
= 0;
259 static void vss_get_audio_file(void)
261 char **sl
= selectors
[mmd
->selector_num
].get_audio_file_list(10);
263 struct stat file_status
;
267 for (i
= 0; sl
[i
]; i
++) {
269 PARA_INFO_LOG("trying %s\n", sl
[i
]);
270 if (strlen(sl
[i
]) >= _POSIX_PATH_MAX
)
272 audio_file
= open(sl
[i
], O_RDONLY
);
275 if (fstat(audio_file
, &file_status
) == -1 ||
276 !file_status
.st_size
) {
280 mmd
->size
= file_status
.st_size
;
281 mmd
->mtime
= file_status
.st_mtime
;
282 map
= para_mmap(mmd
->size
, PROT_READ
, MAP_PRIVATE
,
284 strcpy(mmd
->filename
, sl
[i
]);
285 mmd
->afi
.header_len
= 0; /* default: no header */
286 if (update_mmd() < 0) { /* invalid file */
288 munmap(map
, mmd
->size
);
293 if (selectors
[mmd
->selector_num
].update_audio_file
)
294 selectors
[mmd
->selector_num
].update_audio_file(sl
[i
]);
295 PARA_NOTICE_LOG("next audio file: %s\n", mmd
->filename
);
296 mmd
->new_vss_status_flags
&= (~VSS_NEXT
);
297 gettimeofday(&now
, NULL
);
298 tv_add(&now
, &announce_tv
, &data_send_barrier
);
302 PARA_ERROR_LOG("%s", "no valid files found\n");
303 mmd
->new_vss_status_flags
= VSS_NEXT
;
306 for (i
= 0; sl
[i
]; i
++)
312 static int chk_barrier(const char *bname
, const struct timeval
*now
,
313 const struct timeval
*barrier
, struct timeval
*diff
,
318 if (tv_diff(now
, barrier
, diff
) > 0)
322 PARA_DEBUG_LOG("%s barrier: %lims left\n", bname
, ms
);
326 static void vss_next_chunk_time(struct timeval
*due
)
330 tv_scale(mmd
->chunks_sent
, &mmd
->afi
.chunk_tv
, &tmp
);
331 tv_add(&tmp
, &mmd
->stream_start
, due
);
335 * != NULL: timeout for next chunk
336 * NULL: nothing to do
338 static struct timeval
*vss_compute_timeout(void)
340 static struct timeval the_timeout
;
341 struct timeval now
, next_chunk
;
343 if (vss_next() && mmd
->audio_format
>= 0) {
344 /* only sleep a bit, nec*/
345 the_timeout
.tv_sec
= 0;
346 the_timeout
.tv_usec
= 100;
349 gettimeofday(&now
, NULL
);
350 if (chk_barrier("autoplay_delay", &now
, &autoplay_barrier
,
351 &the_timeout
, 1) < 0)
353 if (chk_barrier("eof", &now
, &eof_barrier
, &the_timeout
, 1) < 0)
355 if (chk_barrier("data send", &now
, &data_send_barrier
,
356 &the_timeout
, 1) < 0)
358 if (mmd
->audio_format
< 0 || !vss_playing() || !map
)
360 vss_next_chunk_time(&next_chunk
);
361 if (chk_barrier(afl
[mmd
->audio_format
].name
, &now
, &next_chunk
,
362 &the_timeout
, 0) < 0)
364 /* chunk is due or bof */
365 the_timeout
.tv_sec
= 0;
366 the_timeout
.tv_usec
= 0;
370 static void vss_eof(void)
377 for (i
= 0; senders
[i
].name
; i
++)
378 senders
[i
].shutdown_clients();
381 gettimeofday(&now
, NULL
);
382 tv_add(&mmd
->afi
.eof_tv
, &now
, &eof_barrier
);
383 munmap(map
, mmd
->size
);
386 mmd
->audio_format
= -1;
387 mmd
->chunks_sent
= 0;
389 mmd
->afi
.seconds_total
= 0;
390 free(mmd
->afi
.chunk_table
);
391 mmd
->afi
.chunk_table
= NULL
;
392 tmp
= make_message("%s:\n%s:\n%s:\n", status_item_list
[SI_AUDIO_INFO1
],
393 status_item_list
[SI_AUDIO_INFO2
], status_item_list
[SI_AUDIO_INFO3
]);
394 strcpy(mmd
->afi
.info_string
, tmp
);
396 tmp
= make_message("%s:\n%s:\n%s:\n", status_item_list
[SI_DBINFO1
],
397 status_item_list
[SI_DBINFO2
], status_item_list
[SI_DBINFO3
]);
398 strcpy(mmd
->selector_info
, tmp
);
400 mmd
->filename
[0] = '\0';
406 * get the header and of the current audio file
408 * \param header_len the length of the header is stored here
410 * \return a pointer to a buffer containing the header, or NULL, if no audio
411 * file is selected or if the current audio format does not need special header
415 char *vss_get_header(unsigned *header_len
)
417 if (mmd
->audio_format
< 0 || !map
|| !mmd
->afi
.header_len
)
419 *header_len
= mmd
->afi
.header_len
;
420 return map
+ mmd
->afi
.header_offset
;
424 * get the list of all supported audio formats
426 * \return a space separated list of all supported audio formats
427 * It is not allocated at runtime, i.e. there is no need to free
428 * the returned string in the caller.
430 const char *supported_audio_formats(void)
432 return SUPPORTED_AUDIO_FORMATS
;
436 * get the chunk time of the current audio file
438 * \return a pointer to a struct containing the chunk time, or NULL,
439 * if currently no audio file is selected.
441 struct timeval
*vss_chunk_time(void)
443 if (mmd
->audio_format
< 0)
445 return &mmd
->afi
.chunk_tv
;
449 * compute the timeout for para_server's main select-loop
451 * This function gets called from para_server to determine the timeout value
452 * for its main select loop.
454 * Before the timeout is computed, the current vss status flags are evaluated
455 * and acted upon by calling appropriate functions from the lower layers.
456 * Possible actions include
458 * - request a new file list from the current audio file selector
459 * - shutdown of all senders (stop/pause command)
460 * - reposition the stream (ff/jmp command)
462 * \return A pointer to a struct timeval containing the timeout for the next
463 * chunk of data to be sent, or NULL if we're not sending right now.
465 struct timeval
*vss_preselect(void)
467 struct audio_format_handler
*af
= NULL
;
471 format
= mmd
->audio_format
;
475 for (i
= 0; senders
[i
].name
; i
++)
476 senders
[i
].shutdown_clients();
477 if (vss_next() && af
) {
479 return vss_compute_timeout();
481 if (vss_paused() || vss_repos()) {
482 for (i
= 0; senders
[i
].name
; i
++)
483 senders
[i
].shutdown_clients();
486 gettimeofday(&now
, NULL
);
487 if (!vss_paused() || mmd
->chunks_sent
)
488 tv_add(&mmd
->afi
.eof_tv
, &now
, &eof_barrier
);
490 tv_add(&now
, &announce_tv
, &data_send_barrier
);
491 if (mmd
->new_vss_status_flags
& VSS_NOMORE
)
492 mmd
->new_vss_status_flags
= VSS_NEXT
;
494 mmd
->chunks_sent
= 0;
497 mmd
->new_vss_status_flags
&= ~(VSS_REPOS
);
498 mmd
->current_chunk
= mmd
->repos_request
;
500 ret
= vss_compute_timeout();
501 if (!ret
&& !map
&& vss_playing() &&
502 !(mmd
->new_vss_status_flags
& VSS_NOMORE
)) {
503 PARA_DEBUG_LOG("%s", "ready and playing, but no audio file\n");
504 vss_get_audio_file();
511 * main sending function
513 * This function gets called from para_server as soon as the next chunk of
514 * data should be pushed out. It first calls the read_chunk() function of
515 * the current audio format handler to obtain a pointer to the data to be
516 * sent out as well as its length. This information is then passed to each
517 * supported sender's send() function which does the actual sending.
519 void vss_send_chunk(void)
522 struct audio_format_handler
*af
;
525 struct timeval now
, due
;
527 if (mmd
->audio_format
< 0 || !map
|| !vss_playing())
529 af
= &afl
[mmd
->audio_format
];
530 gettimeofday(&now
, NULL
);
531 vss_next_chunk_time(&due
);
532 if (tv_diff(&due
, &now
, NULL
) > 0)
534 if (chk_barrier("eof", &now
, &eof_barrier
, &due
, 1) < 0)
536 if (chk_barrier("data send", &now
, &data_send_barrier
,
539 mmd
->new_vss_status_flags
&= ~VSS_REPOS
;
540 if (mmd
->current_chunk
>= mmd
->afi
.chunks_total
) { /* eof */
541 mmd
->new_vss_status_flags
|= VSS_NEXT
;
544 pos
= mmd
->afi
.chunk_table
[mmd
->current_chunk
];
545 len
= mmd
->afi
.chunk_table
[mmd
->current_chunk
+ 1] - pos
;
547 * We call the send function also in case of empty chunks as they
548 * might have still some data queued which can be sent in this case.
550 if (!mmd
->chunks_sent
) {
552 gettimeofday(&mmd
->stream_start
, NULL
);
553 tv_scale(mmd
->current_chunk
, &mmd
->afi
.chunk_tv
, &tmp
);
554 mmd
->offset
= tv2ms(&tmp
);
557 for (i
= 0; senders
[i
].name
; i
++)
558 senders
[i
].send(mmd
->current_chunk
, mmd
->chunks_sent
,
560 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
562 mmd
->current_chunk
++;