merge glitch-free branch back into trunk
[profile/ivi/pulseaudio.git] / src / pulsecore / memchunk.c
1 /* $Id$ */
2
3 /***
4   This file is part of PulseAudio.
5
6   Copyright 2004-2006 Lennart Poettering
7
8   PulseAudio is free software; you can redistribute it and/or modify
9   it under the terms of the GNU Lesser General Public License as
10   published by the Free Software Foundation; either version 2.1 of the
11   License, or (at your option) any later version.
12
13   PulseAudio is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public
19   License along with PulseAudio; if not, write to the Free Software
20   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21   USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <errno.h>
32
33 #include <pulse/xmalloc.h>
34 #include <pulsecore/macro.h>
35 #include <pulsecore/core-util.h>
36
37 #include "memchunk.h"
38
39 pa_memchunk* pa_memchunk_make_writable(pa_memchunk *c, size_t min) {
40     pa_memblock *n;
41     size_t l;
42     void *tdata, *sdata;
43
44     pa_assert(c);
45     pa_assert(c->memblock);
46
47     if (pa_memblock_ref_is_one(c->memblock) &&
48         !pa_memblock_is_read_only(c->memblock) &&
49         pa_memblock_get_length(c->memblock) >= c->index+min)
50         return c;
51
52     l = c->length;
53     if (l < min)
54         l = min;
55
56     n = pa_memblock_new(pa_memblock_get_pool(c->memblock), l);
57     tdata = pa_memblock_acquire(n);
58     sdata = pa_memblock_acquire(c->memblock);
59     memcpy(tdata, (uint8_t*) sdata + c->index, c->length);
60     pa_memblock_release(n);
61     pa_memblock_release(c->memblock);
62     pa_memblock_unref(c->memblock);
63     c->memblock = n;
64     c->index = 0;
65
66     return c;
67 }
68
69 pa_memchunk* pa_memchunk_reset(pa_memchunk *c) {
70     pa_assert(c);
71
72     c->memblock = NULL;
73     c->length = c->index = 0;
74
75     return c;
76 }
77
78 pa_memchunk *pa_memchunk_will_need(const pa_memchunk *c) {
79     void *p;
80
81     pa_assert(c);
82     pa_assert(c->memblock);
83
84     /* A version of pa_memblock_will_need() that works on memchunks
85      * instead of memblocks */
86
87     p = (uint8_t*) pa_memblock_acquire(c->memblock) + c->index;
88     pa_will_need(p, c->length);
89     pa_memblock_release(c->memblock);
90
91     return (pa_memchunk*) c;
92 }
93
94 pa_memchunk* pa_memchunk_memcpy(pa_memchunk *dst, pa_memchunk *src) {
95     void *p, *q;
96
97     pa_assert(dst);
98     pa_assert(src);
99     pa_assert(dst->length == src->length);
100
101     p = pa_memblock_acquire(dst->memblock);
102     q = pa_memblock_acquire(src->memblock);
103
104     memmove((uint8_t*) p + dst->index,
105             (uint8_t*) q + src->index,
106             dst->length);
107
108     pa_memblock_release(dst->memblock);
109     pa_memblock_release(src->memblock);
110
111     return dst;
112 }