]> code.delx.au - pulseaudio/blob - polyp/pstream.c
latency work
[pulseaudio] / polyp / pstream.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
10
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <assert.h>
29 #include <netinet/in.h>
30
31 #include "pstream.h"
32 #include "queue.h"
33 #include "xmalloc.h"
34
35 enum pa_pstream_descriptor_index {
36 PA_PSTREAM_DESCRIPTOR_LENGTH,
37 PA_PSTREAM_DESCRIPTOR_CHANNEL,
38 PA_PSTREAM_DESCRIPTOR_DELTA,
39 PA_PSTREAM_DESCRIPTOR_MAX
40 };
41
42 typedef uint32_t pa_pstream_descriptor[PA_PSTREAM_DESCRIPTOR_MAX];
43
44 #define PA_PSTREAM_DESCRIPTOR_SIZE (PA_PSTREAM_DESCRIPTOR_MAX*sizeof(uint32_t))
45 #define FRAME_SIZE_MAX (1024*500) /* half a megabyte */
46
47 struct item_info {
48 enum { PA_PSTREAM_ITEM_PACKET, PA_PSTREAM_ITEM_MEMBLOCK } type;
49
50 /* memblock info */
51 struct pa_memchunk chunk;
52 uint32_t channel;
53 uint32_t delta;
54
55 /* packet info */
56 struct pa_packet *packet;
57 };
58
59 struct pa_pstream {
60 int ref;
61
62 struct pa_mainloop_api *mainloop;
63 struct pa_defer_event *defer_event;
64 struct pa_iochannel *io;
65 struct pa_queue *send_queue;
66
67 int dead;
68 void (*die_callback) (struct pa_pstream *p, void *userdata);
69 void *die_callback_userdata;
70
71 struct {
72 struct item_info* current;
73 pa_pstream_descriptor descriptor;
74 void *data;
75 size_t index;
76 } write;
77
78 struct {
79 struct pa_memblock *memblock;
80 struct pa_packet *packet;
81 pa_pstream_descriptor descriptor;
82 void *data;
83 size_t index;
84 } read;
85
86 void (*recieve_packet_callback) (struct pa_pstream *p, struct pa_packet *packet, void *userdata);
87 void *recieve_packet_callback_userdata;
88
89 void (*recieve_memblock_callback) (struct pa_pstream *p, uint32_t channel, uint32_t delta, const struct pa_memchunk *chunk, void *userdata);
90 void *recieve_memblock_callback_userdata;
91
92 void (*drain_callback)(struct pa_pstream *p, void *userdata);
93 void *drain_userdata;
94
95 struct pa_memblock_stat *memblock_stat;
96 };
97
98 static void do_write(struct pa_pstream *p);
99 static void do_read(struct pa_pstream *p);
100
101 static void do_something(struct pa_pstream *p) {
102 assert(p);
103 p->mainloop->defer_enable(p->defer_event, 0);
104
105 pa_pstream_ref(p);
106
107 if (!p->dead && pa_iochannel_is_hungup(p->io)) {
108 p->dead = 1;
109 if (p->die_callback)
110 p->die_callback(p, p->die_callback_userdata);
111 }
112
113 if (!p->dead && pa_iochannel_is_writable(p->io))
114 do_write(p);
115
116 if (!p->dead && pa_iochannel_is_readable(p->io))
117 do_read(p);
118
119 pa_pstream_unref(p);
120 }
121
122 static void io_callback(struct pa_iochannel*io, void *userdata) {
123 struct pa_pstream *p = userdata;
124 assert(p && p->io == io);
125 do_something(p);
126 }
127
128 static void defer_callback(struct pa_mainloop_api *m, struct pa_defer_event *e, void*userdata) {
129 struct pa_pstream *p = userdata;
130 assert(p && p->defer_event == e && p->mainloop == m);
131 do_something(p);
132 }
133
134 struct pa_pstream *pa_pstream_new(struct pa_mainloop_api *m, struct pa_iochannel *io, struct pa_memblock_stat *s) {
135 struct pa_pstream *p;
136 assert(io);
137
138 p = pa_xmalloc(sizeof(struct pa_pstream));
139 p->ref = 1;
140 p->io = io;
141 pa_iochannel_set_callback(io, io_callback, p);
142
143 p->dead = 0;
144 p->die_callback = NULL;
145 p->die_callback_userdata = NULL;
146
147 p->mainloop = m;
148 p->defer_event = m->defer_new(m, defer_callback, p);
149 m->defer_enable(p->defer_event, 0);
150
151 p->send_queue = pa_queue_new();
152 assert(p->send_queue);
153
154 p->write.current = NULL;
155 p->write.index = 0;
156
157 p->read.memblock = NULL;
158 p->read.packet = NULL;
159 p->read.index = 0;
160
161 p->recieve_packet_callback = NULL;
162 p->recieve_packet_callback_userdata = NULL;
163
164 p->recieve_memblock_callback = NULL;
165 p->recieve_memblock_callback_userdata = NULL;
166
167 p->drain_callback = NULL;
168 p->drain_userdata = NULL;
169
170 p->memblock_stat = s;
171
172 return p;
173 }
174
175 static void item_free(void *item, void *p) {
176 struct item_info *i = item;
177 assert(i);
178
179 if (i->type == PA_PSTREAM_ITEM_MEMBLOCK) {
180 assert(i->chunk.memblock);
181 pa_memblock_unref(i->chunk.memblock);
182 } else {
183 assert(i->type == PA_PSTREAM_ITEM_PACKET);
184 assert(i->packet);
185 pa_packet_unref(i->packet);
186 }
187
188 pa_xfree(i);
189 }
190
191 static void pstream_free(struct pa_pstream *p) {
192 assert(p);
193
194 pa_pstream_close(p);
195
196 pa_queue_free(p->send_queue, item_free, NULL);
197
198 if (p->write.current)
199 item_free(p->write.current, NULL);
200
201 if (p->read.memblock)
202 pa_memblock_unref(p->read.memblock);
203
204 if (p->read.packet)
205 pa_packet_unref(p->read.packet);
206
207 pa_xfree(p);
208 }
209
210 void pa_pstream_send_packet(struct pa_pstream*p, struct pa_packet *packet) {
211 struct item_info *i;
212 assert(p && packet);
213
214 /*fprintf(stderr, "push-packet %p\n", packet);*/
215
216 i = pa_xmalloc(sizeof(struct item_info));
217 i->type = PA_PSTREAM_ITEM_PACKET;
218 i->packet = pa_packet_ref(packet);
219
220 pa_queue_push(p->send_queue, i);
221 p->mainloop->defer_enable(p->defer_event, 1);
222 }
223
224 void pa_pstream_send_memblock(struct pa_pstream*p, uint32_t channel, uint32_t delta, const struct pa_memchunk *chunk) {
225 struct item_info *i;
226 assert(p && channel != (uint32_t) -1 && chunk);
227
228 i = pa_xmalloc(sizeof(struct item_info));
229 i->type = PA_PSTREAM_ITEM_MEMBLOCK;
230 i->chunk = *chunk;
231 i->channel = channel;
232 i->delta = delta;
233
234 pa_memblock_ref(i->chunk.memblock);
235
236 pa_queue_push(p->send_queue, i);
237 p->mainloop->defer_enable(p->defer_event, 1);
238 }
239
240 void pa_pstream_set_recieve_packet_callback(struct pa_pstream *p, void (*callback) (struct pa_pstream *p, struct pa_packet *packet, void *userdata), void *userdata) {
241 assert(p && callback);
242
243 p->recieve_packet_callback = callback;
244 p->recieve_packet_callback_userdata = userdata;
245 }
246
247 void pa_pstream_set_recieve_memblock_callback(struct pa_pstream *p, void (*callback) (struct pa_pstream *p, uint32_t channel, uint32_t delta, const struct pa_memchunk *chunk, void *userdata), void *userdata) {
248 assert(p && callback);
249
250 p->recieve_memblock_callback = callback;
251 p->recieve_memblock_callback_userdata = userdata;
252 }
253
254 static void prepare_next_write_item(struct pa_pstream *p) {
255 assert(p);
256
257 if (!(p->write.current = pa_queue_pop(p->send_queue)))
258 return;
259
260 p->write.index = 0;
261
262 if (p->write.current->type == PA_PSTREAM_ITEM_PACKET) {
263 /*fprintf(stderr, "pop-packet %p\n", p->write.current->packet);*/
264
265 assert(p->write.current->packet);
266 p->write.data = p->write.current->packet->data;
267 p->write.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH] = htonl(p->write.current->packet->length);
268 p->write.descriptor[PA_PSTREAM_DESCRIPTOR_CHANNEL] = htonl((uint32_t) -1);
269 p->write.descriptor[PA_PSTREAM_DESCRIPTOR_DELTA] = 0;
270 } else {
271 assert(p->write.current->type == PA_PSTREAM_ITEM_MEMBLOCK && p->write.current->chunk.memblock);
272 p->write.data = p->write.current->chunk.memblock->data + p->write.current->chunk.index;
273 p->write.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH] = htonl(p->write.current->chunk.length);
274 p->write.descriptor[PA_PSTREAM_DESCRIPTOR_CHANNEL] = htonl(p->write.current->channel);
275 p->write.descriptor[PA_PSTREAM_DESCRIPTOR_DELTA] = htonl(p->write.current->delta);
276 }
277 }
278
279 static void do_write(struct pa_pstream *p) {
280 void *d;
281 size_t l;
282 ssize_t r;
283 assert(p);
284
285 if (!p->write.current)
286 prepare_next_write_item(p);
287
288 if (!p->write.current)
289 return;
290
291 assert(p->write.data);
292
293 if (p->write.index < PA_PSTREAM_DESCRIPTOR_SIZE) {
294 d = (void*) p->write.descriptor + p->write.index;
295 l = PA_PSTREAM_DESCRIPTOR_SIZE - p->write.index;
296 } else {
297 d = (void*) p->write.data + p->write.index - PA_PSTREAM_DESCRIPTOR_SIZE;
298 l = ntohl(p->write.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH]) - (p->write.index - PA_PSTREAM_DESCRIPTOR_SIZE);
299 }
300
301 if ((r = pa_iochannel_write(p->io, d, l)) < 0)
302 goto die;
303
304 p->write.index += r;
305
306 if (p->write.index >= PA_PSTREAM_DESCRIPTOR_SIZE+ntohl(p->write.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH])) {
307 assert(p->write.current);
308 item_free(p->write.current, (void *) 1);
309 p->write.current = NULL;
310
311 if (p->drain_callback && !pa_pstream_is_pending(p))
312 p->drain_callback(p, p->drain_userdata);
313 }
314
315 return;
316
317 die:
318 p->dead = 1;
319 if (p->die_callback)
320 p->die_callback(p, p->die_callback_userdata);
321 }
322
323 static void do_read(struct pa_pstream *p) {
324 void *d;
325 size_t l;
326 ssize_t r;
327 assert(p);
328
329 if (p->read.index < PA_PSTREAM_DESCRIPTOR_SIZE) {
330 d = (void*) p->read.descriptor + p->read.index;
331 l = PA_PSTREAM_DESCRIPTOR_SIZE - p->read.index;
332 } else {
333 assert(p->read.data);
334 d = (void*) p->read.data + p->read.index - PA_PSTREAM_DESCRIPTOR_SIZE;
335 l = ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH]) - (p->read.index - PA_PSTREAM_DESCRIPTOR_SIZE);
336 }
337
338 if ((r = pa_iochannel_read(p->io, d, l)) <= 0)
339 goto die;
340
341 p->read.index += r;
342
343 if (p->read.index == PA_PSTREAM_DESCRIPTOR_SIZE) {
344 /* Reading of frame descriptor complete */
345
346 /* Frame size too large */
347 if (ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH]) > FRAME_SIZE_MAX) {
348 fprintf(stderr, "frame size too large\n");
349 goto die;
350 }
351
352 assert(!p->read.packet && !p->read.memblock);
353
354 if (ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_CHANNEL]) == (uint32_t) -1) {
355 /* Frame is a packet frame */
356 p->read.packet = pa_packet_new(ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH]));
357 assert(p->read.packet);
358 p->read.data = p->read.packet->data;
359 } else {
360 /* Frame is a memblock frame */
361 p->read.memblock = pa_memblock_new(ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH]), p->memblock_stat);
362 assert(p->read.memblock);
363 p->read.data = p->read.memblock->data;
364 }
365
366 } else if (p->read.index > PA_PSTREAM_DESCRIPTOR_SIZE) {
367 /* Frame payload available */
368
369 if (p->read.memblock && p->recieve_memblock_callback) { /* Is this memblock data? Than pass it to the user */
370 size_t l;
371
372 l = (p->read.index - r) < PA_PSTREAM_DESCRIPTOR_SIZE ? p->read.index - PA_PSTREAM_DESCRIPTOR_SIZE : (size_t) r;
373
374 if (l > 0) {
375 struct pa_memchunk chunk;
376
377 chunk.memblock = p->read.memblock;
378 chunk.index = p->read.index - PA_PSTREAM_DESCRIPTOR_SIZE - l;
379 chunk.length = l;
380
381 if (p->recieve_memblock_callback)
382 p->recieve_memblock_callback(
383 p,
384 ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_CHANNEL]),
385 ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_DELTA]),
386 &chunk,
387 p->recieve_memblock_callback_userdata);
388 }
389 }
390
391 /* Frame complete */
392 if (p->read.index >= ntohl(p->read.descriptor[PA_PSTREAM_DESCRIPTOR_LENGTH]) + PA_PSTREAM_DESCRIPTOR_SIZE) {
393 if (p->read.memblock) {
394 assert(!p->read.packet);
395
396 pa_memblock_unref(p->read.memblock);
397 p->read.memblock = NULL;
398 } else {
399 assert(p->read.packet);
400
401 if (p->recieve_packet_callback)
402 p->recieve_packet_callback(p, p->read.packet, p->recieve_packet_callback_userdata);
403
404 pa_packet_unref(p->read.packet);
405 p->read.packet = NULL;
406 }
407
408 p->read.index = 0;
409 }
410 }
411
412 return;
413
414 die:
415 p->dead = 1;
416 if (p->die_callback)
417 p->die_callback(p, p->die_callback_userdata);
418
419 }
420
421 void pa_pstream_set_die_callback(struct pa_pstream *p, void (*callback)(struct pa_pstream *p, void *userdata), void *userdata) {
422 assert(p && callback);
423 p->die_callback = callback;
424 p->die_callback_userdata = userdata;
425 }
426
427 int pa_pstream_is_pending(struct pa_pstream *p) {
428 assert(p);
429
430 if (p->dead)
431 return 0;
432
433 return p->write.current || !pa_queue_is_empty(p->send_queue);
434 }
435
436 void pa_pstream_set_drain_callback(struct pa_pstream *p, void (*cb)(struct pa_pstream *p, void *userdata), void *userdata) {
437 assert(p);
438
439 p->drain_callback = cb;
440 p->drain_userdata = userdata;
441 }
442
443 void pa_pstream_unref(struct pa_pstream*p) {
444 assert(p && p->ref >= 1);
445
446 if (!(--(p->ref)))
447 pstream_free(p);
448 }
449
450 struct pa_pstream* pa_pstream_ref(struct pa_pstream*p) {
451 assert(p && p->ref >= 1);
452 p->ref++;
453 return p;
454 }
455
456 void pa_pstream_close(struct pa_pstream *p) {
457 assert(p);
458
459 p->dead = 1;
460
461 if (p->io) {
462 pa_iochannel_free(p->io);
463 p->io = NULL;
464 }
465
466 if (p->defer_event) {
467 p->mainloop->defer_free(p->defer_event);
468 p->defer_event = NULL;
469 }
470
471 p->die_callback = NULL;
472 p->drain_callback = NULL;
473 p->recieve_packet_callback = NULL;
474 p->recieve_memblock_callback = NULL;
475 }