Readded GFreeFunc, g_node_insert_after and g_find_program_in_path resp.,
[platform/upstream/glib.git] / gtypes.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __G_TYPES_H__
28 #define __G_TYPES_H__
29
30 #include <glibconfig.h>
31
32 G_BEGIN_DECLS
33
34 /* Provide type definitions for commonly used types.
35  *  These are useful because a "gint8" can be adjusted
36  *  to be 1 byte (8 bits) on all platforms. Similarly and
37  *  more importantly, "gint32" can be adjusted to be
38  *  4 bytes (32 bits) on all platforms.
39  */
40
41 typedef char   gchar;
42 typedef short  gshort;
43 typedef long   glong;
44 typedef int    gint;
45 typedef gint   gboolean;
46 typedef gchar* gstring;
47
48 typedef unsigned char   guchar;
49 typedef unsigned short  gushort;
50 typedef unsigned long   gulong;
51 typedef unsigned int    guint;
52
53 typedef float   gfloat;
54 typedef double  gdouble;
55
56 /* HAVE_LONG_DOUBLE doesn't work correctly on all platforms.
57  * Since gldouble isn't used anywhere, just disable it for now */
58
59 #if 0
60 #ifdef HAVE_LONG_DOUBLE
61 typedef long double gldouble;
62 #else /* HAVE_LONG_DOUBLE */
63 typedef double gldouble;
64 #endif /* HAVE_LONG_DOUBLE */
65 #endif /* 0 */
66
67 typedef void* gpointer;
68 typedef const void *gconstpointer;
69
70 typedef gint            (*GCompareFunc)         (gconstpointer  a,
71                                                  gconstpointer  b);
72 typedef void            (*GDestroyNotify)       (gpointer       data);
73 typedef void            (*GFunc)                (gpointer       data,
74                                                  gpointer       user_data);
75 typedef guint           (*GHashFunc)            (gconstpointer  key);
76 typedef void            (*GHFunc)               (gpointer       key,
77                                                  gpointer       value,
78                                                  gpointer       user_data);
79 typedef void            (*GFreeFunc)            (gpointer       data);
80
81 /* Define some mathematical constants that aren't available
82  * symbolically in some strict ISO C implementations.
83  */
84 #define G_E     2.7182818284590452354E0
85 #define G_LN2   6.9314718055994530942E-1
86 #define G_LN10  2.3025850929940456840E0
87 #define G_PI    3.14159265358979323846E0
88 #define G_PI_2  1.57079632679489661923E0
89 #define G_PI_4  0.78539816339744830962E0
90 #define G_SQRT2 1.4142135623730950488E0
91
92 /* Portable endian checks and conversions
93  *
94  * glibconfig.h defines G_BYTE_ORDER which expands to one of
95  * the below macros.
96  */
97 #define G_LITTLE_ENDIAN 1234
98 #define G_BIG_ENDIAN    4321
99 #define G_PDP_ENDIAN    3412            /* unused, need specific PDP check */   
100
101
102 /* Basic bit swapping functions
103  */
104 #define GUINT16_SWAP_LE_BE_CONSTANT(val)        ((guint16) ( \
105     (((guint16) (val) & (guint16) 0x00ffU) << 8) | \
106     (((guint16) (val) & (guint16) 0xff00U) >> 8)))
107 #define GUINT32_SWAP_LE_BE_CONSTANT(val)        ((guint32) ( \
108     (((guint32) (val) & (guint32) 0x000000ffU) << 24) | \
109     (((guint32) (val) & (guint32) 0x0000ff00U) <<  8) | \
110     (((guint32) (val) & (guint32) 0x00ff0000U) >>  8) | \
111     (((guint32) (val) & (guint32) 0xff000000U) >> 24)))
112
113 /* Intel specific stuff for speed
114  */
115 #if defined (__i386__) && defined (__GNUC__) && __GNUC__ >= 2
116 #  define GUINT16_SWAP_LE_BE_X86(val) \
117      (__extension__                                     \
118       ({ register guint16 __v;                          \
119          if (__builtin_constant_p (val))                \
120            __v = GUINT16_SWAP_LE_BE_CONSTANT (val);     \
121          else                                           \
122            __asm__ __const__ ("rorw $8, %w0"            \
123                               : "=r" (__v)              \
124                               : "0" ((guint16) (val))); \
125         __v; }))
126 #  define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_X86 (val))
127 #  if !defined(__i486__) && !defined(__i586__) \
128       && !defined(__pentium__) && !defined(__i686__) && !defined(__pentiumpro__)
129 #     define GUINT32_SWAP_LE_BE_X86(val) \
130         (__extension__                                          \
131          ({ register guint32 __v;                               \
132             if (__builtin_constant_p (val))                     \
133               __v = GUINT32_SWAP_LE_BE_CONSTANT (val);          \
134           else                                                  \
135             __asm__ __const__ ("rorw $8, %w0\n\t"               \
136                                "rorl $16, %0\n\t"               \
137                                "rorw $8, %w0"                   \
138                                : "=r" (__v)                     \
139                                : "0" ((guint32) (val)));        \
140         __v; }))
141 #  else /* 486 and higher has bswap */
142 #     define GUINT32_SWAP_LE_BE_X86(val) \
143         (__extension__                                          \
144          ({ register guint32 __v;                               \
145             if (__builtin_constant_p (val))                     \
146               __v = GUINT32_SWAP_LE_BE_CONSTANT (val);          \
147           else                                                  \
148             __asm__ __const__ ("bswap %0"                       \
149                                : "=r" (__v)                     \
150                                : "0" ((guint32) (val)));        \
151         __v; }))
152 #  endif /* processor specific 32-bit stuff */
153 #  define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_X86 (val))
154 #else /* !__i386__ */
155 #  define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_CONSTANT (val))
156 #  define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_CONSTANT (val))
157 #endif /* __i386__ */
158
159 #ifdef G_HAVE_GINT64
160 #  define GUINT64_SWAP_LE_BE_CONSTANT(val)      ((guint64) ( \
161       (((guint64) (val) &                                               \
162         (guint64) G_GINT64_CONSTANT(0x00000000000000ffU)) << 56) |      \
163       (((guint64) (val) &                                               \
164         (guint64) G_GINT64_CONSTANT(0x000000000000ff00U)) << 40) |      \
165       (((guint64) (val) &                                               \
166         (guint64) G_GINT64_CONSTANT(0x0000000000ff0000U)) << 24) |      \
167       (((guint64) (val) &                                               \
168         (guint64) G_GINT64_CONSTANT(0x00000000ff000000U)) <<  8) |      \
169       (((guint64) (val) &                                               \
170         (guint64) G_GINT64_CONSTANT(0x000000ff00000000U)) >>  8) |      \
171       (((guint64) (val) &                                               \
172         (guint64) G_GINT64_CONSTANT(0x0000ff0000000000U)) >> 24) |      \
173       (((guint64) (val) &                                               \
174         (guint64) G_GINT64_CONSTANT(0x00ff000000000000U)) >> 40) |      \
175       (((guint64) (val) &                                               \
176         (guint64) G_GINT64_CONSTANT(0xff00000000000000U)) >> 56)))
177 #  if defined (__i386__) && defined (__GNUC__) && __GNUC__ >= 2
178 #    define GUINT64_SWAP_LE_BE_X86(val) \
179         (__extension__                                          \
180          ({ union { guint64 __ll;                               \
181                     guint32 __l[2]; } __r;                      \
182             if (__builtin_constant_p (val))                     \
183               __r.__ll = GUINT64_SWAP_LE_BE_CONSTANT (val);     \
184             else                                                \
185               {                                                 \
186                 union { guint64 __ll;                           \
187                         guint32 __l[2]; } __w;                  \
188                 __w.__ll = ((guint64) val);                     \
189                 __r.__l[0] = GUINT32_SWAP_LE_BE (__w.__l[1]);   \
190                 __r.__l[1] = GUINT32_SWAP_LE_BE (__w.__l[0]);   \
191               }                                                 \
192           __r.__ll; }))
193 #    define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_X86 (val))
194 #  else /* !__i386__ */
195 #    define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_CONSTANT(val))
196 #  endif
197 #endif
198
199 #define GUINT16_SWAP_LE_PDP(val)        ((guint16) (val))
200 #define GUINT16_SWAP_BE_PDP(val)        (GUINT16_SWAP_LE_BE (val))
201 #define GUINT32_SWAP_LE_PDP(val)        ((guint32) ( \
202     (((guint32) (val) & (guint32) 0x0000ffffU) << 16) | \
203     (((guint32) (val) & (guint32) 0xffff0000U) >> 16)))
204 #define GUINT32_SWAP_BE_PDP(val)        ((guint32) ( \
205     (((guint32) (val) & (guint32) 0x00ff00ffU) << 8) | \
206     (((guint32) (val) & (guint32) 0xff00ff00U) >> 8)))
207
208 /* The G*_TO_?E() macros are defined in glibconfig.h.
209  * The transformation is symmetric, so the FROM just maps to the TO.
210  */
211 #define GINT16_FROM_LE(val)     (GINT16_TO_LE (val))
212 #define GUINT16_FROM_LE(val)    (GUINT16_TO_LE (val))
213 #define GINT16_FROM_BE(val)     (GINT16_TO_BE (val))
214 #define GUINT16_FROM_BE(val)    (GUINT16_TO_BE (val))
215 #define GINT32_FROM_LE(val)     (GINT32_TO_LE (val))
216 #define GUINT32_FROM_LE(val)    (GUINT32_TO_LE (val))
217 #define GINT32_FROM_BE(val)     (GINT32_TO_BE (val))
218 #define GUINT32_FROM_BE(val)    (GUINT32_TO_BE (val))
219
220 #ifdef G_HAVE_GINT64
221 #define GINT64_FROM_LE(val)     (GINT64_TO_LE (val))
222 #define GUINT64_FROM_LE(val)    (GUINT64_TO_LE (val))
223 #define GINT64_FROM_BE(val)     (GINT64_TO_BE (val))
224 #define GUINT64_FROM_BE(val)    (GUINT64_TO_BE (val))
225 #endif
226
227 #define GLONG_FROM_LE(val)      (GLONG_TO_LE (val))
228 #define GULONG_FROM_LE(val)     (GULONG_TO_LE (val))
229 #define GLONG_FROM_BE(val)      (GLONG_TO_BE (val))
230 #define GULONG_FROM_BE(val)     (GULONG_TO_BE (val))
231
232 #define GINT_FROM_LE(val)       (GINT_TO_LE (val))
233 #define GUINT_FROM_LE(val)      (GUINT_TO_LE (val))
234 #define GINT_FROM_BE(val)       (GINT_TO_BE (val))
235 #define GUINT_FROM_BE(val)      (GUINT_TO_BE (val))
236
237
238 /* Portable versions of host-network order stuff
239  */
240 #define g_ntohl(val) (GUINT32_FROM_BE (val))
241 #define g_ntohs(val) (GUINT16_FROM_BE (val))
242 #define g_htonl(val) (GUINT32_TO_BE (val))
243 #define g_htons(val) (GUINT16_TO_BE (val))
244
245 /* IEEE Standard 754 Single Precision Storage Format (gfloat):
246  *
247  *        31 30           23 22            0
248  * +--------+---------------+---------------+
249  * | s 1bit | e[30:23] 8bit | f[22:0] 23bit |
250  * +--------+---------------+---------------+
251  * B0------------------->B1------->B2-->B3-->
252  *
253  * IEEE Standard 754 Double Precision Storage Format (gdouble):
254  *
255  *        63 62            52 51            32   31            0
256  * +--------+----------------+----------------+ +---------------+
257  * | s 1bit | e[62:52] 11bit | f[51:32] 20bit | | f[31:0] 32bit |
258  * +--------+----------------+----------------+ +---------------+
259  * B0--------------->B1---------->B2--->B3---->  B4->B5->B6->B7->
260  */
261 /* subtract from biased_exponent to form base2 exponent (normal numbers) */
262 typedef union  _GDoubleIEEE754  GDoubleIEEE754;
263 typedef union  _GFloatIEEE754   GFloatIEEE754;
264 #define G_IEEE754_FLOAT_BIAS    (127)
265 #define G_IEEE754_DOUBLE_BIAS   (1023)
266 /* multiply with base2 exponent to get base10 exponent (nomal numbers) */
267 #define G_LOG_2_BASE_10         (0.30102999566398119521)
268 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
269 union _GFloatIEEE754
270 {
271   gfloat v_float;
272   struct {
273     guint mantissa : 23;
274     guint biased_exponent : 8;
275     guint sign : 1;
276   } mpn;
277 };
278 union _GDoubleIEEE754
279 {
280   gdouble v_double;
281   struct {
282     guint mantissa_low : 32;
283     guint mantissa_high : 20;
284     guint biased_exponent : 11;
285     guint sign : 1;
286   } mpn;
287 };
288 #elif G_BYTE_ORDER == G_BIG_ENDIAN
289 union _GFloatIEEE754
290 {
291   gfloat v_float;
292   struct {
293     guint sign : 1;
294     guint biased_exponent : 8;
295     guint mantissa : 23;
296   } mpn;
297 };
298 union _GDoubleIEEE754
299 {
300   gdouble v_double;
301   struct {
302     guint sign : 1;
303     guint biased_exponent : 11;
304     guint mantissa_high : 20;
305     guint mantissa_low : 32;
306   } mpn;
307 };
308 #else /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
309 #error unknown ENDIAN type
310 #endif /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
311
312 G_END_DECLS
313
314 #endif /* __G_TYPES_H__ */
315