1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
22 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
23 * file for a list of people on the GLib Team. See the ChangeLog
24 * files for a list of changes. These files are distributed with
25 * GLib at ftp://ftp.gtk.org/pub/gtk/.
32 #include <glib/gtypes.h>
37 #if defined(G_OS_WIN32) || defined(__SYMBIAN32__)
39 /* On Win32, the canonical directory separator is the backslash, and
40 * the search path separator is the semicolon. Note that also the
41 * (forward) slash works as directory separator.
43 #define G_DIR_SEPARATOR '\\'
44 #define G_DIR_SEPARATOR_S "\\"
45 #define G_IS_DIR_SEPARATOR(c) ((c) == G_DIR_SEPARATOR || (c) == '/')
46 #define G_SEARCHPATH_SEPARATOR ';'
47 #define G_SEARCHPATH_SEPARATOR_S ";"
49 #else /* !G_OS_WIN32 */
53 #define G_DIR_SEPARATOR '/'
54 #define G_DIR_SEPARATOR_S "/"
55 #define G_IS_DIR_SEPARATOR(c) ((c) == G_DIR_SEPARATOR)
56 #define G_SEARCHPATH_SEPARATOR ':'
57 #define G_SEARCHPATH_SEPARATOR_S ":"
59 #endif /* !G_OS_WIN32 */
61 /* Define G_VA_COPY() to do the right thing for copying va_list variables.
62 * glibconfig.h may have already defined G_VA_COPY as va_copy or __va_copy.
64 #if !defined (G_VA_COPY)
65 # if defined (__GNUC__) && defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32))
66 # define G_VA_COPY(ap1, ap2) (*(ap1) = *(ap2))
67 # elif defined (G_VA_COPY_AS_ARRAY)
68 # define G_VA_COPY(ap1, ap2) g_memmove ((ap1), (ap2), sizeof (va_list))
69 # else /* va_list is a pointer */
70 # define G_VA_COPY(ap1, ap2) ((ap1) = (ap2))
71 # endif /* va_list is a pointer */
72 #endif /* !G_VA_COPY */
74 /* inlining hassle. for compilers that don't allow the `inline' keyword,
75 * mostly because of strict ANSI C compliance or dumbness, we try to fall
76 * back to either `__inline__' or `__inline'.
77 * G_CAN_INLINE is defined in glibconfig.h if the compiler seems to be
78 * actually *capable* to do function inlining, in which case inline
79 * function bodies do make sense. we also define G_INLINE_FUNC to properly
80 * export the function prototypes if no inlining can be performed.
81 * inline function bodies have to be special cased with G_CAN_INLINE and a
82 * .c file specific macro to allow one compiled instance with extern linkage
83 * of the functions by defining G_IMPLEMENT_INLINES and the .c file macro.
85 #if defined (G_HAVE_INLINE) && defined (__GNUC__) && defined (__STRICT_ANSI__)
87 # define inline __inline__
88 #elif !defined (G_HAVE_INLINE)
90 # if defined (G_HAVE___INLINE__)
91 # define inline __inline__
92 # elif defined (G_HAVE___INLINE)
93 # define inline __inline
94 # else /* !inline && !__inline__ && !__inline */
95 # define inline /* don't inline, then */
98 #ifdef G_IMPLEMENT_INLINES
99 # define G_INLINE_FUNC
101 #elif defined (__GNUC__)
102 # ifdef __SYMBIAN32__
103 # define G_INLINE_FUNC extern __inline
105 # define G_INLINE_FUNC extern inline
107 #elif defined (G_CAN_INLINE)
108 # ifdef __SYMBIAN32__
109 # define G_INLINE_FUNC static __inline
111 # define G_INLINE_FUNC static inline
113 #else /* can't inline */
114 # define G_INLINE_FUNC
115 #endif /* !G_INLINE_FUNC */
117 /* Retrive static string info
120 #define g_get_user_name g_get_user_name_utf8
121 #define g_get_real_name g_get_real_name_utf8
122 #define g_get_home_dir g_get_home_dir_utf8
123 #define g_get_tmp_dir g_get_tmp_dir_utf8
126 IMPORT_C G_CONST_RETURN gchar* g_get_user_name (void);
127 IMPORT_C G_CONST_RETURN gchar* g_get_real_name (void);
128 IMPORT_C G_CONST_RETURN gchar* g_get_home_dir (void);
129 IMPORT_C G_CONST_RETURN gchar* g_get_tmp_dir (void);
130 IMPORT_C G_CONST_RETURN gchar* g_get_host_name (void);
131 IMPORT_C gchar* g_get_prgname (void);
132 IMPORT_C void g_set_prgname (const gchar *prgname);
133 IMPORT_C G_CONST_RETURN gchar* g_get_application_name (void);
134 IMPORT_C void g_set_application_name (const gchar *application_name);
136 IMPORT_C G_CONST_RETURN gchar* g_get_user_data_dir (void);
137 IMPORT_C G_CONST_RETURN gchar* g_get_user_config_dir (void);
138 IMPORT_C G_CONST_RETURN gchar* g_get_user_cache_dir (void);
139 IMPORT_C G_CONST_RETURN gchar* G_CONST_RETURN * g_get_system_data_dirs (void);
142 G_CONST_RETURN gchar* G_CONST_RETURN * g_win32_get_system_data_dirs_for_module (gconstpointer address);
145 #if defined (G_OS_WIN32) && defined (G_CAN_INLINE) && !defined (__cplusplus)
146 static inline G_CONST_RETURN gchar * G_CONST_RETURN *
147 g_win32_get_system_data_dirs (void)
149 return g_win32_get_system_data_dirs_for_module ((gconstpointer) &g_win32_get_system_data_dirs);
151 #define g_get_system_data_dirs g_win32_get_system_data_dirs
154 IMPORT_C G_CONST_RETURN gchar* G_CONST_RETURN * g_get_system_config_dirs (void);
156 IMPORT_C G_CONST_RETURN gchar* G_CONST_RETURN * g_get_language_names (void);
158 typedef struct _GDebugKey GDebugKey;
165 /* Miscellaneous utility functions
167 IMPORT_C guint g_parse_debug_string (const gchar *string,
168 const GDebugKey *keys,
171 IMPORT_C gint g_snprintf (gchar *string,
174 ...) G_GNUC_PRINTF (3, 4);
175 IMPORT_C gint g_vsnprintf (gchar *string,
180 /* Check if a file name is an absolute path */
181 IMPORT_C gboolean g_path_is_absolute (const gchar *file_name);
183 /* In case of absolute paths, skip the root part */
184 IMPORT_C G_CONST_RETURN gchar* g_path_skip_root (const gchar *file_name);
186 #ifndef G_DISABLE_DEPRECATED
188 /* These two functions are deprecated and will be removed in the next
189 * major release of GLib. Use g_path_get_dirname/g_path_get_basename
190 * instead. Whatch out! The string returned by g_path_get_basename
191 * must be g_freed, while the string returned by g_basename must not.*/
192 IMPORT_C G_CONST_RETURN gchar* g_basename (const gchar *file_name);
193 #define g_dirname g_path_get_dirname
195 #endif /* G_DISABLE_DEPRECATED */
198 #define g_get_current_dir g_get_current_dir_utf8
201 /* The returned strings are newly allocated with g_malloc() */
202 IMPORT_C gchar* g_get_current_dir (void);
203 IMPORT_C gchar* g_path_get_basename (const gchar *file_name) G_GNUC_MALLOC;
204 IMPORT_C gchar* g_path_get_dirname (const gchar *file_name) G_GNUC_MALLOC;
206 /* Set the pointer at the specified location to NULL */
207 IMPORT_C void g_nullify_pointer (gpointer *nullify_location);
209 /* return the environment string for the variable. The returned memory
210 * must not be freed. */
212 #define g_getenv g_getenv_utf8
213 #define g_setenv g_setenv_utf8
214 #define g_unsetenv g_unsetenv_utf8
215 #define g_find_program_in_path g_find_program_in_path_utf8
218 IMPORT_C G_CONST_RETURN gchar* g_getenv (const gchar *variable);
219 IMPORT_C gboolean g_setenv (const gchar *variable,
222 IMPORT_C void g_unsetenv (const gchar *variable);
223 IMPORT_C gchar** g_listenv (void);
224 const gchar* _g_getenv_nomalloc (const gchar *variable,
227 /* we try to provide a usefull equivalent for ATEXIT if it is
228 * not defined, but use is actually abandoned. people should
229 * use g_atexit() instead.
231 typedef void (*GVoidFunc) (void);
233 # define ATEXIT(proc) g_ATEXIT(proc)
235 # define G_NATIVE_ATEXIT
237 /* we use a GLib function as a replacement for ATEXIT, so
238 * the programmer is not required to check the return value
239 * (if there is any in the implementation) and doesn't encounter
240 * missing include files.
242 IMPORT_C void g_atexit (GVoidFunc func);
245 /* It's a bad idea to wrap atexit() on Windows. If the GLib DLL calls
246 * atexit(), the function will be called when the GLib DLL is detached
247 * from the program, which is not what the caller wants. The caller
248 * wants the function to be called when it *itself* exits (or is
249 * detached, in case the caller, too, is a DLL).
251 int atexit (void (*)(void));
252 #define g_atexit(func) atexit(func)
255 /* Look for an executable in PATH, following execvp() rules */
256 IMPORT_C gchar* g_find_program_in_path (const gchar *program);
260 G_INLINE_FUNC gint g_bit_nth_lsf (gulong mask,
262 G_INLINE_FUNC gint g_bit_nth_msf (gulong mask,
264 G_INLINE_FUNC guint g_bit_storage (gulong number);
267 * elements need to be >= sizeof (gpointer)
269 typedef struct _GTrashStack GTrashStack;
275 G_INLINE_FUNC void g_trash_stack_push (GTrashStack **stack_p,
277 G_INLINE_FUNC gpointer g_trash_stack_pop (GTrashStack **stack_p);
278 G_INLINE_FUNC gpointer g_trash_stack_peek (GTrashStack **stack_p);
279 G_INLINE_FUNC guint g_trash_stack_height (GTrashStack **stack_p);
281 /* inline function implementations
283 #if defined (G_CAN_INLINE) || defined (__G_UTILS_C__)
285 g_bit_nth_lsf (gulong mask,
291 if (mask & (1UL << nth_bit))
294 while (nth_bit < ((GLIB_SIZEOF_LONG * 8) - 1));
298 g_bit_nth_msf (gulong mask,
302 nth_bit = GLIB_SIZEOF_LONG * 8;
306 if (mask & (1UL << nth_bit))
313 g_bit_storage (gulong number)
315 register guint n_bits = 0;
326 g_trash_stack_push (GTrashStack **stack_p,
329 GTrashStack *data = (GTrashStack *) data_p;
331 data->next = *stack_p;
334 G_INLINE_FUNC gpointer
335 g_trash_stack_pop (GTrashStack **stack_p)
342 *stack_p = data->next;
343 /* NULLify private pointer here, most platforms store NULL as
351 G_INLINE_FUNC gpointer
352 g_trash_stack_peek (GTrashStack **stack_p)
361 g_trash_stack_height (GTrashStack **stack_p)
366 for (data = *stack_p; data; data = data->next)
371 #endif /* G_CAN_INLINE || __G_UTILS_C__ */
374 * we prefix variable declarations so they can
375 * properly get exported in windows dlls.
377 GLIB_VAR const guint glib_major_version;
378 GLIB_VAR const guint glib_minor_version;
379 GLIB_VAR const guint glib_micro_version;
380 GLIB_VAR const guint glib_interface_age;
381 GLIB_VAR const guint glib_binary_age;
384 IMPORT_C const guint *_glib_major_version();
385 IMPORT_C const guint *_glib_minor_version();
386 IMPORT_C const guint *_glib_micro_version();
387 IMPORT_C const guint *_glib_interface_age();
388 IMPORT_C const guint *_glib_binary_age();
389 #endif /* __SYMBIAN32__ */
391 IMPORT_C const gchar * glib_check_version (guint required_major,
392 guint required_minor,
393 guint required_micro);
395 #define GLIB_CHECK_VERSION(major,minor,micro) \
396 (GLIB_MAJOR_VERSION > (major) || \
397 (GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION > (minor)) || \
398 (GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION == (minor) && \
399 GLIB_MICRO_VERSION >= (micro)))
404 * On Windows, this macro defines a DllMain function that stores the
405 * actual DLL name that the code being compiled will be included in.
406 * STATIC should be empty or 'static'. DLL_NAME is the name of the
407 * (pointer to the) char array where the DLL name will be stored. If
408 * this is used, you must also include <windows.h>. If you need a more complex
409 * DLL entry point function, you cannot use this.
411 * On non-Windows platforms, expands to nothing.
414 #ifndef G_PLATFORM_WIN32
415 # define G_WIN32_DLLMAIN_FOR_DLL_NAME(static, dll_name)
417 # define G_WIN32_DLLMAIN_FOR_DLL_NAME(static, dll_name) \
418 static char *dll_name; \
421 DllMain (HINSTANCE hinstDLL, \
423 LPVOID lpvReserved) \
425 wchar_t wcbfr[1000]; \
430 case DLL_PROCESS_ATTACH: \
431 if (GetVersion () < 0x80000000) \
433 GetModuleFileNameW ((HMODULE) hinstDLL, wcbfr, G_N_ELEMENTS (wcbfr)); \
434 tem = g_utf16_to_utf8 (wcbfr, -1, NULL, NULL, NULL); \
435 dll_name = g_path_get_basename (tem); \
440 GetModuleFileNameA ((HMODULE) hinstDLL, cpbfr, G_N_ELEMENTS (cpbfr)); \
441 tem = g_locale_to_utf8 (cpbfr, -1, NULL, NULL, NULL); \
442 dll_name = g_path_get_basename (tem); \
450 #endif /* G_PLATFORM_WIN32 */
452 #endif /* __G_UTILS_H__ */