2 * Copyright © 2011 Canonical Limited
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.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful, but
10 * 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.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Author: Ryan Lortie <desrt@desrt.ca>
22 #include "glib-init.h"
24 #include "glib-private.h"
26 #include "gutils.h" /* for GDebugKey */
27 #include "gconstructor.h"
28 #include "gmem.h" /* for g_mem_gc_friendly */
35 /* This seems as good a place as any to make static assertions about platform
36 * assumptions we make throughout GLib. */
38 /* We do not support 36-bit bytes or other historical curiosities. */
39 G_STATIC_ASSERT (CHAR_BIT
== 8);
41 /* We assume that data pointers are the same size as function pointers... */
42 G_STATIC_ASSERT (sizeof (gpointer
) == sizeof (GFunc
));
43 G_STATIC_ASSERT (_g_alignof (gpointer
) == _g_alignof (GFunc
));
44 /* ... and that all function pointers are the same size. */
45 G_STATIC_ASSERT (sizeof (GFunc
) == sizeof (GCompareDataFunc
));
46 G_STATIC_ASSERT (_g_alignof (GFunc
) == _g_alignof (GCompareDataFunc
));
48 /* We assume that "small" enums (those where all values fit in INT32_MIN
49 * to INT32_MAX) are exactly int-sized. In particular, we assume that if
50 * an enum has no members that exceed the range of char/short, the
51 * compiler will make it int-sized anyway, so adding a member later that
52 * *does* exceed the range of char/short is not an ABI break. */
61 TEST_INT32_MIN
= G_MININT32
,
62 TEST_INT32_MAX
= G_MAXINT32
64 G_STATIC_ASSERT (sizeof (TestChar
) == sizeof (int));
65 G_STATIC_ASSERT (sizeof (TestShort
) == sizeof (int));
66 G_STATIC_ASSERT (sizeof (TestInt
) == sizeof (int));
67 G_STATIC_ASSERT (_g_alignof (TestChar
) == _g_alignof (int));
68 G_STATIC_ASSERT (_g_alignof (TestShort
) == _g_alignof (int));
69 G_STATIC_ASSERT (_g_alignof (TestInt
) == _g_alignof (int));
74 * This variable is %TRUE if the `G_DEBUG` environment variable
75 * includes the key `gc-friendly`.
77 gboolean g_mem_gc_friendly
= FALSE
;
79 GLogLevelFlags g_log_msg_prefix
= G_LOG_LEVEL_ERROR
| G_LOG_LEVEL_WARNING
|
80 G_LOG_LEVEL_CRITICAL
| G_LOG_LEVEL_DEBUG
;
81 GLogLevelFlags g_log_always_fatal
= G_LOG_FATAL_MASK
;
84 debug_key_matches (const gchar
*key
,
88 /* may not call GLib functions: see note in g_parse_debug_string() */
89 for (; length
; length
--, key
++, token
++)
91 char k
= (*key
== '_') ? '-' : tolower (*key
);
92 char t
= (*token
== '_') ? '-' : tolower (*token
);
101 /* The GVariant documentation indirectly says that int is at least 32 bits
102 * (by saying that b, y, n, q, i, u, h are promoted to int). On any
103 * reasonable platform, int is in fact *exactly* 32 bits long, because
104 * otherwise, {signed char, short, int} wouldn't be sufficient to provide
105 * {int8_t, int16_t, int32_t}. */
106 G_STATIC_ASSERT (sizeof (int) == sizeof (gint32
));
109 * g_parse_debug_string:
110 * @string: (nullable): a list of debug options separated by colons, spaces, or
112 * @keys: (array length=nkeys): pointer to an array of #GDebugKey which associate
113 * strings with bit flags.
114 * @nkeys: the number of #GDebugKeys in the array.
116 * Parses a string containing debugging options
117 * into a %guint containing bit flags. This is used
118 * within GDK and GTK+ to parse the debug options passed on the
119 * command line or through environment variables.
121 * If @string is equal to "all", all flags are set. Any flags
122 * specified along with "all" in @string are inverted; thus,
123 * "all,foo,bar" or "foo,bar,all" sets all flags except those
124 * corresponding to "foo" and "bar".
126 * If @string is equal to "help", all the available keys in @keys
127 * are printed out to standard error.
129 * Returns: the combined set of bit flags.
132 g_parse_debug_string (const gchar
*string
,
133 const GDebugKey
*keys
,
142 /* this function is used during the initialisation of gmessages, gmem
143 * and gslice, so it may not do anything that causes memory to be
144 * allocated or risks messages being emitted.
146 * this means, more or less, that this code may not call anything
150 if (!strcasecmp (string
, "help"))
152 /* using stdio directly for the reason stated above */
153 fprintf (stderr
, "Supported debug values:");
154 for (i
= 0; i
< nkeys
; i
++)
155 fprintf (stderr
, " %s", keys
[i
].key
);
156 fprintf (stderr
, " all help\n");
160 const gchar
*p
= string
;
162 gboolean invert
= FALSE
;
166 q
= strpbrk (p
, ":;, \t");
170 if (debug_key_matches ("all", p
, q
- p
))
176 for (i
= 0; i
< nkeys
; i
++)
177 if (debug_key_matches (keys
[i
].key
, p
, q
- p
))
178 result
|= keys
[i
].value
;
190 for (i
= 0; i
< nkeys
; i
++)
191 all_flags
|= keys
[i
].value
;
193 result
= all_flags
& (~result
);
201 g_parse_debug_envvar (const gchar
*envvar
,
202 const GDebugKey
*keys
,
209 /* "fatal-warnings,fatal-criticals,all,help" is pretty short */
212 if (GetEnvironmentVariable (envvar
, buffer
, 100) < 100)
217 value
= getenv (envvar
);
221 return default_value
;
223 return g_parse_debug_string (value
, keys
, n_keys
);
227 g_messages_prefixed_init (void)
229 const GDebugKey keys
[] = {
230 { "error", G_LOG_LEVEL_ERROR
},
231 { "critical", G_LOG_LEVEL_CRITICAL
},
232 { "warning", G_LOG_LEVEL_WARNING
},
233 { "message", G_LOG_LEVEL_MESSAGE
},
234 { "info", G_LOG_LEVEL_INFO
},
235 { "debug", G_LOG_LEVEL_DEBUG
}
238 g_log_msg_prefix
= g_parse_debug_envvar ("G_MESSAGES_PREFIXED", keys
, G_N_ELEMENTS (keys
), g_log_msg_prefix
);
244 const GDebugKey keys
[] = {
245 { "gc-friendly", 1 },
246 {"fatal-warnings", G_LOG_LEVEL_WARNING
| G_LOG_LEVEL_CRITICAL
},
247 {"fatal-criticals", G_LOG_LEVEL_CRITICAL
}
249 GLogLevelFlags flags
;
251 flags
= g_parse_debug_envvar ("G_DEBUG", keys
, G_N_ELEMENTS (keys
), 0);
253 g_log_always_fatal
|= flags
& G_LOG_LEVEL_MASK
;
255 g_mem_gc_friendly
= flags
& 1;
261 static gboolean glib_inited
;
268 g_messages_prefixed_init ();
273 #if defined (G_OS_WIN32)
275 BOOL WINAPI
DllMain (HINSTANCE hinstDLL
,
282 DllMain (HINSTANCE hinstDLL
,
288 case DLL_PROCESS_ATTACH
:
290 g_clock_win32_init ();
292 g_thread_win32_init ();
295 /* must go after glib_init */
296 g_console_win32_init ();
299 case DLL_THREAD_DETACH
:
301 g_thread_win32_thread_detach ();
305 case DLL_PROCESS_DETACH
:
307 if (lpvReserved
== NULL
)
308 g_thread_win32_process_detach ();
320 #elif defined (G_HAS_CONSTRUCTORS)
322 #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA
323 #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(glib_init_ctor)
325 G_DEFINE_CONSTRUCTOR(glib_init_ctor
)
328 glib_init_ctor (void)
334 # error Your platform/compiler is missing constructor support