Remove unused hb_mutex_trylock()
[profile/ivi/org.tizen.video-player.git] / src / hb-mutex-private.hh
1 /*
2  * Copyright © 2007  Chris Wilson
3  * Copyright © 2009,2010  Red Hat, Inc.
4  * Copyright © 2011  Google, Inc.
5  *
6  *  This is part of HarfBuzz, a text shaping library.
7  *
8  * Permission is hereby granted, without written agreement and without
9  * license or royalty fees, to use, copy, modify, and distribute this
10  * software and its documentation for any purpose, provided that the
11  * above copyright notice and the following two paragraphs appear in
12  * all copies of this software.
13  *
14  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18  * DAMAGE.
19  *
20  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
23  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
25  *
26  * Contributor(s):
27  *      Chris Wilson <chris@chris-wilson.co.uk>
28  * Red Hat Author(s): Behdad Esfahbod
29  * Google Author(s): Behdad Esfahbod
30  */
31
32 #ifndef HB_MUTEX_PRIVATE_HH
33 #define HB_MUTEX_PRIVATE_HH
34
35 #include "hb-private.hh"
36
37 HB_BEGIN_DECLS
38
39
40 /* mutex */
41
42 /* We need external help for these */
43
44 #ifdef HAVE_GLIB
45
46 #include <glib.h>
47
48 typedef GStaticMutex hb_mutex_t;
49 #define HB_MUTEX_INIT                   G_STATIC_MUTEX_INIT
50 #define hb_mutex_init(M)                g_static_mutex_init (M)
51 #define hb_mutex_lock(M)                g_static_mutex_lock (M)
52 #define hb_mutex_unlock(M)              g_static_mutex_unlock (M)
53 #define hb_mutex_free(M)                g_static_mutex_free (M)
54
55
56 #elif defined(_MSC_VER)
57
58 #include <Windows.h>
59
60 typedef CRITICAL_SECTION hb_mutex_t;
61 #define HB_MUTEX_INIT                           { NULL, 0, 0, NULL, NULL, 0 }
62 #define hb_mutex_init(M)                        InitializeCriticalSection (M)
63 #define hb_mutex_lock(M)                        EnterCriticalSection (M)
64 #define hb_mutex_unlock(M)                      LeaveCriticalSection (M)
65 #define hb_mutex_free(M)                        DeleteCriticalSection (M)
66
67
68 #else
69
70 #warning "Could not find any system to define platform macros, library will NOT be thread-safe"
71
72 typedef struct { volatile int m; } hb_mutex_t;
73 #define HB_MUTEX_INIT                           0
74 #define hb_mutex_init(M)                        ((void) ((M)->m = 0))
75 #define hb_mutex_lock(M)                        ((void) ((M)->m = 1))
76 #define hb_mutex_unlock(M)                      ((void) ((M)->m = 0))
77 #define hb_mutex_free(M)                        ((void) ((M)-M = 2))
78
79
80 #endif
81
82
83 struct hb_static_mutex_t : hb_mutex_t
84 {
85   hb_static_mutex_t (void) {
86     hb_mutex_init (this);
87   }
88
89   inline void lock (void) { hb_mutex_lock (this); }
90   inline void unlock (void) { hb_mutex_unlock (this); }
91 };
92
93
94 HB_END_DECLS
95
96
97 template <typename item_t>
98 struct hb_static_threadsafe_set_t
99 {
100   hb_lockable_set_t <item_t, hb_static_mutex_t> set;
101   hb_static_mutex_t lock;
102
103   template <typename T>
104   inline item_t *replace_or_insert (T v)
105   {
106     return set.replace_or_insert (v, lock);
107   }
108
109   template <typename T>
110   inline void remove (T v)
111   {
112     set.remove (v, lock);
113   }
114
115   template <typename T>
116   inline bool find (T v, item_t *i)
117   {
118     return set.find (v, i, lock);
119   }
120
121   template <typename T>
122   inline item_t *find_or_insert (T v)
123   {
124     return set.find_or_insert (v, lock);
125   }
126
127   void finish (void)
128   {
129     set.finish (lock);
130   }
131 };
132
133
134 HB_BEGIN_DECLS
135
136 HB_END_DECLS
137
138 #endif /* HB_MUTEX_PRIVATE_HH */