Git init
[external/pango1.0.git] / pango / opentype / hb-object-private.h
1 /*
2  * Copyright (C) 2007 Chris Wilson
3  * Copyright (C) 2009  Red Hat, Inc.
4  *
5  *  This is part of HarfBuzz, an OpenType Layout engine library.
6  *
7  * Permission is hereby granted, without written agreement and without
8  * license or royalty fees, to use, copy, modify, and distribute this
9  * software and its documentation for any purpose, provided that the
10  * above copyright notice and the following two paragraphs appear in
11  * all copies of this software.
12  *
13  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
14  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
15  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
16  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
17  * DAMAGE.
18  *
19  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
20  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
22  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
23  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24  *
25  * Contributor(s):
26  *      Chris Wilson <chris@chris-wilson.co.uk>
27  * Red Hat Author(s): Behdad Esfahbod
28  */
29
30 #ifndef HB_REFCOUNT_PRIVATE_H
31 #define HB_REFCOUNT_PRIVATE_H
32
33
34 /* Encapsulate operations on the object's reference count */
35 typedef struct {
36   hb_atomic_int_t ref_count;
37 } hb_reference_count_t;
38
39 #define hb_reference_count_inc(RC) hb_atomic_int_fetch_and_add ((RC).ref_count, 1)
40 #define hb_reference_count_dec(RC) hb_atomic_int_fetch_and_add ((RC).ref_count, -1)
41
42 #define HB_REFERENCE_COUNT_INIT(RC, VALUE) ((RC).ref_count = (VALUE))
43
44 #define HB_REFERENCE_COUNT_GET_VALUE(RC) hb_atomic_int_get ((RC).ref_count)
45 #define HB_REFERENCE_COUNT_SET_VALUE(RC, VALUE) hb_atomic_int_set ((RC).ref_count, (VALUE))
46
47 #define HB_REFERENCE_COUNT_INVALID_VALUE ((hb_atomic_int_t) -1)
48 #define HB_REFERENCE_COUNT_INVALID {HB_REFERENCE_COUNT_INVALID_VALUE}
49
50 #define HB_REFERENCE_COUNT_IS_INVALID(RC) (HB_REFERENCE_COUNT_GET_VALUE (RC) == HB_REFERENCE_COUNT_INVALID_VALUE)
51
52 #define HB_REFERENCE_COUNT_HAS_REFERENCE(RC) (HB_REFERENCE_COUNT_GET_VALUE (RC) > 0)
53
54
55
56 /* Helper macros */
57
58 #define HB_OBJECT_IS_INERT(obj) \
59     (HB_UNLIKELY (HB_REFERENCE_COUNT_IS_INVALID ((obj)->ref_count)))
60
61 #define HB_OBJECT_DO_INIT_EXPR(obj) \
62     HB_REFERENCE_COUNT_INIT (obj->ref_count, 1)
63
64 #define HB_OBJECT_DO_INIT(obj) \
65   HB_STMT_START { \
66     HB_OBJECT_DO_INIT_EXPR (obj); \
67   } HB_STMT_END
68
69 #define HB_OBJECT_DO_CREATE(Type, obj) \
70   HB_LIKELY (( \
71              (obj) = (Type *) calloc (1, sizeof (Type)), \
72              HB_OBJECT_DO_INIT_EXPR (obj), \
73              (obj) \
74              ))
75
76 #define HB_OBJECT_DO_REFERENCE(obj) \
77   HB_STMT_START { \
78     int old_count; \
79     if (HB_UNLIKELY (!(obj) || HB_OBJECT_IS_INERT (obj))) \
80       return obj; \
81     old_count = hb_reference_count_inc (obj->ref_count); \
82     assert (old_count > 0); \
83     return obj; \
84   } HB_STMT_END
85
86 #define HB_OBJECT_DO_GET_REFERENCE_COUNT(obj) \
87   HB_STMT_START { \
88     if (HB_UNLIKELY (!(obj) || HB_OBJECT_IS_INERT (obj))) \
89       return 0; \
90     return HB_REFERENCE_COUNT_GET_VALUE (obj->ref_count); \
91   } HB_STMT_END
92
93 #define HB_OBJECT_DO_DESTROY(obj) \
94   HB_STMT_START { \
95     int old_count; \
96     if (HB_UNLIKELY (!(obj) || HB_OBJECT_IS_INERT (obj))) \
97       return; \
98     old_count = hb_reference_count_dec (obj->ref_count); \
99     assert (old_count > 0); \
100     if (old_count != 1) \
101       return; \
102   } HB_STMT_END
103
104
105 #endif /* HB_REFCOUNT_PRIVATE_H */