audiod: Make mode switching (on, off, sb) work again.
[paraslash.git] / stdin.c
1 /*
2  * Copyright (C) 2006-2009 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file stdin.c Functions that deal with reading from stdin. */
8
9 #include <dirent.h> /* readdir() */
10 #include <assert.h>
11 #include <stdbool.h>
12 #include <regex.h>
13
14 #include "para.h"
15 #include "list.h"
16 #include "sched.h"
17 #include "fd.h"
18 #include "error.h"
19 #include "stdin.h"
20 #include "buffer_tree.h"
21 #include "string.h"
22
23 /**
24  * The pre_select function of the stdin task.
25  *
26  * \param s The scheduler this task was registered to.
27  * \param t The task structure of the stdin task.
28  *
29  * This function is always successful. If there is space left in the
30  * buffer of the stdin task, it adds \p STDIN_FILENO to the read fd set
31  * of \a s.
32  */
33 static void stdin_pre_select(struct sched *s, struct task *t)
34 {
35         struct stdin_task *sit = container_of(t, struct stdin_task, task);
36
37         if (sit->output_error && *sit->output_error < 0) {
38                 t->error = *sit->output_error;
39                 return;
40         }
41         t->error = 0;
42         sit->check_fd = 0;
43         if (sit->loaded >= sit->bufsize)
44                 return;
45         sit->check_fd = 1;
46         para_fd_set(STDIN_FILENO, &s->rfds, &s->max_fileno);
47 }
48
49 static void stdin_pre_select_btr(struct sched *s, struct task *t)
50 {
51         struct stdin_task *sit = container_of(t, struct stdin_task, task);
52         int ret;
53
54         t->error = 0;
55         ret = btr_node_status(sit->btrn, 0, BTR_NT_ROOT);
56         if (ret > 0)
57                 para_fd_set(STDIN_FILENO, &s->rfds, &s->max_fileno);
58         else if (ret < 0) {
59                 s->timeout.tv_sec = 0;
60                 s->timeout.tv_usec = 1;
61         }
62 }
63
64 /**
65  * The post select function of the stdin task.
66  *
67  * \param s The scheduler this task was registered to.
68  * \param t The task structure of the stdin task.
69  *
70  * This function checks if \p STDIN_FILENO was included by in the read fd set
71  * of \a s during the previous pre_select call.  If yes, and \p STDIN_FILENO
72  * appears to be readable, data is read from stdin into the buffer of the
73  * stdin task.
74  */
75 static void stdin_post_select(struct sched *s, struct task *t)
76 {
77         struct stdin_task *sit = container_of(t, struct stdin_task, task);
78         ssize_t ret;
79
80         if (sit->output_error && *sit->output_error < 0) {
81                 t->error = *sit->output_error;
82                 return;
83         }
84         t->error = 0;
85         if (!sit->check_fd)
86                 return;
87         if (!FD_ISSET(STDIN_FILENO, &s->rfds))
88                 return;
89         ret = read(STDIN_FILENO, sit->buf + sit->loaded, sit->bufsize - sit->loaded);
90         if (ret < 0)
91                 t->error = ERRNO_TO_PARA_ERROR(errno);
92         else if (ret > 0)
93                 sit->loaded += ret;
94         else
95                 t->error = -E_STDIN_EOF;
96 }
97
98 static void stdin_post_select_btr(struct sched *s, struct task *t)
99 {
100         struct stdin_task *sit = container_of(t, struct stdin_task, task);
101         ssize_t ret;
102         size_t sz;
103         char *buf = NULL;
104
105         t->error = 0;
106         ret = btr_node_status(sit->btrn, 0, BTR_NT_ROOT);
107         if (ret < 0)
108                 goto err;
109         if (ret == 0)
110                 return;
111         if (!FD_ISSET(STDIN_FILENO, &s->rfds))
112                 return;
113         sz = btr_pool_get_buffer(sit->btrp, &buf);
114         ret = -E_STDIN_OVERRUN;
115         if (sz == 0)
116                 goto err;
117         /*
118          * Do not use the maximal size to avoid having only a single buffer
119          * reference for the whole pool. This is bad because if that single
120          * reference can not be freed, we're stuck.
121          */
122         sz = PARA_MIN(sz, btr_pool_size(sit->btrp) / 2);
123         ret = read(STDIN_FILENO, buf, sz);
124         //PARA_CRIT_LOG("read ret: %d\n", ret);
125         if (ret < 0)
126                 ret = -ERRNO_TO_PARA_ERROR(errno);
127         if (ret == 0)
128                 ret = -E_STDIN_EOF;
129         if (ret < 0)
130                 goto err;
131         btr_add_output_pool(sit->btrp, ret, sit->btrn);
132         return;
133 err:
134         btr_remove_node(sit->btrn);
135         //btr_pool_free(sit->btrp);
136         t->error = ret;
137 }
138
139 /**
140  * Initialize a stdin task structure with default values.
141  *
142  * \param sit The stdin task structure.
143  *
144  * This fills in the pre/post select function pointers of the task structure
145  * given by \a sit. Moreover, the stdin file desctiptor is set to nonblocking
146  * mode and \a bufsize is initialized (but no buffer is allocated).
147  */
148 void stdin_set_defaults(struct stdin_task *sit)
149 {
150         int ret;
151
152         sit->bufsize = 32 * 1024;
153         if (sit->btrn) {
154                 sit->task.pre_select = stdin_pre_select_btr;
155                 sit->task.post_select = stdin_post_select_btr;
156                 sit->btrp = btr_pool_new("stdin", 64 * 1024);
157         } else {
158                 sit->task.pre_select = stdin_pre_select;
159                 sit->task.post_select = stdin_post_select;
160         }
161         sprintf(sit->task.status, "stdin reader");
162         ret = mark_fd_nonblocking(STDIN_FILENO);
163         if (ret >= 0)
164                 return;
165         sit->output_error = NULL;
166         PARA_EMERG_LOG("%s\n", para_strerror(-ret));
167         exit(EXIT_FAILURE);
168 }