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 sending part of para_server which is independent of
22 * the current audio format, audio file selector and of the activated senders.
26 #include <sys/time.h> /* gettimeofday */
27 #include "server.cmdline.h"
35 extern const char *status_item_list
[];
37 static struct timeval announce_tv
;
38 static struct timeval data_send_barrier
;
39 static struct timeval eof_barrier
;
40 static struct timeval autoplay_barrier
;
42 extern struct misc_meta_data
*mmd
;
43 extern struct audio_file_selector selectors
[];
44 extern struct sender senders
[];
46 static FILE *audio_file
= NULL
;
49 void mp3_init(struct audio_format_handler
*);
53 void ogg_init(struct audio_format_handler
*);
56 void aac_afh_init(struct audio_format_handler
*);
60 * the list of supported audio formats
62 static struct audio_format_handler afl
[] = {
86 /** iterate over each supported audio format */
87 #define FOR_EACH_AUDIO_FORMAT(i) for (i = 0; afl[i].name; i++)
90 * check if vss status flag \a P (playing) is set
92 * \return greater than zero if playing, zero otherwise.
95 unsigned int vss_playing(void)
97 return mmd
->new_vss_status_flags
& VSS_PLAYING
;
101 * check if \a N (next) status flag is set
103 * \return greater than zero if set, zero if not.
106 unsigned int vss_next(void)
108 return mmd
->new_vss_status_flags
& VSS_NEXT
;
112 * check if a reposition request is pending
114 * \return greater than zero if true, zero otherwise.
117 unsigned int vss_repos(void)
119 return mmd
->new_vss_status_flags
& VSS_REPOS
;
123 * check if the vss is currently paused
125 * \return greater than zero if paused, zero otherwise.
128 unsigned int vss_paused(void)
130 return !(mmd
->new_vss_status_flags
& VSS_NEXT
)
131 && !(mmd
->new_vss_status_flags
& VSS_PLAYING
);
135 * get the name of the given audio format
136 * \param i the audio format number
138 * This returns a pointer to statically allocated memory so it
139 * must not be freed by the caller.
141 const char *audio_format_name(int i
)
143 return i
>= 0? afl
[i
].name
: "(none)";
147 * initialize the virtual streaming system
149 * Call the init functions of all supported audio format handlers and
150 * initialize all supported senders.
155 char *hn
= para_hostname(), *home
= para_homedir();
157 PARA_DEBUG_LOG("supported audio formats: %s\n",
158 SUPPORTED_AUDIO_FORMATS
);
159 for (i
= 0; afl
[i
].name
; i
++) {
160 PARA_NOTICE_LOG("initializing %s handler\n",
162 afl
[i
].init(&afl
[i
]);
164 ms2tv(conf
.announce_time_arg
, &announce_tv
);
165 PARA_INFO_LOG("announce timeval: %lums\n", tv2ms(&announce_tv
));
166 for (i
= 0; senders
[i
].name
; i
++) {
167 PARA_NOTICE_LOG("initializing %s sender\n", senders
[i
].name
);
168 senders
[i
].init(&senders
[i
]);
172 if (conf
.autoplay_given
) {
173 struct timeval now
, tmp
;
174 mmd
->vss_status_flags
|= VSS_PLAYING
;
175 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
176 gettimeofday(&now
, NULL
);
177 ms2tv(conf
.autoplay_delay_arg
, &tmp
);
178 tv_add(&now
, &tmp
, &autoplay_barrier
);
182 static int get_file_info(int i
)
184 return afl
[i
].get_file_info(audio_file
, mmd
->audio_file_info
,
185 &mmd
->chunks_total
, &mmd
->seconds_total
);
189 * guess the audio format judging from filename
191 * \param name the filename
193 * \return This function returns -1 if it has no idea what kind of audio
194 * file this might be. Otherwise the (non-negative) number of the audio format
197 int guess_audio_format(const char *name
)
199 int i
,j
, len
= strlen(name
);
201 FOR_EACH_AUDIO_FORMAT(i
) {
202 for (j
= 0; afl
[i
].suffixes
[j
]; j
++) {
203 const char *p
= afl
[i
].suffixes
[j
];
204 int plen
= strlen(p
);
207 if (name
[len
- plen
- 1] != '.')
209 if (strcasecmp(name
+ len
- plen
, p
))
211 // PARA_DEBUG_LOG("might be %s\n", audio_format_name(i));
218 static int get_audio_format(int omit
)
222 FOR_EACH_AUDIO_FORMAT(i
) {
223 if (i
== omit
|| !afl
[i
].get_file_info
)
226 if (get_file_info(i
) > 0)
230 return -E_AUDIO_FORMAT
;
236 static int update_mmd(void)
239 struct stat file_status
;
241 i
= guess_audio_format(mmd
->filename
);
242 if (i
< 0 || get_file_info(i
) < 0)
243 i
= get_audio_format(i
);
246 mmd
->audio_format
= i
;
247 mmd
->chunks_sent
= 0;
248 mmd
->current_chunk
= 0;
250 if (fstat(fileno(audio_file
), &file_status
) == -1)
252 mmd
->size
= file_status
.st_size
;
253 mmd
->mtime
= file_status
.st_mtime
;
255 PARA_NOTICE_LOG("next audio file: %s\n", mmd
->filename
);
259 static void get_song(void)
261 char **sl
= selectors
[mmd
->selector_num
].get_audio_file_list(10);
266 for (i
= 0; sl
[i
]; i
++) {
268 PARA_INFO_LOG("trying %s\n", sl
[i
]);
269 if (strlen(sl
[i
]) >= _POSIX_PATH_MAX
)
271 audio_file
= fopen(sl
[i
], "r");
274 strcpy(mmd
->filename
, sl
[i
]);
275 if (update_mmd() < 0) {
281 if (selectors
[mmd
->selector_num
].update_audio_file
)
282 selectors
[mmd
->selector_num
].update_audio_file(sl
[i
]);
283 PARA_DEBUG_LOG("%s", "success\n");
284 mmd
->new_vss_status_flags
&= (~VSS_NEXT
);
285 gettimeofday(&now
, NULL
);
286 tv_add(&now
, &announce_tv
, &data_send_barrier
);
290 PARA_ERROR_LOG("%s", "no valid files found\n");
292 mmd
->new_vss_status_flags
= VSS_NEXT
;
295 for (i
= 0; sl
[i
]; i
++)
301 static int chk_barrier(const char *bname
, const struct timeval
*now
,
302 const struct timeval
*barrier
, struct timeval
*diff
,
307 if (tv_diff(now
, barrier
, diff
) > 0)
311 PARA_DEBUG_LOG("%s barrier: %lims left\n", bname
, ms
);
315 static void vss_next_chunk_time(struct timeval
*due
)
319 tv_scale(mmd
->chunks_sent
, &afl
[mmd
->audio_format
].chunk_tv
, &tmp
);
320 tv_add(&tmp
, &mmd
->stream_start
, due
);
324 * != NULL: timeout for next chunk
325 * NULL: nothing to do
327 static struct timeval
*vss_compute_timeout(void)
329 static struct timeval the_timeout
;
330 struct timeval now
, next_chunk
;
332 if (vss_next() && mmd
->audio_format
>= 0) {
333 /* only sleep a bit, nec*/
334 the_timeout
.tv_sec
= 0;
335 the_timeout
.tv_usec
= 100;
338 gettimeofday(&now
, NULL
);
339 if (chk_barrier("autoplay_delay", &now
, &autoplay_barrier
,
340 &the_timeout
, 1) < 0)
342 if (chk_barrier("eof", &now
, &eof_barrier
, &the_timeout
, 1) < 0)
344 if (chk_barrier("data send", &now
, &data_send_barrier
,
345 &the_timeout
, 1) < 0)
347 if (mmd
->audio_format
< 0 || !vss_playing() || !audio_file
)
349 vss_next_chunk_time(&next_chunk
);
350 if (chk_barrier(afl
[mmd
->audio_format
].name
, &now
, &next_chunk
,
351 &the_timeout
, 0) < 0)
353 /* chunk is due or bof */
354 the_timeout
.tv_sec
= 0;
355 the_timeout
.tv_usec
= 0;
359 static void vss_eof(struct audio_format_handler
*af
)
365 if (!af
|| !audio_file
) {
366 for (i
= 0; senders
[i
].name
; i
++)
367 senders
[i
].shutdown_clients();
370 gettimeofday(&now
, NULL
);
371 tv_add(&af
->eof_tv
, &now
, &eof_barrier
);
372 af
->close_audio_file();
374 mmd
->audio_format
= -1;
376 mmd
->chunks_sent
= 0;
378 mmd
->seconds_total
= 0;
379 tmp
= make_message("%s:\n%s:\n%s:\n", status_item_list
[SI_AUDIO_INFO1
],
380 status_item_list
[SI_AUDIO_INFO2
], status_item_list
[SI_AUDIO_INFO3
]);
381 strcpy(mmd
->audio_file_info
, tmp
);
383 tmp
= make_message("%s:\n%s:\n%s:\n", status_item_list
[SI_DBINFO1
],
384 status_item_list
[SI_DBINFO2
], status_item_list
[SI_DBINFO3
]);
385 strcpy(mmd
->selector_info
, tmp
);
387 mmd
->filename
[0] = '\0';
393 * get the header and of the current audio file
395 * \param header_len the length of the header is stored here
397 * \return a pointer to a buffer containing the header, or NULL, if no audio
398 * file is selected or if the current audio format does not need special header
402 char *vss_get_header(int *header_len
)
405 if (mmd
->audio_format
< 0)
407 if (!afl
[mmd
->audio_format
].get_header_info
)
409 return afl
[mmd
->audio_format
].get_header_info(header_len
);
413 * get the list of all supported audio formats
415 * \return a space separated list of all supported audio formats
416 * It is not allocated at runtime, i.e. there is no need to free
417 * the returned string in the caller.
419 const char *supported_audio_formats(void)
421 return SUPPORTED_AUDIO_FORMATS
;
425 * get the chunk time of the current audio file
427 * \return a pointer to a struct containing the chunk time, or NULL,
428 * if currently no audio file is selected.
430 struct timeval
*vss_chunk_time(void)
432 if (mmd
->audio_format
< 0)
434 return &afl
[mmd
->audio_format
].chunk_tv
;
438 * compute the timeout for para_server's main select-loop
440 * This function gets called from para_server to determine the timeout value
441 * for its main select loop.
443 * Before the timeout is computed, the current vss status flags are evaluated
444 * and acted upon by calling appropriate functions from the lower layers.
445 * Possible actions include
447 * - request a new file list from the current audio file selector
448 * - shutdown of all senders (stop/pause command)
449 * - reposition the stream (ff/jmp command)
451 * \return A pointer to a struct timeval containing the timeout for the next
452 * chunk of data to be sent, or NULL if we're not sending right now.
454 struct timeval
*vss_preselect(void)
456 struct audio_format_handler
*af
= NULL
;
460 format
= mmd
->audio_format
;
464 for (i
= 0; senders
[i
].name
; i
++)
465 senders
[i
].shutdown_clients();
466 if (vss_next() && af
) {
468 return vss_compute_timeout();
470 if (vss_paused() || vss_repos()) {
471 for (i
= 0; senders
[i
].name
; i
++)
472 senders
[i
].shutdown_clients();
475 gettimeofday(&now
, NULL
);
476 if (!vss_paused() || mmd
->chunks_sent
)
477 tv_add(&af
->eof_tv
, &now
, &eof_barrier
);
479 tv_add(&now
, &announce_tv
, &data_send_barrier
);
480 if (mmd
->new_vss_status_flags
& VSS_NOMORE
)
481 mmd
->new_vss_status_flags
= VSS_NEXT
;
483 mmd
->chunks_sent
= 0;
486 mmd
->new_vss_status_flags
&= ~(VSS_REPOS
);
487 mmd
->current_chunk
= mmd
->repos_request
;
489 ret
= vss_compute_timeout();
490 if (!ret
&& !audio_file
&& vss_playing() &&
491 !(mmd
->new_vss_status_flags
& VSS_NOMORE
)) {
492 PARA_DEBUG_LOG("%s", "ready and playing, but no audio file\n");
500 * main sending function
502 * This function gets called from para_server as soon as the next chunk of
503 * data should be pushed out. It first calls the read_chunk() function of
504 * the current audio format handler to obtain a pointer to the data to be
505 * sent out as well as its length. This information is then passed to each
506 * supported sender's send() function which does the actual sending.
508 * Return value: Positive return value on success, zero on eof and negative
512 void vss_send_chunk(void)
515 struct audio_format_handler
*af
;
518 struct timeval now
, due
;
520 if (mmd
->audio_format
< 0 || !audio_file
|| !vss_playing())
522 af
= &afl
[mmd
->audio_format
];
523 gettimeofday(&now
, NULL
);
524 vss_next_chunk_time(&due
);
525 if (tv_diff(&due
, &now
, NULL
) > 0)
527 if (chk_barrier("eof", &now
, &eof_barrier
, &due
, 1) < 0)
529 if (chk_barrier("data send", &now
, &data_send_barrier
,
532 buf
= af
->read_chunk(mmd
->current_chunk
, &ret
);
533 mmd
->new_vss_status_flags
&= ~VSS_REPOS
;
536 mmd
->new_vss_status_flags
= VSS_NEXT
;
538 mmd
->new_vss_status_flags
|= VSS_NEXT
;
542 if (!mmd
->chunks_sent
) {
544 gettimeofday(&mmd
->stream_start
, NULL
);
545 tv_scale(mmd
->current_chunk
, &af
->chunk_tv
, &tmp
);
546 mmd
->offset
= tv2ms(&tmp
);
549 for (i
= 0; senders
[i
].name
; i
++)
550 senders
[i
].send(mmd
->current_chunk
, mmd
->chunks_sent
, buf
, ret
);
551 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
553 mmd
->current_chunk
++;