1 /* Copyright (C) 2006 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
3 /** \file grab_client.c Functions for grabbing the audio stream. */
9 #include "audiod_cmd.lsg.h"
14 #include "buffer_tree.h"
15 #include "grab_client.h"
22 * How to handle blocking writes for the grab client fds.
25 /** Ignore the data and do not write. */
27 /** Write anyway (default). */
29 /** Close fd if write would block. */
33 /** Flags specified as arguments to the grab command. */
35 /** Stop grabbing if audio file changes. */
39 /** Describes one active grab client. */
41 /* The value of the -p option. */
43 /* The value of the -n option. */
45 /** The file descriptor to send the grabbed stream to. */
47 /** See \ref grab_mode. */
49 /** Flags given at the command line. */
50 enum grab_flags flags;
51 /** The point of the grab client's node in the buffer tree. */
52 struct btr_node *btrn;
53 /* The task of this grab client. */
55 /** Belongs to either the active or the inactive list. */
56 struct list_head node;
59 /* Grab clients that are attached to a btr node. */
60 static INITIALIZED_LIST_HEAD(active_grab_client_list);
61 /* Grab clients that are not currently attached any btr node. */
62 static INITIALIZED_LIST_HEAD(inactive_grab_client_list);
64 static int gc_write(struct grab_client *gc, char *buf, size_t len)
66 int ret = write_ok(gc->fd);
70 if (ret == 0) { /* fd not ready */
71 if (gc->mode == GM_PEDANTIC)
73 if (gc->mode == GM_SLOPPY)
76 ret = xwrite(gc->fd, buf, len);
82 if (gc->mode == GM_PEDANTIC)
84 if (gc->mode == GM_SLOPPY)
92 static void gc_pre_monitor(struct sched *s, void *context)
94 struct grab_client *gc = context;
95 int ret = btr_node_status(gc->btrn, 0, BTR_NT_LEAF);
101 sched_monitor_writefd(gc->fd, s);
105 * We need this forward declaration as gc_post_monitor() needs
106 * activate_grab_client and vice versa.
108 static int gc_post_monitor(struct sched *s, void *context);
111 * Move a grab client to the active list and start it.
113 * \param gc The grab client to activate.
115 static void gc_activate(struct grab_client *gc, struct sched *s)
117 struct btr_node *root = audiod_get_btr_root(), *parent;
118 char *name = gc->name? gc->name : "grab";
122 parent = btr_search_node(gc->parent, root);
125 PARA_INFO_LOG("activating fd %d\n", gc->fd);
126 list_move(&gc->node, &active_grab_client_list);
127 gc->btrn = btr_new_node(&(struct btr_node_description)
128 EMBRACE(.name = name, .parent = parent));
130 gc->task = task_register(&(struct task_info) {
132 .pre_monitor = gc_pre_monitor,
133 .post_monitor = gc_post_monitor,
139 * Activate inactive grab clients if possible.
141 * \param s Needed to schedule the grab client task.
143 * This is called from audiod.c when the current audio file changes. It loops
144 * over all inactive grab clients and checks each grab client's configuration
145 * to determine if the client in question wishes to grab the new stream. If
146 * yes, this grab client is moved from the inactive to the active grab client list.
148 * This function also garbage collects all grab clients whose tasks have been
151 void activate_grab_clients(struct sched *s)
153 struct grab_client *gc, *tmp;
155 list_for_each_entry_safe(gc, tmp, &inactive_grab_client_list, node) {
165 static int gc_close(struct grab_client *gc, int err)
167 btr_remove_node(&gc->btrn);
168 PARA_INFO_LOG("closing gc: %s\n", para_strerror(-err));
169 list_move(&gc->node, &inactive_grab_client_list);
170 if (err == -E_GC_WRITE || (gc->flags & GF_ONE_SHOT)) {
172 * We must not free the gc structure here as it contains ->task
173 * which is still used because this function is called from
185 static int gc_post_monitor(__a_unused struct sched *s, void *context)
187 struct grab_client *gc = context;
188 struct btr_node *btrn = gc->btrn;
193 ret = btr_node_status(btrn, 0, BTR_NT_LEAF);
198 sz = btr_next_buffer(btrn, &buf);
200 ret = gc_write(gc, buf, sz);
204 btr_consume(btrn, ret);
211 static int gc_check_args(struct lls_parse_result *lpr, struct grab_client *gc)
213 const struct lls_opt_result *r;
215 r = lls_opt_result(LSG_AUDIOD_CMD_GRAB_OPT_MODE, lpr);
216 if (lls_opt_given(r) > 0) {
217 const char *arg = lls_string_val(0, r);
218 if (strcmp(arg, "s") == 0)
219 gc->mode = GM_SLOPPY;
220 else if (strcmp(arg, "a") == 0)
221 gc->mode = GM_AGGRESSIVE;
222 else if (strcmp(arg, "p") == 0)
223 gc->mode = GM_PEDANTIC;
228 r = lls_opt_result(LSG_AUDIOD_CMD_GRAB_OPT_ONE_SHOT, lpr);
229 if (lls_opt_given(r) > 0)
230 gc->flags |= GF_ONE_SHOT;
232 r = lls_opt_result(LSG_AUDIOD_CMD_GRAB_OPT_PARENT, lpr);
233 if (lls_opt_given(r) > 0) {
234 const char *arg = lls_string_val(0, r);
235 gc->parent = para_strdup(arg);
238 r = lls_opt_result(LSG_AUDIOD_CMD_GRAB_OPT_NAME, lpr);
239 if (lls_opt_given(r) > 0) {
240 const char *arg = lls_string_val(0, r);
241 gc->name = para_strdup(arg);
247 * Create and activate a grab client.
249 * \param fd The file descriptor of the client.
250 * \param lpr The parsed command line of the grab command.
251 * \param s The scheduler to register the grab client task to.
253 * This function semantically parses the arguments given as options to the grab
254 * command. On success it allocates a struct grab_client, associates it with
255 * the given file descriptor and activates it. If the new grab client can not
256 * be attached to an existing buffer tree node it is put into the inactive list
257 * for later activation.
261 int grab_client_new(int fd, struct lls_parse_result *lpr, struct sched *s)
264 struct grab_client *gc = zalloc(sizeof(struct grab_client));
266 ret = gc_check_args(lpr, gc);
271 ret = -ERRNO_TO_PARA_ERROR(errno);
275 para_list_add(&gc->node, &inactive_grab_client_list);