1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1998 Peter Mattis, Spencer Kimball and Josh MacDonald
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.
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.
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.
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/.
28 * MT safe for the unix part, FIXME: make the win32 part MT safe as well.
46 #include <sys/types.h>
47 #ifdef HAVE_SYS_PARAM_H
48 #include <sys/param.h>
51 /* implement Glib's inline functions
53 #define G_IMPLEMENT_INLINES 1
58 #define G_PATH_LENGTH MAXPATHLEN
59 #elif defined (PATH_MAX)
60 #define G_PATH_LENGTH PATH_MAX
61 #elif defined (_PC_PATH_MAX)
62 #define G_PATH_LENGTH sysconf(_PC_PATH_MAX)
64 #define G_PATH_LENGTH 2048
67 #ifdef G_PLATFORM_WIN32
68 # define STRICT /* Strict typing, please */
72 #endif /* G_PLATFORM_WIN32 */
82 const guint glib_major_version = GLIB_MAJOR_VERSION;
83 const guint glib_minor_version = GLIB_MINOR_VERSION;
84 const guint glib_micro_version = GLIB_MICRO_VERSION;
85 const guint glib_interface_age = GLIB_INTERFACE_AGE;
86 const guint glib_binary_age = GLIB_BINARY_AGE;
88 #if !defined (HAVE_MEMMOVE) && !defined (HAVE_WORKING_BCOPY)
90 g_memmove (gpointer dest, gconstpointer src, gulong len)
92 gchar* destptr = dest;
93 const gchar* srcptr = src;
94 if (src + len < dest || dest + len < src)
96 bcopy (src, dest, len);
102 *(destptr++) = *(srcptr++);
109 *(--destptr) = *(--srcptr);
112 #endif /* !HAVE_MEMMOVE && !HAVE_WORKING_BCOPY */
115 g_atexit (GVoidFunc func)
118 const gchar *error = NULL;
120 /* keep this in sync with glib.h */
122 #ifdef G_NATIVE_ATEXIT
123 result = ATEXIT (func);
125 error = g_strerror (errno);
126 #elif defined (HAVE_ATEXIT)
127 # ifdef NeXT /* @#%@! NeXTStep */
128 result = !atexit ((void (*)(void)) func);
130 error = g_strerror (errno);
132 result = atexit ((void (*)(void)) func);
134 error = g_strerror (errno);
136 #elif defined (HAVE_ON_EXIT)
137 result = on_exit ((void (*)(int, void *)) func, NULL);
139 error = g_strerror (errno);
142 error = "no implementation";
143 #endif /* G_NATIVE_ATEXIT */
146 g_error ("Could not register atexit() function: %s", error);
149 /* Based on execvp() from GNU Libc.
150 * Some of this code is cut-and-pasted into gspawn.c
154 my_strchrnul (const gchar *str, gchar c)
156 gchar *p = (gchar*)str;
157 while (*p && (*p != c))
165 gchar *inner_find_program_in_path (const gchar *program);
168 g_find_program_in_path (const gchar *program)
170 const gchar *last_dot = strrchr (program, '.');
172 if (last_dot == NULL || strchr (last_dot, '\\') != NULL)
174 const gint program_length = strlen (program);
175 const gchar *pathext = getenv ("PATHEXT");
177 gchar *decorated_program;
181 pathext = ".com;.exe;.bat";
187 p = my_strchrnul (pathext, ';');
189 decorated_program = g_malloc (program_length + (p-pathext) + 1);
190 memcpy (decorated_program, program, program_length);
191 memcpy (decorated_program+program_length, pathext, p-pathext);
192 decorated_program [program_length + (p-pathext)] = '\0';
194 retval = inner_find_program_in_path (decorated_program);
195 g_free (decorated_program);
199 } while (*p++ != '\0');
203 return inner_find_program_in_path (program);
206 #define g_find_program_in_path inner_find_program_in_path
210 * g_find_program_in_path:
211 * @program: a program name
213 * Locates the first executable named @program in the user's path, in the
214 * same way that execvp() would locate it. Returns an allocated string
215 * with the absolute path name, or NULL if the program is not found in
216 * the path. If @program is already an absolute path, returns a copy of
217 * @program if @program exists and is executable, and NULL otherwise.
219 * On Windows, if @program does not have a file type suffix, tries to
220 * append the suffixes in the PATHEXT environment variable (if that
221 * doesn't exists, the suffixes .com, .exe, and .bat) in turn, and
222 * then look for the resulting file name in the same way as
223 * CreateProcess() would. This means first in the directory where the
224 * program was loaded from, then in the current directory, then in the
225 * Windows 32-bit system directory, then in the Windows directory, and
226 * finally in the directories in the PATH environment variable. If
227 * the program is found, the return value contains the full name
228 * including the type suffix.
230 * Return value: absolute path, or NULL
233 g_find_program_in_path (const gchar *program)
235 const gchar *path, *p;
236 gchar *name, *freeme;
243 g_return_val_if_fail (program != NULL, NULL);
245 /* If it is an absolute path, or a relative path including subdirectories,
246 * don't look in PATH.
248 if (g_path_is_absolute (program)
249 || strchr (program, G_DIR_SEPARATOR) != NULL)
251 if (g_file_test (program, G_FILE_TEST_IS_EXECUTABLE))
252 return g_strdup (program);
257 path = g_getenv ("PATH");
261 /* There is no `PATH' in the environment. The default
262 * search path in GNU libc is the current directory followed by
263 * the path `confstr' returns for `_CS_PATH'.
266 /* In GLib we put . last, for security, and don't use the
267 * unportable confstr(); UNIX98 does not actually specify
268 * what to search if PATH is unset. POSIX may, dunno.
271 path = "/bin:/usr/bin:.";
276 gchar moddir[MAXPATHLEN], sysdir[MAXPATHLEN], windir[MAXPATHLEN];
278 GetModuleFileName (NULL, moddir, sizeof (moddir));
279 tmp = g_path_get_dirname (moddir);
280 GetSystemDirectory (sysdir, sizeof (sysdir));
281 GetWindowsDirectory (windir, sizeof (windir));
282 path_tmp = g_strconcat (tmp, ";.;", sysdir, ";", windir,
283 (path != NULL ? ";" : NULL),
284 (path != NULL ? path : NULL),
291 len = strlen (program) + 1;
292 pathlen = strlen (path);
293 freeme = name = g_malloc (pathlen + len + 1);
295 /* Copy the file name at the top, including '\0' */
296 memcpy (name + pathlen + 1, program, len);
297 name = name + pathlen;
298 /* And add the slash before the filename */
299 *name = G_DIR_SEPARATOR;
307 p = my_strchrnul (path, G_SEARCHPATH_SEPARATOR);
310 /* Two adjacent colons, or a colon at the beginning or the end
311 * of `PATH' means to search the current directory.
315 startp = memcpy (name - (p - path), path, p - path);
317 if (g_file_test (startp, G_FILE_TEST_IS_EXECUTABLE))
320 ret = g_strdup (startp);
328 while (*p++ != '\0');
339 g_snprintf (gchar *str,
344 #ifdef HAVE_VSNPRINTF
348 g_return_val_if_fail (str != NULL, 0);
349 g_return_val_if_fail (n > 0, 0);
350 g_return_val_if_fail (fmt != NULL, 0);
352 va_start (args, fmt);
353 retval = vsnprintf (str, n, fmt, args);
359 retval = strlen (str);
363 #else /* !HAVE_VSNPRINTF */
367 g_return_val_if_fail (str != NULL, 0);
368 g_return_val_if_fail (n > 0, 0);
369 g_return_val_if_fail (fmt != NULL, 0);
371 va_start (args, fmt);
372 printed = g_strdup_vprintf (fmt, args);
375 strncpy (str, printed, n);
381 #endif /* !HAVE_VSNPRINTF */
385 g_vsnprintf (gchar *str,
390 #ifdef HAVE_VSNPRINTF
393 g_return_val_if_fail (str != NULL, 0);
394 g_return_val_if_fail (n > 0, 0);
395 g_return_val_if_fail (fmt != NULL, 0);
397 retval = vsnprintf (str, n, fmt, args);
402 retval = strlen (str);
406 #else /* !HAVE_VSNPRINTF */
409 g_return_val_if_fail (str != NULL, 0);
410 g_return_val_if_fail (n > 0, 0);
411 g_return_val_if_fail (fmt != NULL, 0);
413 printed = g_strdup_vprintf (fmt, args);
414 strncpy (str, printed, n);
420 #endif /* !HAVE_VSNPRINTF */
424 g_parse_debug_string (const gchar *string,
425 const GDebugKey *keys,
431 g_return_val_if_fail (string != NULL, 0);
433 if (!g_strcasecmp (string, "all"))
435 for (i=0; i<nkeys; i++)
436 result |= keys[i].value;
440 gchar *str = g_strdup (string);
443 gboolean done = FALSE;
456 for (i=0; i<nkeys; i++)
457 if (!g_strcasecmp(keys[i].key, p))
458 result |= keys[i].value;
469 G_CONST_RETURN gchar*
470 g_basename (const gchar *file_name)
472 register gchar *base;
474 g_return_val_if_fail (file_name != NULL, NULL);
476 base = strrchr (file_name, G_DIR_SEPARATOR);
481 if (isalpha (file_name[0]) && file_name[1] == ':')
482 return (gchar*) file_name + 2;
483 #endif /* G_OS_WIN32 */
485 return (gchar*) file_name;
489 g_path_get_basename (const gchar *file_name)
492 register gint last_nonslash;
496 g_return_val_if_fail (file_name != NULL, NULL);
498 if (file_name[0] == '\0')
500 return g_strdup (".");
502 last_nonslash = strlen (file_name) - 1;
504 while (last_nonslash >= 0 && file_name [last_nonslash] == G_DIR_SEPARATOR)
507 if (last_nonslash == -1)
508 /* string only containing slashes */
509 return g_strdup (G_DIR_SEPARATOR_S);
512 if (last_nonslash == 1 && isalpha (file_name[0]) && file_name[1] == ':')
513 /* string only containing slashes and a drive */
514 return g_strdup (G_DIR_SEPARATOR_S);
515 #endif /* G_OS_WIN32 */
517 base = last_nonslash;
519 while (base >=0 && file_name [base] != G_DIR_SEPARATOR)
523 if (base == -1 && isalpha (file_name[0]) && file_name[1] == ':')
525 #endif /* G_OS_WIN32 */
527 len = last_nonslash - base;
528 retval = g_malloc (len + 1);
529 memcpy (retval, file_name + base + 1, len);
535 g_path_is_absolute (const gchar *file_name)
537 g_return_val_if_fail (file_name != NULL, FALSE);
539 if (file_name[0] == G_DIR_SEPARATOR)
543 /* Recognize drive letter on native Windows */
544 if (isalpha (file_name[0]) && file_name[1] == ':' && file_name[2] == G_DIR_SEPARATOR)
546 #endif /* G_OS_WIN32 */
551 G_CONST_RETURN gchar*
552 g_path_skip_root (const gchar *file_name)
554 g_return_val_if_fail (file_name != NULL, NULL);
556 #ifdef G_PLATFORM_WIN32
557 /* Skip \\server\share (Win32) or //server/share (Cygwin) */
558 if (file_name[0] == G_DIR_SEPARATOR &&
559 file_name[1] == G_DIR_SEPARATOR &&
564 if ((p = strchr (file_name + 2, G_DIR_SEPARATOR)) > file_name + 2 &&
569 while (file_name[0] && file_name[0] != G_DIR_SEPARATOR)
572 /* Possibly skip a backslash after the share name */
573 if (file_name[0] == G_DIR_SEPARATOR)
576 return (gchar *)file_name;
581 /* Skip initial slashes */
582 if (file_name[0] == G_DIR_SEPARATOR)
584 while (file_name[0] == G_DIR_SEPARATOR)
586 return (gchar *)file_name;
591 if (isalpha (file_name[0]) && file_name[1] == ':' && file_name[2] == G_DIR_SEPARATOR)
592 return (gchar *)file_name + 3;
599 g_path_get_dirname (const gchar *file_name)
601 register gchar *base;
604 g_return_val_if_fail (file_name != NULL, NULL);
606 base = strrchr (file_name, G_DIR_SEPARATOR);
608 return g_strdup (".");
609 while (base > file_name && *base == G_DIR_SEPARATOR)
611 len = (guint) 1 + base - file_name;
613 base = g_new (gchar, len + 1);
614 g_memmove (base, file_name, len);
621 g_get_current_dir (void)
623 gchar *buffer = NULL;
625 static gulong max_len = 0;
628 max_len = (G_PATH_LENGTH == -1) ? 2048 : G_PATH_LENGTH;
630 /* We don't use getcwd(3) on SUNOS, because, it does a popen("pwd")
631 * and, if that wasn't bad enough, hangs in doing so.
633 #if (defined (sun) && !defined (__SVR4)) || !defined(HAVE_GETCWD)
634 buffer = g_new (gchar, max_len + 1);
636 dir = getwd (buffer);
637 #else /* !sun || !HAVE_GETCWD */
638 while (max_len < G_MAXULONG / 2)
640 buffer = g_new (gchar, max_len + 1);
642 dir = getcwd (buffer, max_len);
644 if (dir || errno != ERANGE)
650 #endif /* !sun || !HAVE_GETCWD */
652 if (!dir || !*buffer)
654 /* hm, should we g_error() out here?
655 * this can happen if e.g. "./" has mode \0000
657 buffer[0] = G_DIR_SEPARATOR;
661 dir = g_strdup (buffer);
667 G_CONST_RETURN gchar*
668 g_getenv (const gchar *variable)
671 g_return_val_if_fail (variable != NULL, NULL);
673 return getenv (variable);
675 G_LOCK_DEFINE_STATIC (getenv);
681 static GArray *environs = NULL;
686 g_return_val_if_fail (variable != NULL, NULL);
691 environs = g_array_new (FALSE, FALSE, sizeof (struct env_struct));
693 /* First we try to find the envinronment variable inside the already
697 for (i = 0; i < environs->len; i++)
699 env = &g_array_index (environs, struct env_struct, i);
700 if (strcmp (env->key, variable) == 0)
702 g_assert (env->value);
708 /* If not found, we ask the system */
710 system_env = getenv (variable);
717 /* On Windows NT, it is relatively typical that environment variables
718 * contain references to other environment variables. Handle that by
719 * calling ExpandEnvironmentStrings.
722 g_array_set_size (environs, environs->len + 1);
724 env = &g_array_index (environs, struct env_struct, environs->len - 1);
726 /* First check how much space we need */
727 length = ExpandEnvironmentStrings (system_env, dummy, 2);
729 /* Then allocate that much, and actualy do the expansion and insert
730 * the new found pair into our buffer
733 env->value = g_malloc (length);
734 env->key = g_strdup (variable);
736 ExpandEnvironmentStrings (system_env, env->value, length);
744 G_LOCK_DEFINE_STATIC (g_utils_global);
746 static gchar *g_tmp_dir = NULL;
747 static gchar *g_user_name = NULL;
748 static gchar *g_real_name = NULL;
749 static gchar *g_home_dir = NULL;
751 /* HOLDS: g_utils_global_lock */
753 g_get_any_init (void)
757 g_tmp_dir = g_strdup (g_getenv ("TMPDIR"));
759 g_tmp_dir = g_strdup (g_getenv ("TMP"));
761 g_tmp_dir = g_strdup (g_getenv ("TEMP"));
767 g_tmp_dir = g_strdup (P_tmpdir);
768 k = strlen (g_tmp_dir);
769 if (g_tmp_dir[k-1] == G_DIR_SEPARATOR)
770 g_tmp_dir[k-1] = '\0';
777 g_tmp_dir = g_strdup ("/tmp");
778 #else /* G_OS_WIN32 */
779 g_tmp_dir = g_strdup ("C:\\");
780 #endif /* G_OS_WIN32 */
784 g_home_dir = g_strdup (g_getenv ("HOME"));
787 /* In case HOME is Unix-style (it happens), convert it to
793 while ((p = strchr (g_home_dir, '/')) != NULL)
799 /* USERPROFILE is probably the closest equivalent to $HOME? */
800 if (getenv ("USERPROFILE") != NULL)
801 g_home_dir = g_strdup (g_getenv ("USERPROFILE"));
806 /* At least at some time, HOMEDRIVE and HOMEPATH were used
807 * to point to the home directory, I think. But on Windows
808 * 2000 HOMEDRIVE seems to be equal to SYSTEMDRIVE, and
809 * HOMEPATH is its root "\"?
811 if (getenv ("HOMEDRIVE") != NULL && getenv ("HOMEPATH") != NULL)
813 gchar *homedrive, *homepath;
815 homedrive = g_strdup (g_getenv ("HOMEDRIVE"));
816 homepath = g_strdup (g_getenv ("HOMEPATH"));
818 g_home_dir = g_strconcat (homedrive, homepath, NULL);
823 #endif /* G_OS_WIN32 */
827 struct passwd *pw = NULL;
828 gpointer buffer = NULL;
830 # if defined (HAVE_POSIX_GETPWUID_R) || defined (HAVE_NONPOSIX_GETPWUID_R)
832 # ifdef _SC_GETPW_R_SIZE_MAX
833 /* This reurns the maximum length */
834 guint bufsize = sysconf (_SC_GETPW_R_SIZE_MAX);
835 # else /* _SC_GETPW_R_SIZE_MAX */
837 # endif /* _SC_GETPW_R_SIZE_MAX */
843 buffer = g_malloc (bufsize);
846 # ifdef HAVE_POSIX_GETPWUID_R
847 error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
848 error = error < 0 ? errno : error;
849 # else /* HAVE_NONPOSIX_GETPWUID_R */
851 error = getpwuid_r (getuid (), &pwd, buffer, bufsize);
852 pw = error == 0 ? &pwd : NULL;
854 pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
855 error = pw ? 0 : errno;
857 # endif /* HAVE_NONPOSIX_GETPWUID_R */
861 /* we bail out prematurely if the user id can't be found
862 * (should be pretty rare case actually), or if the buffer
863 * should be sufficiently big and lookups are still not
866 if (error == 0 || error == ENOENT)
868 g_warning ("getpwuid_r(): failed due to unknown user id (%lu)",
872 if (bufsize > 32 * 1024)
874 g_warning ("getpwuid_r(): failed due to: %s.",
883 # endif /* HAVE_POSIX_GETPWUID_R || HAVE_NONPOSIX_GETPWUID_R */
888 pw = getpwuid (getuid ());
893 g_user_name = g_strdup (pw->pw_name);
894 g_real_name = g_strdup (pw->pw_gecos);
896 g_home_dir = g_strdup (pw->pw_dir);
901 #else /* !HAVE_PWD_H */
908 if (GetUserName ((LPTSTR) buffer, (LPDWORD) &len))
910 g_user_name = g_strdup (buffer);
911 g_real_name = g_strdup (buffer);
914 # endif /* G_OS_WIN32 */
916 #endif /* !HAVE_PWD_H */
919 /* change '\\' in %HOME% to '/' */
920 g_strdelimit (g_home_dir, "\\",'/');
923 g_user_name = g_strdup ("somebody");
925 g_real_name = g_strdup ("Unknown");
930 for (p = g_real_name; *p; p++)
934 p = g_strdup (g_real_name);
935 g_free (g_real_name);
943 G_CONST_RETURN gchar*
944 g_get_user_name (void)
946 G_LOCK (g_utils_global);
949 G_UNLOCK (g_utils_global);
954 G_CONST_RETURN gchar*
955 g_get_real_name (void)
957 G_LOCK (g_utils_global);
960 G_UNLOCK (g_utils_global);
965 /* Return the home directory of the user. If there is a HOME
966 * environment variable, its value is returned, otherwise use some
967 * system-dependent way of finding it out. If no home directory can be
968 * deduced, return NULL.
971 G_CONST_RETURN gchar*
972 g_get_home_dir (void)
974 G_LOCK (g_utils_global);
977 G_UNLOCK (g_utils_global);
982 /* Return a directory to be used to store temporary files. This is the
983 * value of the TMPDIR, TMP or TEMP environment variables (they are
984 * checked in that order). If none of those exist, use P_tmpdir from
985 * stdio.h. If that isn't defined, return "/tmp" on POSIXly systems,
986 * and C:\ on Windows.
989 G_CONST_RETURN gchar*
992 G_LOCK (g_utils_global);
995 G_UNLOCK (g_utils_global);
1000 static gchar *g_prgname = NULL;
1003 g_get_prgname (void)
1007 G_LOCK (g_utils_global);
1009 G_UNLOCK (g_utils_global);
1015 g_set_prgname (const gchar *prgname)
1019 G_LOCK (g_utils_global);
1021 g_prgname = g_strdup (prgname);
1023 G_UNLOCK (g_utils_global);
1027 g_direct_hash (gconstpointer v)
1029 return GPOINTER_TO_UINT (v);
1033 g_direct_equal (gconstpointer v1,
1040 g_int_equal (gconstpointer v1,
1043 return *((const gint*) v1) == *((const gint*) v2);
1047 g_int_hash (gconstpointer v)
1049 return *(const gint*) v;
1055 * Get the codeset for the current locale.
1057 * Return value: a newly allocated string containing the name
1058 * of the codeset. This string must be freed with g_free().
1061 g_get_codeset (void)
1064 char *result = nl_langinfo (CODESET);
1065 return g_strdup (result);
1067 #ifdef G_PLATFORM_WIN32
1068 return g_strdup_printf ("CP%d", GetACP ());
1070 /* FIXME: Do something more intelligent based on setlocale (LC_CTYPE, NULL)
1072 return g_strdup ("ISO-8859-1");
1079 #include <libintl.h>
1082 #ifndef GLIB_LOCALE_DIR
1083 #ifdef G_PLATFORM_WIN32
1085 #define GLIB_LOCALE_DIR \
1086 g_win32_get_package_installation_subdirectory \
1087 (GETTEXT_PACKAGE, g_strdup_printf ("glib-%d.%d.dll", \
1088 GLIB_MAJOR_VERSION, \
1089 GLIB_MINOR_VERSION), \
1092 #endif /* G_PLATFORM_WIN32 */
1093 #endif /* !GLIB_LOCALE_DIR */
1095 G_CONST_RETURN gchar *
1096 _glib_gettext (const gchar *str)
1098 static gboolean _glib_gettext_initialized = FALSE;
1100 if (!_glib_gettext_initialized)
1102 bindtextdomain(GETTEXT_PACKAGE, GLIB_LOCALE_DIR);
1103 _glib_gettext_initialized = TRUE;
1106 return dgettext (GETTEXT_PACKAGE, str);
1109 #endif /* ENABLE_NLS */