2 * Copyright (C) 2005-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file audiod.c the paraslash's audio daemon */
14 #include "audiod.cmdline.h"
20 #include "grab_client.cmdline.h"
21 #include "grab_client.h"
22 #include "client.cmdline.h"
30 #include "write_common.h"
33 /** define the array of error lists needed by para_audiod */
35 /** define the array containing all supported audio formats */
36 const char *audio_formats
[] = {AUDIOD_AUDIO_FORMAT_ARRAY NULL
};
38 /** Defines how audiod handles one supported audio format. */
39 struct audio_format_info
{
40 /** pointer to the receiver for this audio format */
41 struct receiver
*receiver
;
42 /** the receiver configuration */
44 /** the number of filters that should be activated for this audio format */
45 unsigned int num_filters
;
46 /** Array of filter numbers to be activated. */
47 unsigned *filter_nums
;
48 /** Pointer to the array of filter configurations. */
50 /** the number of filters that should be activated for this audio format */
51 unsigned int num_writers
;
52 /** pointer to the array of writers to be activated */
53 struct writer
**writers
;
54 /** pointer to the array of writer configurations */
56 /** do not start receiver/filters/writer before this time */
57 struct timeval restart_barrier
;
61 * para_audiod uses \p MAX_STREAM_SLOTS different slots, each of which may
62 * be associated with a receiver/filter/writer triple. This array holds all
63 * information on the status of these slots.
65 * \sa struct slot_info
67 struct slot_info slot
[MAX_STREAM_SLOTS
];
69 /** The vss status flags audiod is interested in. */
70 enum vss_status_flags
{
71 /** Whether the 'N' flag is set. */
72 VSS_STATUS_FLAG_NEXT
= 1,
73 /** The 'P' flag is set. */
74 VSS_STATUS_FLAG_PLAYING
= 2,
78 * The task for obtaining para_server's status (para_client stat).
80 * \sa struct task, struct sched.
83 /** The associated task structure of audiod. */
85 /** Client data associated with the stat task. */
86 struct client_task
*ct
;
87 /** Do not restart client command until this time. */
88 struct timeval restart_barrier
;
89 /** Last time we received status data from para_server. */
90 struct timeval last_status_read
;
91 /** The offset value announced by para_server. */
93 /** The length of the current audio file as announced by para_server. */
95 /** The start of the current stream from the view of para_server. */
96 struct timeval server_stream_start
;
97 /** The average time deviation between para_server and para_audiod. */
98 struct timeval sa_time_diff
;
99 /** Whether client time is ahead of server time. */
100 int sa_time_diff_sign
;
101 /** The 'P' and the 'N' flags as announced by para_server. */
102 enum vss_status_flags vss_status
;
103 /** Number of times the clock difference is to be checked. */
104 unsigned clock_diff_count
;
105 /** When to start the next check for clock difference. */
106 struct timeval clock_diff_barrier
;
107 /** Number of the audio format as announced by para_server. */
108 int current_audio_format_num
;
111 /** The array of status items sent by para_server. */
112 char *stat_item_values
[NUM_STAT_ITEMS
] = {NULL
};
115 * the current mode of operation of which can be changed by the on/off/cycle
116 * commands. It is either, AUDIOD_OFF, AUDIOD_ON or AUDIOD_STANDBY.
118 int audiod_status
= AUDIOD_ON
;
121 * the gengetopt args_info struct that holds information on all command line
124 struct audiod_args_info conf
;
126 static char *socket_name
;
127 static struct audio_format_info afi
[NUM_AUDIO_FORMATS
];
129 static struct signal_task signal_task_struct
, *sig_task
= &signal_task_struct
;
131 static struct status_task status_task_struct
;
134 * the task that calls the status command of para_server
136 * \sa struct status_task
138 static struct status_task
*stat_task
= &status_task_struct
;
139 static struct timeval initial_delay_barrier
;
142 * the task for handling audiod commands
144 * \sa struct task, struct sched
146 struct command_task
{
147 /** the local listening socket */
149 /** the associated task structure */
153 /** iterate over all supported audio formats */
154 #define FOR_EACH_AUDIO_FORMAT(af) for (af = 0; af < NUM_AUDIO_FORMATS; af++)
157 * get the audio format number
158 * \param name the name of the audio format
160 * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if
161 * \a name is not a supported audio format.
163 int get_audio_format_num(char *name
)
167 while (para_isspace(*name
))
169 FOR_EACH_AUDIO_FORMAT(i
)
170 if (!strcmp(name
, audio_formats
[i
]))
172 return -E_UNSUPPORTED_AUDIO_FORMAT
;
175 char *get_time_string(struct timeval
*newest_stime
)
177 struct timeval diff
, adj_stream_start
, tmp
;
178 int total
= 0, use_server_time
= 1,
179 length_seconds
= stat_task
->length_seconds
;
181 if (!(stat_task
->vss_status
& VSS_STATUS_FLAG_PLAYING
)) {
184 return make_message("%s:\n", status_item_list
[SI_PLAY_TIME
]);
186 if (audiod_status
== AUDIOD_OFF
)
188 if (stat_task
->sa_time_diff_sign
> 0)
189 tv_diff(&stat_task
->server_stream_start
, &stat_task
->sa_time_diff
,
192 tv_add(&stat_task
->server_stream_start
, &stat_task
->sa_time_diff
,
194 tmp
= adj_stream_start
;
195 if (newest_stime
&& audiod_status
== AUDIOD_ON
) {
196 tv_diff(newest_stime
, &adj_stream_start
, &diff
);
197 if (tv2ms(&diff
) < 5000) {
202 tv_diff(now
, &tmp
, &diff
);
203 total
= diff
.tv_sec
+ stat_task
->offset_seconds
;
204 if (total
> length_seconds
)
205 total
= length_seconds
;
210 "%s: %s%d:%02d [%d:%02d] (%d%%/%d:%02d)\n",
211 status_item_list
[SI_PLAY_TIME
],
212 use_server_time
? "~" : "",
215 (length_seconds
- total
) / 60,
216 (length_seconds
- total
) % 60,
217 length_seconds
? (total
* 100 + length_seconds
/ 2) /
224 static int want_colors(void)
226 if (conf
.color_arg
== color_arg_no
)
228 if (conf
.color_arg
== color_arg_yes
)
230 if (conf
.logfile_given
)
232 return isatty(STDERR_FILENO
);
235 static void parse_config_or_die(void)
239 struct audiod_cmdline_parser_params params
= {
243 .check_ambiguity
= 0,
247 if (conf
.config_file_given
)
248 config_file
= para_strdup(conf
.config_file_arg
);
250 char *home
= para_homedir();
251 config_file
= make_message("%s/.paraslash/audiod.conf", home
);
254 ret
= file_exists(config_file
);
255 if (conf
.config_file_given
&& !ret
) {
256 PARA_EMERG_LOG("can not read config file %s\n", config_file
);
260 audiod_cmdline_parser_config_file(config_file
, &conf
, ¶ms
);
262 daemon_set_loglevel(conf
.loglevel_arg
);
269 static void setup_signal_handling(void)
271 sig_task
->fd
= para_signal_init();
272 PARA_INFO_LOG("signal pipe: fd %d\n", sig_task
->fd
);
273 para_install_sighandler(SIGINT
);
274 para_install_sighandler(SIGTERM
);
275 para_install_sighandler(SIGHUP
);
276 signal(SIGPIPE
, SIG_IGN
);
279 static void clear_slot(int slot_num
)
281 struct slot_info
*s
= &slot
[slot_num
];
283 PARA_INFO_LOG("clearing slot %d\n", slot_num
);
284 memset(s
, 0, sizeof(struct slot_info
));
288 static void close_receiver(int slot_num
)
290 struct slot_info
*s
= &slot
[slot_num
];
291 struct audio_format_info
*a
;
293 if (s
->format
< 0 || !s
->receiver_node
)
296 PARA_NOTICE_LOG("closing %s receiver in slot %d\n",
297 audio_formats
[s
->format
], slot_num
);
298 a
->receiver
->close(s
->receiver_node
);
299 free(s
->receiver_node
);
300 s
->receiver_node
= NULL
;
303 static void kill_all_decoders(int error
)
308 struct slot_info
*s
= &slot
[i
];
309 if (s
->wng
&& s
->wng
->task
.error
>= 0) {
310 PARA_INFO_LOG("deactivating wng in slot %d\n",
312 s
->wng
->task
.error
= error
;
314 if (s
->fc
&& s
->fc
->task
.error
>= 0) {
315 PARA_INFO_LOG("deactivatimg filter chain in slot %d\n", i
);
316 s
->fc
->task
.error
= error
;
318 if (s
->receiver_node
&& s
->receiver_node
->task
.error
>= 0) {
319 PARA_INFO_LOG("deactivating receiver_node in slot %d\n", i
);
320 s
->receiver_node
->task
.error
= error
;
325 static int get_empty_slot(void)
336 if (s
->wng
|| s
->receiver_node
|| s
->fc
)
341 return -E_NO_MORE_SLOTS
;
345 * get the number of filters
347 * \param audio_format_num the number identifying the audio format
349 * \return the number of filters for the given audio format
353 int num_filters(int audio_format_num
)
355 return afi
[audio_format_num
].num_filters
;
358 static void open_filters(int slot_num
)
360 struct slot_info
*s
= &slot
[slot_num
];
361 struct audio_format_info
*a
= &afi
[s
->format
];
362 struct filter_node
*fn
;
363 int nf
= a
->num_filters
;
369 PARA_INFO_LOG("opening %s filters\n", audio_formats
[s
->format
]);
370 s
->fc
= para_calloc(sizeof(struct filter_chain
));
371 s
->fc
->filter_nodes
= para_malloc(nf
* sizeof(struct filter_node
));
372 s
->fc
->inbuf
= s
->receiver_node
->buf
;
373 s
->fc
->in_loaded
= &s
->receiver_node
->loaded
;
374 s
->fc
->input_error
= &s
->receiver_node
->task
.error
;
375 s
->fc
->task
.pre_select
= filter_pre_select
;
376 s
->fc
->task
.post_select
= NULL
;
377 s
->fc
->task
.error
= 0;
378 s
->fc
->num_filters
= nf
;
380 s
->receiver_node
->output_error
= &s
->fc
->task
.error
;
381 sprintf(s
->fc
->task
.status
, "filter chain");
382 FOR_EACH_FILTER_NODE(fn
, s
->fc
, i
) {
383 struct filter
*f
= filters
+ a
->filter_nums
[i
];
384 fn
->filter_num
= a
->filter_nums
[i
];
385 fn
->conf
= a
->filter_conf
[i
];
388 INIT_LIST_HEAD(&fn
->callbacks
);
390 PARA_NOTICE_LOG("%s filter %d/%d (%s) started in slot %d\n",
391 audio_formats
[s
->format
], i
, nf
, f
->name
, slot_num
);
392 s
->fc
->outbuf
= fn
->buf
;
393 s
->fc
->out_loaded
= &fn
->loaded
;
395 register_task(&s
->fc
->task
);
398 static void open_writers(int slot_num
)
401 struct slot_info
*s
= &slot
[slot_num
];
402 struct audio_format_info
*a
= &afi
[s
->format
];
404 PARA_INFO_LOG("opening %s writers\n", audio_formats
[s
->format
]);
406 s
->wng
= setup_default_wng();
408 s
->wng
= wng_new(a
->num_writers
);
410 s
->wng
->buf
= s
->fc
->outbuf
;
411 s
->wng
->loaded
= s
->fc
->out_loaded
;
412 s
->wng
->input_error
= &s
->fc
->task
.error
;
413 s
->wng
->channels
= &s
->fc
->channels
;
414 s
->wng
->samplerate
= &s
->fc
->samplerate
;
415 s
->fc
->output_error
= &s
->wng
->task
.error
;
416 PARA_INFO_LOG("samplerate: %d\n", *s
->wng
->samplerate
);
418 s
->wng
->buf
= s
->receiver_node
->buf
;
419 s
->wng
->loaded
= &s
->receiver_node
->loaded
;
420 s
->wng
->input_error
= &s
->receiver_node
->task
.error
;
422 for (i
= 0; i
< a
->num_writers
; i
++) {
423 s
->wng
->writer_nodes
[i
].conf
= a
->writer_conf
[i
];
424 s
->wng
->writer_nodes
[i
].writer
= a
->writers
[i
];
426 ret
= wng_open(s
->wng
);
428 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
432 activate_inactive_grab_clients(slot_num
, s
->format
, s
->fc
);
435 static int open_receiver(int format
)
437 struct audio_format_info
*a
= &afi
[format
];
440 struct receiver_node
*rn
;
441 const struct timeval restart_delay
= {2, 0};
443 ret
= get_empty_slot();
449 s
->receiver_node
= para_calloc(sizeof(struct receiver_node
));
450 rn
= s
->receiver_node
;
451 rn
->receiver
= a
->receiver
;
452 rn
->conf
= a
->receiver_conf
;
453 ret
= a
->receiver
->open(s
->receiver_node
);
455 free(s
->receiver_node
);
456 s
->receiver_node
= NULL
;
459 PARA_NOTICE_LOG("started %s: %s receiver in slot %d\n",
460 audio_formats
[s
->format
], a
->receiver
->name
, slot_num
);
461 rn
->task
.pre_select
= a
->receiver
->pre_select
;
462 rn
->task
.post_select
= a
->receiver
->post_select
;
463 sprintf(rn
->task
.status
, "%s receiver node", rn
->receiver
->name
);
464 register_task(&rn
->task
);
468 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
469 tv_add(now
, &restart_delay
, &afi
[format
].restart_barrier
);
473 /* return: 0: Not running, 1: Running, -1: Running but eof (or error) */
474 static int receiver_running(int format
)
479 struct slot_info
*s
= &slot
[i
];
480 if (s
->format
!= format
)
482 if (!s
->receiver_node
)
484 if (s
->receiver_node
->task
.error
>= 0)
491 static void open_current_receiver(struct sched
*s
)
494 int ret
, cafn
= stat_task
->current_audio_format_num
;
496 if (cafn
< 0 || !stat_task
->ct
)
498 /* Do nothing if the 'N' flag is set or the 'P' flag is unset */
499 if (stat_task
->vss_status
!= VSS_STATUS_FLAG_PLAYING
)
501 ret
= receiver_running(cafn
);
502 if (ret
> 0) /* already running and not eof */
504 if (ret
< 0) { /* eof */
506 * para_server uses a zero start time during the announcement
507 * period, i.e. before it sends the first chunk. Wait until
508 * this period begins to avoid restarting the receiver that
509 * belongs to the file just completed.
511 if (stat_task
->server_stream_start
.tv_sec
)
514 if (tv_diff(now
, &afi
[cafn
].restart_barrier
, &diff
) < 0) {
515 /* avoid busy loop */
519 /* start a new receiver */
523 static unsigned compute_time_diff(const struct timeval
*status_time
)
525 struct timeval tmp
, diff
;
526 static unsigned count
;
527 int sign
, sa_time_diff_sign
= stat_task
->sa_time_diff_sign
;
528 const struct timeval max_deviation
= {0, 500 * 1000};
529 const int time_smooth
= 5;
533 sign
= tv_diff(status_time
, now
, &diff
);
534 // PARA_NOTICE_LOG("%s: sign = %i, sa_time_diff_sign = %i\n", __func__,
535 // sign, sa_time_diff_sign);
537 sa_time_diff_sign
= sign
;
538 stat_task
->sa_time_diff
= diff
;
543 int s
= tv_diff(&diff
, &stat_task
->sa_time_diff
, &tmp
);
544 if (tv_diff(&max_deviation
, &tmp
, NULL
) < 0)
545 PARA_WARNING_LOG("time diff jump: %lims\n",
549 sa_time_diff_sign
= tv_convex_combination(
550 sa_time_diff_sign
* time_smooth
, &stat_task
->sa_time_diff
,
551 count
> 10? sign
: sign
* time_smooth
, &diff
,
553 stat_task
->sa_time_diff
= tmp
;
554 PARA_INFO_LOG("time diff (cur/avg): %s%lums/%s%lums\n",
557 sa_time_diff_sign
? "+" : "-",
558 tv2ms(&stat_task
->sa_time_diff
)
561 stat_task
->sa_time_diff_sign
= sa_time_diff_sign
;
565 static int check_stat_line(char *line
, __a_unused
void *data
)
569 long unsigned sec
, usec
;
572 //PARA_INFO_LOG("line: %s\n", line);
575 itemnum
= stat_line_valid(line
);
577 PARA_WARNING_LOG("invalid status line: %s\n", line
);
580 if (stat_task
->clock_diff_count
&& itemnum
!= SI_CURRENT_TIME
)
582 tmp
= make_message("%s\n", line
);
583 stat_client_write(tmp
, itemnum
);
585 free(stat_item_values
[itemnum
]);
586 stat_item_values
[itemnum
] = para_strdup(line
);
587 ilen
= strlen(status_item_list
[itemnum
]);
589 case SI_STATUS_FLAGS
:
590 stat_task
->vss_status
= 0;
591 if (strchr(line
, 'N'))
592 stat_task
->vss_status
|= VSS_STATUS_FLAG_NEXT
;
593 if (strchr(line
, 'P'))
594 stat_task
->vss_status
|= VSS_STATUS_FLAG_PLAYING
;
597 stat_task
->offset_seconds
= atoi(line
+ ilen
+ 1);
599 case SI_SECONDS_TOTAL
:
600 stat_task
->length_seconds
= atoi(line
+ ilen
+ 1);
602 case SI_STREAM_START
:
603 if (sscanf(line
+ ilen
+ 1, "%lu.%lu", &sec
, &usec
) == 2) {
604 struct timeval a_start
, delay
;
605 delay
.tv_sec
= conf
.stream_delay_arg
/ 1000;
606 delay
.tv_usec
= (conf
.stream_delay_arg
% 1000) * 1000;
607 stat_task
->server_stream_start
.tv_sec
= sec
;
608 stat_task
->server_stream_start
.tv_usec
= usec
;
609 if (compute_time_diff(NULL
) > 2) {
610 if (stat_task
->sa_time_diff_sign
< 0)
611 tv_add(&stat_task
->server_stream_start
,
612 &stat_task
->sa_time_diff
, &a_start
);
614 tv_diff(&stat_task
->server_stream_start
,
615 &stat_task
->sa_time_diff
, &a_start
);
616 tv_add(&a_start
, &delay
, &initial_delay_barrier
);
620 case SI_CURRENT_TIME
:
621 if (sscanf(line
+ ilen
+ 1, "%lu.%lu", &sec
, &usec
) == 2) {
622 struct timeval tv
= {sec
, usec
};
623 compute_time_diff(&tv
);
627 stat_task
->current_audio_format_num
= get_audio_format_num(
633 static int parse_stream_command(const char *txt
, char **cmd
)
635 char *p
= strchr(txt
, ':');
639 return -E_MISSING_COLON
;
641 FOR_EACH_AUDIO_FORMAT(i
) {
642 if (strncmp(txt
, audio_formats
[i
], strlen(audio_formats
[i
])))
647 return -E_UNSUPPORTED_AUDIO_FORMAT
;
650 static int add_filter(int format
, char *cmdline
)
652 struct audio_format_info
*a
= &afi
[format
];
653 int filter_num
, nf
= a
->num_filters
;
655 filter_num
= check_filter_arg(cmdline
, &a
->filter_conf
[nf
]);
658 a
->filter_nums
[nf
] = filter_num
;
660 PARA_INFO_LOG("%s filter %d: %s\n", audio_formats
[format
], nf
,
661 filters
[filter_num
].name
);
665 static int parse_writer_args(void)
669 struct audio_format_info
*a
;
671 nw
= PARA_MAX(1U, conf
.writer_given
);
672 PARA_INFO_LOG("maximal number of writers: %d\n", nw
);
673 FOR_EACH_AUDIO_FORMAT(i
) {
675 a
->writer_conf
= para_malloc(nw
* sizeof(void *));
676 a
->writers
= para_malloc(nw
* sizeof(struct writer
*));
679 for (i
= 0; i
< conf
.writer_given
; i
++) {
682 ret
= parse_stream_command(conf
.writer_arg
[i
], &cmd
);
687 wconf
= check_writer_arg(cmd
, &writer_num
);
692 a
->writers
[nw
] = &writers
[writer_num
];
693 a
->writer_conf
[nw
] = wconf
;
694 PARA_INFO_LOG("%s writer #%d: %s\n", audio_formats
[ret
],
695 nw
, writer_names
[writer_num
]);
703 static int parse_receiver_args(void)
705 int i
, ret
, receiver_num
;
707 struct audio_format_info
*a
;
709 for (i
= conf
.receiver_given
- 1; i
>= 0; i
--) {
710 char *arg
= conf
.receiver_arg
[i
];
711 char *recv_arg
= strchr(arg
, ':');
712 ret
= -E_MISSING_COLON
;
717 ret
= get_audio_format_num(arg
);
720 afi
[ret
].receiver_conf
= check_receiver_arg(recv_arg
, &receiver_num
);
721 if (!afi
[ret
].receiver_conf
) {
722 ret
= -E_RECV_SYNTAX
;
725 afi
[ret
].receiver
= &receivers
[receiver_num
];
727 /* use the first available receiver with no arguments
728 * for those audio formats for which no receiver
731 cmd
= para_strdup(receivers
[0].name
);
732 FOR_EACH_AUDIO_FORMAT(i
) {
734 if (a
->receiver_conf
)
736 a
->receiver_conf
= check_receiver_arg(cmd
, &receiver_num
);
737 if (!a
->receiver_conf
)
738 return -E_RECV_SYNTAX
;
739 a
->receiver
= &receivers
[receiver_num
];
747 static int init_default_filters(void)
751 FOR_EACH_AUDIO_FORMAT(i
) {
752 struct audio_format_info
*a
= &afi
[i
];
757 continue; /* no default -- nothing to to */
758 /* add "dec" to audio format name */
759 tmp
= make_message("%sdec", audio_formats
[i
]);
760 for (j
= 0; filters
[j
].name
; j
++)
761 if (!strcmp(tmp
, filters
[j
].name
))
764 ret
= -E_UNSUPPORTED_FILTER
;
765 if (!filters
[j
].name
)
767 tmp
= para_strdup(filters
[j
].name
);
768 ret
= add_filter(i
, tmp
);
772 PARA_INFO_LOG("%s -> default filter: %s\n", audio_formats
[i
],
779 static int parse_filter_args(void)
783 nf
= PARA_MAX(1U, conf
.filter_given
);
784 PARA_INFO_LOG("maximal number of filters: %d\n", nf
);
785 FOR_EACH_AUDIO_FORMAT(i
) {
786 afi
[i
].filter_conf
= para_malloc(nf
* sizeof(void *));
787 afi
[i
].filter_nums
= para_malloc(nf
* sizeof(unsigned));
789 if (!conf
.no_default_filters_given
)
790 return init_default_filters();
791 for (i
= 0; i
< conf
.filter_given
; i
++) {
792 char *arg
= conf
.filter_arg
[i
];
793 char *filter_name
= strchr(arg
, ':');
794 ret
= -E_MISSING_COLON
;
799 ret
= get_audio_format_num(arg
);
802 ret
= add_filter(ret
, filter_name
);
806 ret
= init_default_filters(); /* use default values for the rest */
811 static int parse_stream_args(void)
815 ret
= parse_receiver_args();
818 ret
= parse_filter_args();
821 ret
= parse_writer_args();
827 /* does not unlink socket on errors */
828 static int audiod_get_socket(void)
830 struct sockaddr_un unix_addr
;
833 if (conf
.socket_given
)
834 socket_name
= para_strdup(conf
.socket_arg
);
836 char *hn
= para_hostname();
837 socket_name
= make_message("/var/paraslash/audiod_socket.%s",
841 PARA_NOTICE_LOG("local socket: %s\n", socket_name
);
842 if (conf
.force_given
)
844 ret
= create_local_socket(socket_name
, &unix_addr
,
845 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IWOTH
);
849 if (listen(fd
, 5) < 0) {
850 ret
= -ERRNO_TO_PARA_ERROR(errno
);
853 ret
= mark_fd_nonblocking(fd
);
858 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
862 static void signal_pre_select(struct sched
*s
, struct task
*t
)
864 struct signal_task
*st
= container_of(t
, struct signal_task
, task
);
865 para_fd_set(st
->fd
, &s
->rfds
, &s
->max_fileno
);
868 static void signal_post_select(struct sched
*s
, struct task
*t
)
870 struct signal_task
*st
= container_of(t
, struct signal_task
, task
);
872 if (!FD_ISSET(st
->fd
, &s
->rfds
))
875 st
->signum
= para_next_signal();
876 switch (st
->signum
) {
880 PARA_EMERG_LOG("terminating on signal %d\n", st
->signum
);
881 clean_exit(EXIT_FAILURE
, "caught deadly signal");
885 static void signal_setup_default(struct signal_task
*st
)
887 st
->task
.pre_select
= signal_pre_select
;
888 st
->task
.post_select
= signal_post_select
;
889 sprintf(st
->task
.status
, "signal task");
892 static void command_pre_select(struct sched
*s
, struct task
*t
)
894 struct command_task
*ct
= container_of(t
, struct command_task
, task
);
895 para_fd_set(ct
->fd
, &s
->rfds
, &s
->max_fileno
);
898 static void command_post_select(struct sched
*s
, struct task
*t
)
901 struct command_task
*ct
= container_of(t
, struct command_task
, task
);
903 audiod_status_dump();
904 if (!FD_ISSET(ct
->fd
, &s
->rfds
))
906 ret
= handle_connect(ct
->fd
);
908 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
911 static void init_command_task(struct command_task
*ct
)
913 ct
->task
.pre_select
= command_pre_select
;
914 ct
->task
.post_select
= command_post_select
;
916 ct
->fd
= audiod_get_socket(); /* doesn't return on errors */
917 sprintf(ct
->task
.status
, "command task");
920 static void close_stat_pipe(void)
926 client_close(stat_task
->ct
);
927 stat_task
->ct
= NULL
;
928 FOR_EACH_STATUS_ITEM(i
) {
929 free(stat_item_values
[i
]);
930 stat_item_values
[i
] = NULL
;
933 stat_task
->length_seconds
= 0;
934 stat_task
->offset_seconds
= 0;
935 stat_task
->vss_status
= 0;
936 audiod_status_dump();
940 * close the connection to para_server and exit
942 * \param status the exit status which is passed to exit(3)
943 * \param msg the log message
945 * Log \a msg with loglevel \p EMERG, close the connection to para_server if
946 * open, and call \p exit(status). \a status should be either EXIT_SUCCESS or
951 void __noreturn
clean_exit(int status
, const char *msg
)
953 PARA_EMERG_LOG("%s\n", msg
);
960 /* avoid busy loop if server is down */
961 static void set_stat_task_restart_barrier(unsigned seconds
)
963 struct timeval delay
= {seconds
, 0};
964 tv_add(now
, &delay
, &stat_task
->restart_barrier
);
967 static void try_to_close_slot(int slot_num
)
969 struct slot_info
*s
= &slot
[slot_num
];
973 if (s
->receiver_node
&& s
->receiver_node
->task
.error
!= -E_TASK_UNREGISTERED
)
975 if (s
->fc
&& s
->fc
->task
.error
!= -E_TASK_UNREGISTERED
)
977 if (s
->wng
&& s
->wng
->task
.error
!= -E_TASK_UNREGISTERED
)
979 PARA_INFO_LOG("closing slot %d\n", slot_num
);
981 close_filters(s
->fc
);
983 close_receiver(slot_num
);
984 clear_slot(slot_num
);
988 * Check if any receivers/filters/writers need to be started and do so if
991 static void start_stop_decoders(struct sched
*s
)
996 try_to_close_slot(i
);
997 if (audiod_status
!= AUDIOD_ON
||
998 !(stat_task
->vss_status
& VSS_STATUS_FLAG_PLAYING
))
999 return kill_all_decoders(-E_NOT_PLAYING
);
1000 open_current_receiver(s
);
1002 struct slot_info
*sl
= &slot
[i
];
1003 struct audio_format_info
*a
;
1004 struct timeval diff
;
1008 a
= &afi
[sl
->format
];
1009 if (!sl
->receiver_node
)
1011 if ((!a
->num_filters
|| sl
->fc
) && sl
->wng
)
1012 continue; /* everything already started */
1013 if (!a
->num_filters
) {
1014 if (sl
->receiver_node
->loaded
&& !sl
->wng
) {
1019 if (sl
->receiver_node
->loaded
&& !sl
->fc
) {
1023 if (sl
->wng
|| !sl
->fc
|| !*sl
->fc
->out_loaded
)
1025 if (tv_diff(now
, &initial_delay_barrier
, &diff
) > 0) {
1029 PARA_INFO_LOG("initial delay: %lu ms left\n", tv2ms(&diff
));
1030 if (tv_diff(&s
->timeout
, &diff
, NULL
) > 0) {
1037 /* restart the client task if necessary */
1038 static void status_pre_select(struct sched
*s
, struct task
*t
)
1040 struct status_task
*st
= container_of(t
, struct status_task
, task
);
1042 if (audiod_status
== AUDIOD_OFF
) {
1045 if (st
->ct
->task
.error
>= 0) {
1046 st
->ct
->task
.error
= -E_AUDIOD_OFF
;
1049 if (st
->ct
->task
.error
!= -E_TASK_UNREGISTERED
)
1052 st
->clock_diff_count
= conf
.clock_diff_count_arg
;
1056 unsigned bytes_left
;
1057 if (st
->ct
->task
.error
< 0) {
1058 if (st
->ct
->task
.error
!= -E_TASK_UNREGISTERED
)
1063 if (st
->ct
->status
!= CL_RECEIVING
)
1065 bytes_left
= for_each_line(st
->ct
->buf
, st
->ct
->loaded
,
1066 &check_stat_line
, NULL
);
1067 if (st
->ct
->loaded
!= bytes_left
) {
1068 st
->last_status_read
= *now
;
1069 st
->ct
->loaded
= bytes_left
;
1071 struct timeval diff
;
1072 tv_diff(now
, &st
->last_status_read
, &diff
);
1073 if (diff
.tv_sec
> 61)
1074 st
->ct
->task
.error
= -E_STATUS_TIMEOUT
;
1078 if (tv_diff(now
, &st
->restart_barrier
, NULL
) < 0)
1080 if (st
->clock_diff_count
) { /* get status only one time */
1081 char *argv
[] = {"audiod", "stat", "1", NULL
};
1083 PARA_INFO_LOG("clock diff count: %d\n", st
->clock_diff_count
);
1084 st
->clock_diff_count
--;
1085 client_open(argc
, argv
, &st
->ct
, NULL
);
1086 set_stat_task_restart_barrier(2);
1089 char *argv
[] = {"audiod", "stat", NULL
};
1091 client_open(argc
, argv
, &st
->ct
, NULL
);
1092 set_stat_task_restart_barrier(5);
1094 free(stat_item_values
[SI_BASENAME
]);
1095 stat_item_values
[SI_BASENAME
] = make_message(
1096 "%s: no connection to para_server\n",
1097 status_item_list
[SI_BASENAME
]);
1098 stat_client_write(stat_item_values
[SI_BASENAME
],
1100 st
->last_status_read
= *now
;
1102 start_stop_decoders(s
);
1105 static void init_status_task(struct status_task
*st
)
1107 memset(st
, 0, sizeof(struct status_task
));
1108 st
->task
.pre_select
= status_pre_select
;
1109 st
->sa_time_diff_sign
= 1;
1110 st
->clock_diff_count
= conf
.clock_diff_count_arg
;
1111 st
->current_audio_format_num
= -1;
1112 sprintf(st
->task
.status
, "status task");
1115 static void set_initial_status(void)
1117 audiod_status
= AUDIOD_ON
;
1118 if (!conf
.mode_given
)
1120 if (!strcmp(conf
.mode_arg
, "sb")) {
1121 audiod_status
= AUDIOD_STANDBY
;
1124 if (!strcmp(conf
.mode_arg
, "off")) {
1125 audiod_status
= AUDIOD_OFF
;
1128 if (strcmp(conf
.mode_arg
, "on"))
1129 PARA_WARNING_LOG("invalid mode\n");
1132 __noreturn
static void print_help_and_die(void)
1134 int d
= conf
.detailed_help_given
;
1135 const char **p
= d
? audiod_args_info_detailed_help
1136 : audiod_args_info_help
;
1138 printf_or_die("%s\n\n", AUDIOD_CMDLINE_PARSER_PACKAGE
"-"
1139 AUDIOD_CMDLINE_PARSER_VERSION
);
1140 printf_or_die("%s\n\n", audiod_args_info_usage
);
1142 printf_or_die("%s\n", *p
);
1143 print_receiver_helps(d
);
1144 print_filter_helps(d
);
1145 print_writer_helps(d
);
1149 static void init_colors_or_die(void)
1155 daemon_set_default_log_colors();
1156 daemon_set_flag(DF_COLOR_LOG
);
1157 for (i
= 0; i
< conf
.log_color_given
; i
++) {
1158 ret
= daemon_set_log_color(conf
.log_color_arg
[i
]);
1165 * the main function of para_audiod
1167 * \param argc usual argument count
1168 * \param argv usual argument vector
1170 * \return EXIT_SUCCESS or EXIT_FAILURE
1172 * \sa para_audiod(1)
1174 int main(int argc
, char *argv
[])
1177 static struct sched s
;
1178 struct command_task command_task_struct
, *cmd_task
= &command_task_struct
;
1179 struct audiod_cmdline_parser_params params
= {
1182 .check_required
= 0,
1183 .check_ambiguity
= 0,
1188 if (audiod_cmdline_parser_ext(argc
, argv
, &conf
, ¶ms
))
1190 HANDLE_VERSION_FLAG("audiod", conf
);
1191 /* init receivers/filters/writers early to make help work */
1195 if (conf
.help_given
|| conf
.detailed_help_given
)
1196 print_help_and_die();
1197 drop_privileges_or_die(conf
.user_arg
, conf
.group_arg
);
1198 parse_config_or_die();
1199 init_colors_or_die();
1200 daemon_set_flag(DF_LOG_TIME
);
1201 daemon_set_flag(DF_LOG_HOSTNAME
);
1202 daemon_set_flag(DF_LOG_LL
);
1203 if (conf
.logfile_given
) {
1204 daemon_set_logfile(conf
.logfile_arg
);
1205 daemon_open_log_or_die();
1207 ret
= parse_stream_args();
1209 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
1212 log_welcome("para_audiod");
1213 server_uptime(UPTIME_SET
);
1214 set_initial_status();
1218 setup_signal_handling();
1219 signal_setup_default(sig_task
);
1221 init_status_task(stat_task
);
1222 init_command_task(cmd_task
);
1224 if (conf
.daemon_given
)
1227 register_task(&sig_task
->task
);
1228 register_task(&cmd_task
->task
);
1229 register_task(&stat_task
->task
);
1230 s
.default_timeout
.tv_sec
= 0;
1231 s
.default_timeout
.tv_usec
= 99 * 1000;
1234 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
1235 return EXIT_FAILURE
;