more audiod fixes
[paraslash.git] / write_common.c
1 /*
2  * Copyright (C) 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 /** \file write_common.c common functions of para_audiod and para_write */
20
21 #include "para.h"
22 #include "string.h"
23 #include "list.h"
24 #include "sched.h"
25 #include "write.h"
26 #include "error.h"
27
28 const char *writer_names[] ={WRITER_NAMES};
29 struct writer writers[NUM_SUPPORTED_WRITERS] = {WRITER_ARRAY};
30
31 static void wng_post_select(__a_unused struct sched *s, struct task *t)
32 {
33         struct writer_node_group *g = t->private_data;
34         int i;
35         size_t min_written = 0;
36
37         FOR_EACH_WRITER_NODE(i, g) {
38                 struct writer_node *wn = &g->writer_nodes[i];
39                 t->ret = wn->task.ret;
40                 if (t->ret < 0) {
41                         g->eof = 1;
42                         return;
43                 }
44                 if (!i)
45                         min_written = t->ret;
46                 else
47                         min_written = PARA_MIN(min_written, t->ret);
48         }
49         *g->loaded -= min_written;
50         if (!*g->loaded && *g->input_eof) {
51                 g->eof = 1;
52                 t->ret = -E_WNG_EOF;
53         } else
54                 t->ret = 1;
55         if (*g->loaded && min_written)
56                 memmove(g->buf, g->buf + min_written, *g->loaded);
57 }
58
59 int wng_open(struct writer_node_group *g)
60 {
61         int i, ret = 1;
62
63         PARA_NOTICE_LOG("opening wng %p with %d writer(s)\n", g, g->num_writers);
64         FOR_EACH_WRITER_NODE(i, g) {
65                 struct writer_node *wn = &g->writer_nodes[i];
66                 wn->wng = g;
67                 ret = wn->writer->open(wn);
68                 if (ret < 0)
69                         goto out;
70                 wn->chunk_bytes = ret;
71                 g->max_chunk_bytes = PARA_MAX(g->max_chunk_bytes, ret);
72                 wn->task.pre_select = wn->writer->pre_select;
73                 wn->task.post_select = wn->writer->post_select;
74                 wn->task.private_data = wn;
75                 register_task(&wn->task);
76         }
77         sprintf(g->task.status, "%s", "writer node group");
78         g->eof = 0;
79         register_task(&g->task);
80 out:
81         return ret;
82 }
83
84 void wng_unregister(struct writer_node_group *g)
85 {
86         int i;
87
88         FOR_EACH_WRITER_NODE(i, g) {
89                 struct writer_node *wn = &g->writer_nodes[i];
90                 unregister_task(&wn->task);
91         }
92         unregister_task(&g->task);
93 }
94
95 void wng_close(struct writer_node_group *g)
96 {
97         int i;
98
99         if (!g)
100                 return;
101         PARA_NOTICE_LOG("closing wng with %d writer(s)\n", g->num_writers);
102         FOR_EACH_WRITER_NODE(i, g) {
103                 struct writer_node *wn = &g->writer_nodes[i];
104                 wn->writer->close(wn);
105         }
106         free(g->written);
107         free(g->writer_nodes);
108         free(g);
109 }
110
111 struct writer_node_group *wng_new(unsigned num_writers)
112 {
113         struct writer_node_group *g = para_calloc(sizeof(struct writer_node_group));
114         g->num_writers = num_writers;
115         g->writer_nodes = para_calloc(num_writers
116                 * sizeof(struct writer_node));
117         g->written = para_calloc(num_writers * sizeof(size_t));
118         g->task.private_data = g;
119         g->task.post_select = wng_post_select;
120         g->task.flags = POST_ADD_TAIL;
121         return g;
122 }
123
124 void init_supported_writers(void)
125 {
126         int i;
127
128         FOR_EACH_WRITER(i)
129                 writers[i].init(&writers[i]);
130 }
131
132 void *check_writer_arg(char *wa, int *writer_num)
133 {
134         int i;
135
136         *writer_num = -E_WRITE_COMMON_SYNTAX;
137         PARA_INFO_LOG("checking  %s\n", wa);
138         FOR_EACH_WRITER(i) {
139                 const char *name = writer_names[i];
140                 size_t len = strlen(name);
141                 char c;
142                 if (strlen(wa) < len)
143                         continue;
144                 if (strncmp(name, wa, len))
145                         continue;
146                 c = wa[len];
147                 if (c && c != ' ')
148                         continue;
149                 if (c && !writers[i].parse_config)
150                         return NULL;
151                 *writer_num = i;
152                 return writers[i].parse_config(c? wa + len + 1 : "");
153         }
154         PARA_ERROR_LOG("%s", "writer not found\n");
155         return NULL;
156 }
157
158 struct writer_node_group *setup_default_wng(void)
159 {
160         struct writer_node_group *wng = wng_new(1);
161         enum writer_enum default_writer;
162
163         if (NUM_SUPPORTED_WRITERS == 1)
164                 default_writer = FILE_WRITE;
165         else
166                 default_writer = 1;
167         wng->writer_nodes[0].writer = &writers[default_writer];
168         sprintf(wng->writer_nodes[0].task.status, "%s",
169                 writer_names[default_writer]);
170         PARA_INFO_LOG("using default writer: %s %p\n",
171                 writer_names[default_writer], writers[default_writer].parse_config);
172         wng->writer_nodes[0].conf = writers[default_writer].parse_config("");
173         return wng;
174 }