be0f687680df98ca1500f0da5b4b34cda8f2be90
[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_impl_t;
49 #define HB_MUTEX_IMPL_INIT      G_STATIC_MUTEX_INIT
50 #define hb_mutex_impl_init(M)   g_static_mutex_init (M)
51 #define hb_mutex_impl_lock(M)   g_static_mutex_lock (M)
52 #define hb_mutex_impl_unlock(M) g_static_mutex_unlock (M)
53 #define hb_mutex_impl_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_impl_t;
61 #define HB_MUTEX_IMPL_INIT      { NULL, 0, 0, NULL, NULL, 0 }
62 #define hb_mutex_impl_init(M)   InitializeCriticalSection (M)
63 #define hb_mutex_impl_lock(M)   EnterCriticalSection (M)
64 #define hb_mutex_impl_unlock(M) LeaveCriticalSection (M)
65 #define hb_mutex_impl_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_impl_t;
73 #define HB_MUTEX_IMPL_INIT      0
74 #define hb_mutex_impl_init(M)   ((void) ((M)->m = 0))
75 #define hb_mutex_impl_lock(M)   ((void) ((M)->m = 1))
76 #define hb_mutex_impl_unlock(M) ((void) ((M)->m = 0))
77 #define hb_mutex_impl_free(M)   ((void) ((M)-M = 2))
78
79
80 #endif
81
82
83 struct hb_mutex_t
84 {
85   hb_mutex_impl_t m;
86
87   inline void init   (void) { hb_mutex_impl_init   (&m); }
88   inline void lock   (void) { hb_mutex_impl_lock   (&m); }
89   inline void unlock (void) { hb_mutex_impl_unlock (&m); }
90   inline void free   (void) { hb_mutex_impl_free   (&m); }
91 };
92
93 #define HB_MUTEX_INIT           {HB_MUTEX_IMPL_INIT}
94 #define hb_mutex_init(M)        (M)->init ()
95 #define hb_mutex_lock(M)        (M)->lock ()
96 #define hb_mutex_unlock(M)      (M)->unlock ()
97 #define hb_mutex_free(M)        (M)->free ()
98
99
100 struct hb_static_mutex_t : hb_mutex_t
101 {
102   hb_static_mutex_t (void)  { this->init (); }
103
104   private:
105   NO_COPY (hb_static_mutex_t);
106 };
107
108
109 HB_END_DECLS
110
111
112 template <typename item_t>
113 struct hb_static_threadsafe_set_t
114 {
115   hb_lockable_set_t <item_t, hb_static_mutex_t> set;
116   hb_static_mutex_t lock;
117
118   template <typename T>
119   inline item_t *replace_or_insert (T v)
120   {
121     return set.replace_or_insert (v, lock);
122   }
123
124   template <typename T>
125   inline void remove (T v)
126   {
127     set.remove (v, lock);
128   }
129
130   template <typename T>
131   inline bool find (T v, item_t *i)
132   {
133     return set.find (v, i, lock);
134   }
135
136   template <typename T>
137   inline item_t *find_or_insert (T v)
138   {
139     return set.find_or_insert (v, lock);
140   }
141
142   void finish (void)
143   {
144     set.finish (lock);
145   }
146 };
147
148
149 HB_BEGIN_DECLS
150
151 HB_END_DECLS
152
153 #endif /* HB_MUTEX_PRIVATE_HH */