2 * Copyright (C) 2005-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file recv.h Receiver-related structures and exported symbols of recv_common.c. */
10 * Describes one instance of a receiver.
12 struct receiver_node {
13 /** Points to the corresponding receiver. */
14 struct receiver *receiver;
15 /** The output buffer. */
17 /** The amount of bytes in \a buf. */
19 /** Receiver-specific data. */
21 /** Pointer to the error member of the consumer. */
23 /** Pointer to the configuration data for this instance. */
25 /** The task associated with this instance. */
30 * Describes one supported paraslash receiver.
32 * \sa http_recv.c, udp_recv.c
36 * The name of the receiver.
40 * The receiver init function.
42 * It must fill in all other function pointers and is assumed to succeed.
44 * \sa http_recv_init udp_recv_init.
46 void (*init)(struct receiver *r);
48 * The command line parser of the receiver.
50 * It should check whether the command line options given by \a argc and \a
51 * argv are valid. On success, it should return a pointer to the
52 * receiver-specific configuration data determined by \a argc and \a argv.
53 * Note that this might be called more than once with different values of
54 * \a argc and \a argv.
56 void *(*parse_config)(int argc, char **argv);
58 * Open one instance of the receiver.
60 * This should allocate the output buffer of \a rn. and may also
61 * perform any other work necessary for retrieving the stream according
62 * to the configuration stored in the \a conf member of \a rn which is
63 * guaranteed to point to valid configuration data (as previously
64 * obtained from the config parser).
66 * \sa receiver_node::conf, receiver_node::buf.
68 int (*open)(struct receiver_node *rn);
70 * Close this instance of the receiver.
72 * It should free all resources associated with given receiver node
73 * that were allocated during the corresponding open call.
77 void (*close)(struct receiver_node *rn);
79 * Deactivate the receiver.
81 * Clean up what init has allocated.
83 void (*shutdown)(void);
85 * Add file descriptors to fd_sets and compute timeout for select(2).
87 * The pre_select function gets called from the driving application
88 * before entering its select loop. The receiver may use this hook to
89 * add any file descriptors to the sets of file descriptors given by \a
92 * \sa select(2), time.c struct task, struct sched.
94 void (*pre_select)(struct sched *s, struct task *t);
96 * Evaluate the result from select().
98 * This hook gets called after the call to select(). It should check
99 * all file descriptors which were added to any of the the fd sets
100 * during the previous call to pre_select. According to the result, it
101 * may then use any non-blocking I/O to establish a connection or to
102 * receive the audio data.
104 * \sa select(2), struct receiver.
106 void (*post_select)(struct sched *s, struct task *t);
108 /** The two help texts of this receiver. */
109 struct ggo_help help;
114 extern void http_recv_init(struct receiver *r);
115 #define HTTP_RECEIVER {.name = "http", .init = http_recv_init},
116 extern void dccp_recv_init(struct receiver *r);
117 #define DCCP_RECEIVER {.name = "dccp", .init = dccp_recv_init},
118 extern void udp_recv_init(struct receiver *r);
119 #define UDP_RECEIVER {.name = "udp", .init = udp_recv_init},
121 extern struct receiver receivers[];
124 /** Define an array of all available receivers. */
125 #define DEFINE_RECEIVER_ARRAY struct receiver receivers[] = { \
131 /** Iterate over all available receivers. */
132 #define FOR_EACH_RECEIVER(i) for (i = 0; receivers[i].name; i++)
134 void recv_init(void);
135 void *check_receiver_arg(char *ra, int *receiver_num);
136 void print_receiver_helps(int detailed);