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 #ifdef ENABLE_GC_FRIENDLY_DEFAULT
78 gboolean g_mem_gc_friendly
= TRUE
;
80 gboolean g_mem_gc_friendly
= FALSE
;
82 GLogLevelFlags g_log_msg_prefix
= G_LOG_LEVEL_ERROR
| G_LOG_LEVEL_WARNING
|
83 G_LOG_LEVEL_CRITICAL
| G_LOG_LEVEL_DEBUG
;
84 GLogLevelFlags g_log_always_fatal
= G_LOG_FATAL_MASK
;
87 debug_key_matches (const gchar
*key
,
91 /* may not call GLib functions: see note in g_parse_debug_string() */
92 for (; length
; length
--, key
++, token
++)
94 char k
= (*key
== '_') ? '-' : tolower (*key
);
95 char t
= (*token
== '_') ? '-' : tolower (*token
);
104 /* The GVariant documentation indirectly says that int is at least 32 bits
105 * (by saying that b, y, n, q, i, u, h are promoted to int). On any
106 * reasonable platform, int is in fact *exactly* 32 bits long, because
107 * otherwise, {signed char, short, int} wouldn't be sufficient to provide
108 * {int8_t, int16_t, int32_t}. */
109 G_STATIC_ASSERT (sizeof (int) == sizeof (gint32
));
112 * g_parse_debug_string:
113 * @string: (nullable): a list of debug options separated by colons, spaces, or
115 * @keys: (array length=nkeys): pointer to an array of #GDebugKey which associate
116 * strings with bit flags.
117 * @nkeys: the number of #GDebugKeys in the array.
119 * Parses a string containing debugging options
120 * into a %guint containing bit flags. This is used
121 * within GDK and GTK+ to parse the debug options passed on the
122 * command line or through environment variables.
124 * If @string is equal to "all", all flags are set. Any flags
125 * specified along with "all" in @string are inverted; thus,
126 * "all,foo,bar" or "foo,bar,all" sets all flags except those
127 * corresponding to "foo" and "bar".
129 * If @string is equal to "help", all the available keys in @keys
130 * are printed out to standard error.
132 * Returns: the combined set of bit flags.
135 g_parse_debug_string (const gchar
*string
,
136 const GDebugKey
*keys
,
145 /* this function is used during the initialisation of gmessages, gmem
146 * and gslice, so it may not do anything that causes memory to be
147 * allocated or risks messages being emitted.
149 * this means, more or less, that this code may not call anything
153 if (!strcasecmp (string
, "help"))
155 /* using stdio directly for the reason stated above */
156 fprintf (stderr
, "Supported debug values:");
157 for (i
= 0; i
< nkeys
; i
++)
158 fprintf (stderr
, " %s", keys
[i
].key
);
159 fprintf (stderr
, " all help\n");
163 const gchar
*p
= string
;
165 gboolean invert
= FALSE
;
169 q
= strpbrk (p
, ":;, \t");
173 if (debug_key_matches ("all", p
, q
- p
))
179 for (i
= 0; i
< nkeys
; i
++)
180 if (debug_key_matches (keys
[i
].key
, p
, q
- p
))
181 result
|= keys
[i
].value
;
193 for (i
= 0; i
< nkeys
; i
++)
194 all_flags
|= keys
[i
].value
;
196 result
= all_flags
& (~result
);
204 g_parse_debug_envvar (const gchar
*envvar
,
205 const GDebugKey
*keys
,
212 /* "fatal-warnings,fatal-criticals,all,help" is pretty short */
215 if (GetEnvironmentVariable (envvar
, buffer
, 100) < 100)
220 value
= getenv (envvar
);
224 return default_value
;
226 return g_parse_debug_string (value
, keys
, n_keys
);
230 g_messages_prefixed_init (void)
232 const GDebugKey keys
[] = {
233 { "error", G_LOG_LEVEL_ERROR
},
234 { "critical", G_LOG_LEVEL_CRITICAL
},
235 { "warning", G_LOG_LEVEL_WARNING
},
236 { "message", G_LOG_LEVEL_MESSAGE
},
237 { "info", G_LOG_LEVEL_INFO
},
238 { "debug", G_LOG_LEVEL_DEBUG
}
241 g_log_msg_prefix
= g_parse_debug_envvar ("G_MESSAGES_PREFIXED", keys
, G_N_ELEMENTS (keys
), g_log_msg_prefix
);
247 const GDebugKey keys
[] = {
248 { "gc-friendly", 1 },
249 {"fatal-warnings", G_LOG_LEVEL_WARNING
| G_LOG_LEVEL_CRITICAL
},
250 {"fatal-criticals", G_LOG_LEVEL_CRITICAL
}
252 GLogLevelFlags flags
;
254 flags
= g_parse_debug_envvar ("G_DEBUG", keys
, G_N_ELEMENTS (keys
), 0);
256 g_log_always_fatal
|= flags
& G_LOG_LEVEL_MASK
;
258 g_mem_gc_friendly
= flags
& 1;
264 static gboolean glib_inited
;
271 g_messages_prefixed_init ();
276 #if defined (G_OS_WIN32)
278 BOOL WINAPI
DllMain (HINSTANCE hinstDLL
,
285 DllMain (HINSTANCE hinstDLL
,
291 case DLL_PROCESS_ATTACH
:
293 g_clock_win32_init ();
295 g_thread_win32_init ();
300 case DLL_THREAD_DETACH
:
302 g_thread_win32_thread_detach ();
306 case DLL_PROCESS_DETACH
:
308 if (lpvReserved
== NULL
)
309 g_thread_win32_process_detach ();
321 #elif defined (G_HAS_CONSTRUCTORS)
323 #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA
324 #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(glib_init_ctor)
326 G_DEFINE_CONSTRUCTOR(glib_init_ctor
)
329 glib_init_ctor (void)
335 # error Your platform/compiler is missing constructor support