simplify sched: nuke PRE_EOF_IS_ERROR
[paraslash.git] / write.c
1 /*
2  * Copyright (C) 2005-2006 Andre Noll <maan@systemlinux.org>
3  *
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.
8  *
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.
13  *
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.
17  */
18
19 #include "para.h"
20 #include "string.h"
21 #include "write.cmdline.h"
22 #include "list.h"
23 #include "sched.h"
24 #include "stdin.h"
25 #include "write.h"
26 #include "write_common.h"
27 #include "fd.h"
28 #include "error.h"
29
30 INIT_WRITE_ERRLISTS;
31
32 struct check_wav_task {
33         char *buf;
34         size_t *loaded;
35         int *eof;
36         unsigned channels;
37         unsigned sample_rate;
38         struct task task;
39 };
40
41 struct initial_delay_task {
42         struct timeval start_time;
43         struct task task;
44 };
45
46 struct gengetopt_args_info conf;
47 struct stdin_task sit;
48 struct check_wav_task cwt;
49 struct initial_delay_task idt;
50 static struct writer_node_group *wng;
51
52 #define WAV_HEADER_LEN 44
53
54 /**
55  * test if audio buffer contains a valid wave header
56  *
57  * \return If not, return -E_NO_WAV_HEADER, otherwise, return zero. If
58  * there is less than WAV_HEADER_LEN bytes awailable, return one.
59  */
60 static void check_wav_pre_select(struct sched *s, struct task *t)
61 {
62         struct check_wav_task *cwt = t->private_data;
63         unsigned char *a;
64
65         if (*cwt->loaded < WAV_HEADER_LEN) {
66                 t->ret = *cwt->eof? -E_PREMATURE_END : 1;
67                 return;
68         }
69         a = (unsigned char*)cwt->buf;
70         t->ret = -E_NO_WAV_HEADER;
71         if (a[0] != 'R' || a[1] != 'I' || a[2] != 'F' || a[3] != 'F')
72                 return;
73         cwt->channels = (unsigned) a[22];
74         cwt->sample_rate = a[24] + (a[25] << 8) + (a[26] << 16) + (a[27] << 24);
75         *cwt->loaded -= WAV_HEADER_LEN;
76         memmove(cwt->buf, cwt->buf + WAV_HEADER_LEN, *cwt->loaded);
77         t->ret = -E_WAV_HEADER_SUCCESS;
78         PARA_INFO_LOG("channels: %d, sample_rate: %d\n", cwt->channels, cwt->sample_rate);
79 }
80
81 static void initial_delay_pre_select(struct sched *s, struct task *t)
82 {
83         struct initial_delay_task *idt = t->private_data;
84         struct timeval diff;
85
86         t->ret = -E_NO_DELAY;
87         if (!idt->start_time.tv_sec && !idt->start_time.tv_usec)
88                 return;
89         t->ret = -E_DELAY_TIMEOUT;
90         if (tv_diff(&s->now, &idt->start_time, &diff) > 0)
91                 return;
92         t->ret = 1;
93         if (tv_diff(&s->timeout , &diff, NULL) > 0)
94                 s->timeout = diff;
95 }
96
97 void para_log(int ll, const char* fmt,...)
98 {
99         va_list argp;
100
101         if (ll < conf.loglevel_arg)
102                 return;
103         va_start(argp, fmt);
104         vfprintf(stderr, fmt, argp);
105         va_end(argp);
106 }
107
108 static struct writer_node_group *check_args(void)
109 {
110         int i, ret = -E_WRITE_SYNTAX;
111         struct writer_node_group *wng = NULL;
112
113         if (conf.list_writers_given) {
114                 char *msg = NULL;
115                 FOR_EACH_WRITER(i) {
116                         char *tmp = make_message("%s%s%s",
117                                 i? msg : "",
118                                 i? " " : "",
119                                 writer_names[i]);
120                         free(msg);
121                         msg = tmp;
122                 }
123                 fprintf(stderr, "%s\n", msg);
124                 free(msg);
125                 exit(EXIT_SUCCESS);
126         }
127         if (conf.prebuffer_arg < 0 || conf.prebuffer_arg > 100)
128                 goto out;
129         if (conf.start_time_given) {
130                 long unsigned sec, usec;
131                 if (sscanf(conf.start_time_arg, "%lu:%lu",
132                                 &sec, &usec) != 2)
133                         goto out;
134                 idt.start_time.tv_sec = sec;
135                 idt.start_time.tv_usec = usec;
136         }
137         if (!conf.writer_given) {
138                 wng = setup_default_wng();
139                 ret = 1;
140                 goto out;
141         }
142         wng = wng_new(conf.writer_given);
143         for (i = 0; i < conf.writer_given; i++) {
144                 ret = check_writer_arg(conf.writer_arg[i]);
145                 if (ret < 0)
146                         goto out;
147                 wng->writer_nodes[i].writer = &writers[ret];
148                 sprintf(wng->writer_nodes[i].task.status, "%s",
149                         writer_names[ret]);
150         }
151         ret = 1;
152 out:
153         if (ret > 0) {
154                 return wng;
155         }
156         free(wng);
157         return NULL;
158 }
159
160 static void idt_error_handler(struct task *t)
161 {
162         int ret;
163
164         PARA_INFO_LOG("%s\n", PARA_STRERROR(-t->ret));
165         unregister_task(t);
166         wng->buf = sit.buf;
167         wng->loaded = &sit.loaded;
168         wng->eof = &sit.eof;
169         sprintf(wng->task.status, "%s", "writer node group");
170         ret = wng_open(wng);
171         if (ret < 0) {
172                 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
173                 exit(EXIT_FAILURE);
174         }
175 }
176
177 static void cwt_error_handler(struct task *t)
178 {
179         if (t->ret != -E_NO_WAV_HEADER && t->ret != -E_WAV_HEADER_SUCCESS) {
180                 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-t->ret));
181                 exit(EXIT_FAILURE);
182         }
183         PARA_INFO_LOG("%s\n", PARA_STRERROR(-t->ret));
184         unregister_task(t);
185         if (t->ret == -E_WAV_HEADER_SUCCESS) {
186                 conf.channels_arg = cwt.channels;
187                 conf.sample_rate_arg = cwt.sample_rate;
188         }
189         idt.task.pre_select = initial_delay_pre_select;
190         idt.task.private_data = &idt;
191         idt.task.error_handler = idt_error_handler;
192         sprintf(idt.task.status, "initial_delay");
193         register_task(&idt.task);
194 }
195
196 static void stdin_error_handler(struct task *t)
197 {
198         unregister_task(t);
199         if (t->ret != -E_STDIN_EOF)
200                 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-t->ret));
201         else
202                 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-t->ret));
203 }
204
205 int main(int argc, char *argv[])
206 {
207         int ret = -E_WRITE_SYNTAX;
208         struct sched s;
209
210         cmdline_parser(argc, argv, &conf);
211         wng = check_args();
212         if (!wng)
213                 goto out;
214         init_supported_writers();
215         init_sched();
216
217         sit.bufsize = 16 * 1024,
218         sit.buf = para_malloc(16 * 1024),
219         sit.loaded = 0,
220         sit.task.pre_select = stdin_pre_select;
221         sit.task.post_select = stdin_post_select;
222         sit.task.error_handler = stdin_error_handler;
223         sit.task.private_data = &sit;
224         sprintf(sit.task.status, "stdin reader");
225         register_task(&sit.task);
226
227         cwt.task.pre_select = check_wav_pre_select;
228         cwt.task.private_data = &cwt;
229         cwt.task.error_handler = cwt_error_handler;
230         cwt.buf = sit.buf;
231         cwt.loaded = &sit.loaded;
232         cwt.eof = &sit.eof;
233         sprintf(cwt.task.status, "check wav");
234         register_task(&cwt.task);
235
236         s.default_timeout.tv_sec = 1;
237         s.default_timeout.tv_usec = 0;
238         ret = sched(&s);
239
240 out:
241         if (ret < 0) {
242                 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
243                 ret = EXIT_FAILURE;
244         } else
245                 ret = EXIT_SUCCESS;
246         return ret;
247 }