Move Win32 thread-safety stuff to hb-object-private.h
[apps/core/preloaded/video-player.git] / src / hb-private.hh
1 /*
2  * Copyright © 2007,2008,2009  Red Hat, Inc.
3  * Copyright © 2011  Google, Inc.
4  *
5  *  This is part of HarfBuzz, a text shaping 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  * Red Hat Author(s): Behdad Esfahbod
26  * Google Author(s): Behdad Esfahbod
27  */
28
29 #ifndef HB_PRIVATE_HH
30 #define HB_PRIVATE_HH
31
32 #if HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35
36 #include "hb-common.h"
37
38 #include <stdlib.h>
39 #include <string.h>
40 #include <assert.h>
41
42 /* We only use these two for debug output.  However, the debug code is
43  * always seen by the compiler (and optimized out in non-debug builds.
44  * If including these becomes a problem, we can start thinking about
45  * someway around that. */
46 #include <stdio.h>
47 #include <errno.h>
48
49 HB_BEGIN_DECLS
50
51
52 /* Essentials */
53
54 #ifndef NULL
55 # define NULL ((void *) 0)
56 #endif
57
58 #undef FALSE
59 #define FALSE 0
60
61 #undef TRUE
62 #define TRUE 1
63
64
65 /* Basics */
66
67 HB_END_DECLS
68
69 #undef MIN
70 template <typename Type> static inline Type MIN (const Type &a, const Type &b) { return a < b ? a : b; }
71
72 #undef MAX
73 template <typename Type> static inline Type MAX (const Type &a, const Type &b) { return a > b ? a : b; }
74
75 HB_BEGIN_DECLS
76
77 #undef  ARRAY_LENGTH
78 #define ARRAY_LENGTH(__array) ((signed int) (sizeof (__array) / sizeof (__array[0])))
79
80 #define HB_STMT_START do
81 #define HB_STMT_END   while (0)
82
83 #define _ASSERT_STATIC1(_line, _cond) typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
84 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
85 #define ASSERT_STATIC(_cond) _ASSERT_STATIC0 (__LINE__, (_cond))
86
87 #define ASSERT_STATIC_EXPR(_cond) ((void) sizeof (char[(_cond) ? 1 : -1]))
88
89
90 /* Lets assert int types.  Saves trouble down the road. */
91
92 ASSERT_STATIC (sizeof (int8_t) == 1);
93 ASSERT_STATIC (sizeof (uint8_t) == 1);
94 ASSERT_STATIC (sizeof (int16_t) == 2);
95 ASSERT_STATIC (sizeof (uint16_t) == 2);
96 ASSERT_STATIC (sizeof (int32_t) == 4);
97 ASSERT_STATIC (sizeof (uint32_t) == 4);
98 ASSERT_STATIC (sizeof (int64_t) == 8);
99 ASSERT_STATIC (sizeof (uint64_t) == 8);
100
101 ASSERT_STATIC (sizeof (hb_codepoint_t) == 4);
102 ASSERT_STATIC (sizeof (hb_position_t) == 4);
103 ASSERT_STATIC (sizeof (hb_mask_t) == 4);
104 ASSERT_STATIC (sizeof (hb_var_int_t) == 4);
105
106 /* Misc */
107
108
109 #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
110 #define _HB_BOOLEAN_EXPR(expr) ((expr) ? 1 : 0)
111 #define likely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 1))
112 #define unlikely(expr) (__builtin_expect (_HB_BOOLEAN_EXPR(expr), 0))
113 #else
114 #define likely(expr) (expr)
115 #define unlikely(expr) (expr)
116 #endif
117
118 #ifndef __GNUC__
119 #undef __attribute__
120 #define __attribute__(x)
121 #endif
122
123 #if __GNUC__ >= 3
124 #define HB_PURE_FUNC    __attribute__((pure))
125 #define HB_CONST_FUNC   __attribute__((const))
126 #else
127 #define HB_PURE_FUNC
128 #define HB_CONST_FUNC
129 #endif
130 #if __GNUC__ >= 4
131 #define HB_UNUSED       __attribute__((unused))
132 #else
133 #define HB_UNUSED
134 #endif
135
136 #ifndef HB_INTERNAL
137 # define HB_INTERNAL __attribute__((__visibility__("hidden")))
138 #endif
139
140
141 #if (defined(__WIN32__) && !defined(__WINE__)) || defined(_MSC_VER)
142 #define snprintf _snprintf
143 #endif
144
145 #ifdef _MSC_VER
146 #undef inline
147 #define inline __inline
148 #endif
149
150 #ifdef __STRICT_ANSI__
151 #undef inline
152 #define inline __inline__
153 #endif
154
155
156 #if __GNUC__ >= 3
157 #define HB_FUNC __PRETTY_FUNCTION__
158 #elif defined(_MSC_VER)
159 #define HB_FUNC __FUNCSIG__
160 #else
161 #define HB_FUNC __func__
162 #endif
163
164
165 /* Return the number of 1 bits in mask. */
166 static inline HB_CONST_FUNC unsigned int
167 _hb_popcount32 (uint32_t mask)
168 {
169 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
170   return __builtin_popcount (mask);
171 #else
172   /* "HACKMEM 169" */
173   register uint32_t y;
174   y = (mask >> 1) &033333333333;
175   y = mask - y - ((y >>1) & 033333333333);
176   return (((y + (y >> 3)) & 030707070707) % 077);
177 #endif
178 }
179
180 /* Returns the number of bits needed to store number */
181 static inline HB_CONST_FUNC unsigned int
182 _hb_bit_storage (unsigned int number)
183 {
184 #if defined(__GNUC__) && (__GNUC__ >= 4) && defined(__OPTIMIZE__)
185   return likely (number) ? (sizeof (unsigned int) * 8 - __builtin_clz (number)) : 0;
186 #else
187   register unsigned int n_bits = 0;
188   while (number) {
189     n_bits++;
190     number >>= 1;
191   }
192   return n_bits;
193 #endif
194 }
195
196 /* Returns the number of zero bits in the least significant side of number */
197 static inline HB_CONST_FUNC unsigned int
198 _hb_ctz (unsigned int number)
199 {
200 #if defined(__GNUC__) && (__GNUC__ >= 4) && defined(__OPTIMIZE__)
201   return likely (number) ? __builtin_ctz (number) : 0;
202 #else
203   register unsigned int n_bits = 0;
204   if (unlikely (!number)) return 0;
205   while (!(number & 1)) {
206     n_bits++;
207     number >>= 1;
208   }
209   return n_bits;
210 #endif
211 }
212
213 static inline bool
214 _hb_unsigned_int_mul_overflows (unsigned int count, unsigned int size)
215 {
216   return (size > 0) && (count >= ((unsigned int) -1) / size);
217 }
218
219
220 /* Type of bsearch() / qsort() compare function */
221 typedef int (*hb_compare_func_t) (const void *, const void *);
222
223
224 HB_END_DECLS
225
226
227 /* arrays and maps */
228
229
230 template <typename Type, unsigned int StaticSize>
231 struct hb_static_array_t {
232
233   unsigned int len;
234   unsigned int allocated;
235   Type *array;
236   Type static_array[StaticSize];
237
238   void finish (void) { for (unsigned i = 0; i < len; i++) array[i].finish (); }
239
240   inline Type& operator [] (unsigned int i)
241   {
242     return array[i];
243   }
244
245   inline Type *push (void)
246   {
247     if (!array) {
248       array = static_array;
249       allocated = ARRAY_LENGTH (static_array);
250     }
251     if (likely (len < allocated))
252       return &array[len++];
253
254     /* Need to reallocate */
255     unsigned int new_allocated = allocated + (allocated >> 1) + 8;
256     Type *new_array = NULL;
257
258     if (array == static_array) {
259       new_array = (Type *) calloc (new_allocated, sizeof (Type));
260       if (new_array)
261         memcpy (new_array, array, len * sizeof (Type));
262     } else {
263       bool overflows = (new_allocated < allocated) || _hb_unsigned_int_mul_overflows (new_allocated, sizeof (Type));
264       if (likely (!overflows)) {
265         new_array = (Type *) realloc (array, new_allocated * sizeof (Type));
266       }
267     }
268
269     if (unlikely (!new_array))
270       return NULL;
271
272     array = new_array;
273     allocated = new_allocated;
274     return &array[len++];
275   }
276
277   inline void pop (void)
278   {
279     len--;
280     /* TODO: shrink array if needed */
281   }
282 };
283
284 template <typename Type>
285 struct hb_array_t : hb_static_array_t<Type, 2> {};
286
287
288 template <typename Key, typename Value>
289 struct hb_map_t
290 {
291   struct item_t {
292     Key key;
293     /* unsigned int hash; */
294     Value value;
295
296     void finish (void) { value.finish (); }
297   };
298
299   hb_array_t <item_t> items;
300
301   private:
302
303   inline item_t *find (Key key) {
304     if (unlikely (!key)) return NULL;
305     for (unsigned int i = 0; i < items.len; i++)
306       if (key == items[i].key)
307         return &items[i];
308     return NULL;
309   }
310
311   public:
312
313   inline bool set (Key   key,
314                    Value &value)
315   {
316     if (unlikely (!key)) return NULL;
317     item_t *item;
318     item = find (key);
319     if (item)
320       item->finish ();
321     else
322       item = items.push ();
323     if (unlikely (!item)) return false;
324     item->key = key;
325     item->value = value;
326     return true;
327   }
328
329   inline void unset (Key &key)
330   {
331     item_t *item;
332     item = find (key);
333     if (!item) return;
334
335     item->finish ();
336     *item = items[items.len - 1];
337     items.pop ();
338   }
339
340   inline Value *get (Key key)
341   {
342     item_t *item = find (key);
343     return item ? &item->value : NULL;
344   }
345
346   void finish (void) { items.finish (); }
347 };
348
349
350 HB_BEGIN_DECLS
351
352
353 /* Big-endian handling */
354
355 static inline uint16_t hb_be_uint16 (const uint16_t v)
356 {
357   const uint8_t *V = (const uint8_t *) &v;
358   return (uint16_t) (V[0] << 8) + V[1];
359 }
360
361 #define hb_be_uint16_put(v,V)   HB_STMT_START { v[0] = (V>>8); v[1] = (V); } HB_STMT_END
362 #define hb_be_uint16_get(v)     (uint16_t) ((v[0] << 8) + v[1])
363 #define hb_be_uint16_eq(a,b)    (a[0] == b[0] && a[1] == b[1])
364
365 #define hb_be_uint32_put(v,V)   HB_STMT_START { v[0] = (V>>24); v[1] = (V>>16); v[2] = (V>>8); v[3] = (V); } HB_STMT_END
366 #define hb_be_uint32_get(v)     (uint32_t) ((v[0] << 24) + (v[1] << 16) + (v[2] << 8) + v[3])
367 #define hb_be_uint32_eq(a,b)    (a[0] == b[0] && a[1] == b[1] && a[2] == b[2] && a[3] == b[3])
368
369
370 /* ASCII tag/character handling */
371
372 static inline unsigned char ISALPHA (unsigned char c)
373 { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); }
374 static inline unsigned char ISALNUM (unsigned char c)
375 { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9'); }
376 static inline unsigned char TOUPPER (unsigned char c)
377 { return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c; }
378 static inline unsigned char TOLOWER (unsigned char c)
379 { return (c >= 'A' && c <= 'Z') ? c - 'A' + 'a' : c; }
380
381 #define HB_TAG_CHAR4(s)   (HB_TAG(((const char *) s)[0], \
382                                   ((const char *) s)[1], \
383                                   ((const char *) s)[2], \
384                                   ((const char *) s)[3]))
385
386
387 /* Debug */
388
389 #ifndef HB_DEBUG
390 #define HB_DEBUG 0
391 #endif
392
393 static inline bool /* always returns TRUE */
394 _hb_trace (const char *what,
395            const char *function,
396            const void *obj,
397            unsigned int depth,
398            unsigned int max_depth)
399 {
400   (void) ((depth < max_depth) && fprintf (stderr, "%s(%p) %-*d-> %s\n", what, obj, depth, depth, function));
401   return TRUE;
402 }
403
404
405 HB_END_DECLS
406
407 #endif /* HB_PRIVATE_HH */