Branch data Line data Source code
1 : : /***
2 : : This file is part of PulseAudio.
3 : :
4 : : Copyright 2004-2006 Lennart Poettering
5 : : Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
6 : :
7 : : PulseAudio is free software; you can redistribute it and/or modify
8 : : it under the terms of the GNU Lesser General Public License as published
9 : : by the Free Software Foundation; either version 2.1 of the License,
10 : : or (at your option) any later version.
11 : :
12 : : PulseAudio is distributed in the hope that it will be useful, but
13 : : WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 : : General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU Lesser General Public License
18 : : along with PulseAudio; if not, write to the Free Software
19 : : Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 : : USA.
21 : : ***/
22 : :
23 : : #ifdef HAVE_CONFIG_H
24 : : #include <config.h>
25 : : #endif
26 : :
27 : : #include "object.h"
28 : :
29 : : const char pa_object_type_id[] = "pa_object";
30 : :
31 : 0 : pa_object *pa_object_new_internal(size_t size, const char *type_id, pa_bool_t (*check_type)(const char *type_id)) {
32 : : pa_object *o;
33 : :
34 [ # # ]: 0 : pa_assert(size > sizeof(pa_object));
35 [ # # ]: 0 : pa_assert(type_id);
36 : :
37 [ # # ]: 0 : if (!check_type)
38 : 0 : check_type = pa_object_check_type;
39 : :
40 [ # # ]: 0 : pa_assert(check_type(type_id));
41 [ # # ]: 0 : pa_assert(check_type(pa_object_type_id));
42 : :
43 : 0 : o = pa_xmalloc(size);
44 : 0 : PA_REFCNT_INIT(o);
45 : 0 : o->type_id = type_id;
46 : 0 : o->free = pa_object_free;
47 : 0 : o->check_type = check_type;
48 : :
49 : 0 : return o;
50 : : }
51 : :
52 : 0 : pa_object *pa_object_ref(pa_object *o) {
53 [ # # ]: 0 : pa_object_assert_ref(o);
54 : :
55 : 0 : PA_REFCNT_INC(o);
56 : 0 : return o;
57 : : }
58 : :
59 [ # # ]: 0 : void pa_object_unref(pa_object *o) {
60 [ # # ]: 0 : pa_object_assert_ref(o);
61 : :
62 [ # # ]: 0 : if (PA_REFCNT_DEC(o) <= 0) {
63 [ # # ]: 0 : pa_assert(o->free);
64 : 0 : o->free(o);
65 : : }
66 : 0 : }
67 : :
68 : 0 : pa_bool_t pa_object_check_type(const char *type_id) {
69 [ # # ]: 0 : pa_assert(type_id);
70 : :
71 : 0 : return type_id == pa_object_type_id;
72 : : }
|