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 Library 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 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library 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 * MT safe for the unix part, FIXME: make the win32 part MT safe as well.
28 #include "glibconfig.h"
41 #include <sys/types.h>
42 #ifdef HAVE_SYS_PARAM_H
43 #include <sys/param.h>
47 # define STRICT /* Strict typing, please */
54 # endif /* _MSC_VER */
55 #endif /* NATIVE_WIN32 */
57 /* implement Glib's inline functions
59 #define G_INLINE_FUNC extern
60 #define G_CAN_INLINE 1
64 #define G_PATH_LENGTH (MAXPATHLEN + 1)
65 #elif defined (PATH_MAX)
66 #define G_PATH_LENGTH (PATH_MAX + 1)
67 #else /* !MAXPATHLEN */
68 #define G_PATH_LENGTH (2048 + 1)
69 #endif /* !MAXPATHLEN && !PATH_MAX */
71 const guint glib_major_version = GLIB_MAJOR_VERSION;
72 const guint glib_minor_version = GLIB_MINOR_VERSION;
73 const guint glib_micro_version = GLIB_MICRO_VERSION;
74 const guint glib_interface_age = GLIB_INTERFACE_AGE;
75 const guint glib_binary_age = GLIB_BINARY_AGE;
77 #if defined (NATIVE_WIN32) && defined (__LCC__)
79 LibMain (void *hinstDll,
80 unsigned long dwReason,
85 #endif /* NATIVE_WIN32 && __LCC__ */
88 g_atexit (GVoidFunc func)
93 /* keep this in sync with glib.h */
95 #ifdef G_NATIVE_ATEXIT
96 result = ATEXIT (func);
98 error = g_strerror (errno);
99 #elif defined (HAVE_ATEXIT)
100 # ifdef NeXT /* @#%@! NeXTStep */
101 result = !atexit ((void (*)(void)) func);
103 error = g_strerror (errno);
105 result = atexit ((void (*)(void)) func);
107 error = g_strerror (errno);
109 #elif defined (HAVE_ON_EXIT)
110 result = on_exit ((void (*)(int, void *)) func, NULL);
112 error = g_strerror (errno);
115 error = "no implementation";
116 #endif /* G_NATIVE_ATEXIT */
119 g_error ("Could not register atexit() function: %s", error);
123 g_snprintf (gchar *str,
128 #ifdef HAVE_VSNPRINTF
132 va_start (args, fmt);
133 retval = vsnprintf (str, n, fmt, args);
137 #else /* !HAVE_VSNPRINTF */
141 va_start (args, fmt);
142 printed = g_strdup_vprintf (fmt, args);
145 strncpy (str, printed, n);
151 #endif /* !HAVE_VSNPRINTF */
155 g_vsnprintf (gchar *str,
160 #ifdef HAVE_VSNPRINTF
163 retval = vsnprintf (str, n, fmt, args);
166 #else /* !HAVE_VSNPRINTF */
169 printed = g_strdup_vprintf (fmt, args);
170 strncpy (str, printed, n);
176 #endif /* !HAVE_VSNPRINTF */
180 g_parse_debug_string (const gchar *string,
187 g_return_val_if_fail (string != NULL, 0);
189 if (!g_strcasecmp (string, "all"))
191 for (i=0; i<nkeys; i++)
192 result |= keys[i].value;
196 gchar *str = g_strdup (string);
199 gboolean done = FALSE;
212 for (i=0; i<nkeys; i++)
213 if (!g_strcasecmp(keys[i].key, p))
214 result |= keys[i].value;
226 g_basename (const gchar *file_name)
228 register gchar *base;
230 g_return_val_if_fail (file_name != NULL, NULL);
232 base = strrchr (file_name, G_DIR_SEPARATOR);
237 if (isalpha (file_name[0]) && file_name[1] == ':')
238 return (gchar*) file_name + 2;
239 #endif /* NATIVE_WIN32 */
241 return (gchar*) file_name;
245 g_path_is_absolute (const gchar *file_name)
247 g_return_val_if_fail (file_name != NULL, FALSE);
249 if (file_name[0] == G_DIR_SEPARATOR)
253 if (isalpha (file_name[0]) && file_name[1] == ':' && file_name[2] == G_DIR_SEPARATOR)
261 g_path_skip_root (gchar *file_name)
263 g_return_val_if_fail (file_name != NULL, NULL);
265 if (file_name[0] == G_DIR_SEPARATOR)
266 return file_name + 1;
269 if (isalpha (file_name[0]) && file_name[1] == ':' && file_name[2] == G_DIR_SEPARATOR)
270 return file_name + 3;
277 g_dirname (const gchar *file_name)
279 register gchar *base;
282 g_return_val_if_fail (file_name != NULL, NULL);
284 base = strrchr (file_name, G_DIR_SEPARATOR);
286 return g_strdup (".");
287 while (base > file_name && *base == G_DIR_SEPARATOR)
289 len = (guint) 1 + base - file_name;
291 base = g_new (gchar, len + 1);
292 g_memmove (base, file_name, len);
299 g_get_current_dir (void)
304 buffer = g_new (gchar, G_PATH_LENGTH);
307 /* We don't use getcwd(3) on SUNOS, because, it does a popen("pwd")
308 * and, if that wasn't bad enough, hangs in doing so.
310 #if defined (sun) && !defined (__SVR4)
311 dir = getwd (buffer);
313 dir = getcwd (buffer, G_PATH_LENGTH - 1);
316 if (!dir || !*buffer)
318 /* hm, should we g_error() out here?
319 * this can happen if e.g. "./" has mode \0000
321 buffer[0] = G_DIR_SEPARATOR;
325 dir = g_strdup (buffer);
332 g_getenv (const gchar *variable)
335 g_return_val_if_fail (variable != NULL, NULL);
337 return getenv (variable);
341 static gchar *p = NULL;
345 g_return_val_if_fail (variable != NULL, NULL);
347 v = getenv (variable);
351 /* On Windows NT, it is relatively typical that environment variables
352 * contain references to other environment variables. Handle that by
353 * calling ExpandEnvironmentStrings.
356 /* First check how much space we need */
357 k = ExpandEnvironmentStrings (v, dummy, 2);
358 /* Then allocate that much, and actualy do the expansion */
366 p = g_realloc (p, k);
369 ExpandEnvironmentStrings (v, p, k);
374 G_LOCK_DECLARE_STATIC (g_utils_global);
376 static gchar *g_tmp_dir = NULL;
377 static gchar *g_user_name = NULL;
378 static gchar *g_real_name = NULL;
379 static gchar *g_home_dir = NULL;
381 /* HOLDS: g_utils_global_lock */
383 g_get_any_init (void)
387 g_tmp_dir = g_strdup (g_getenv ("TMPDIR"));
389 g_tmp_dir = g_strdup (g_getenv ("TMP"));
391 g_tmp_dir = g_strdup (g_getenv ("TEMP"));
397 g_tmp_dir = g_strdup (P_tmpdir);
398 k = strlen (g_tmp_dir);
399 if (g_tmp_dir[k-1] == G_DIR_SEPARATOR)
400 g_tmp_dir[k-1] = '\0';
406 g_tmp_dir = g_strdup ("/tmp");
407 #else /* NATIVE_WIN32 */
408 g_tmp_dir = g_strdup ("C:\\");
409 #endif /* NATIVE_WIN32 */
413 /* The official way to specify a home directory on NT is
414 * the HOMEDRIVE and HOMEPATH environment variables.
416 * This is inside #ifdef NATIVE_WIN32 because with the cygwin dll,
417 * HOME should be a POSIX style pathname.
420 if (getenv ("HOMEDRIVE") != NULL && getenv ("HOMEPATH") != NULL)
422 gchar *homedrive, *homepath;
424 homedrive = g_strdup (g_getenv ("HOMEDRIVE"));
425 homepath = g_strdup (g_getenv ("HOMEPATH"));
427 g_home_dir = g_strconcat (homedrive, homepath, NULL);
432 g_home_dir = g_strdup (g_getenv ("HOME"));
434 g_home_dir = g_strdup (g_getenv ("HOME"));
439 struct passwd *pw = NULL, pwd;
440 gpointer buffer = NULL;
441 guint bufsize = sizeof (struct passwd);
442 # ifdef HAVE_GETPWUID_R
446 buffer = g_realloc (buffer, bufsize);
447 # ifdef HAVE_GETPWUID_R_POSIX
448 error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
451 # else /* HAVE_GETPWUID_R_POSIX */
452 pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
456 # endif /* HAVE_GETPWUID_R_POSIX */
458 g_error( "Could not read account information: %s",
462 # else /* HAVE_GETPWUID_R */
463 # if defined(G_THREADS_ENABLED) && defined(__GNUC__)
464 # warning "the `g_get_(user_name|real_name|home_dir|tmp_dir)'"
465 # warning "functions will not be MT-safe at their first call"
466 # warning "because there is no `getpwuid_r' on your system."
469 pw = getpwuid (getuid ());
471 # endif /* HAVE_GETPWUID_R */
475 g_user_name = g_strdup (pw->pw_name);
476 g_real_name = g_strdup (pw->pw_gecos);
478 g_home_dir = g_strdup (pw->pw_dir);
482 #else /* !HAVE_PWD_H */
487 g_user_name = g_new (gchar, len);
489 if (!GetUserName (g_user_name, &len))
491 g_free (g_user_name);
492 g_user_name = g_strdup ("somebody");
493 g_real_name = g_strdup ("Unknown");
496 g_real_name = g_strdup (g_user_name);
498 # else /* !NATIVE_WIN32 */
499 g_user_name = g_strdup ("somebody");
500 g_real_name = g_strdup ("Unknown");
502 # endif /* !NATIVE_WIN32 */
503 #endif /* !HAVE_PWD_H */
508 g_get_user_name (void)
510 G_LOCK (g_utils_global);
513 G_UNLOCK (g_utils_global);
519 g_get_real_name (void)
521 G_LOCK (g_utils_global);
524 G_UNLOCK (g_utils_global);
529 /* Return the home directory of the user. If there is a HOME
530 * environment variable, its value is returned, otherwise use some
531 * system-dependent way of finding it out. If no home directory can be
532 * deduced, return NULL.
536 g_get_home_dir (void)
538 G_LOCK (g_utils_global);
541 G_UNLOCK (g_utils_global);
546 /* Return a directory to be used to store temporary files. This is the
547 * value of the TMPDIR, TMP or TEMP environment variables (they are
548 * checked in that order). If none of those exist, use P_tmpdir from
549 * stdio.h. If that isn't defined, return "/tmp" on POSIXly systems,
550 * and C:\ on Windows.
556 G_LOCK (g_utils_global);
559 G_UNLOCK (g_utils_global);
564 static gchar *g_prgname = NULL;
571 G_LOCK (g_utils_global);
573 G_UNLOCK (g_utils_global);
579 g_set_prgname (const gchar *prgname)
583 G_LOCK (g_utils_global);
585 g_prgname = g_strdup (prgname);
587 G_UNLOCK (g_utils_global);
591 g_direct_hash (gconstpointer v)
593 return GPOINTER_TO_UINT (v);
597 g_direct_equal (gconstpointer v1,
600 return GPOINTER_TO_UINT (v1) == GPOINTER_TO_UINT (v2);
604 g_int_equal (gconstpointer v1,
607 return *((const gint*) v1) == *((const gint*) v2);
611 g_int_hash (gconstpointer v)
613 return *(const gint*) v;
616 #if 0 /* Old IO Channels */
619 g_iochannel_new (gint fd)
621 GIOChannel *channel = g_new (GIOChannel, 1);
627 channel->peer_fd = 0;
629 channel->need_wakeups = 0;
630 #endif /* NATIVE_WIN32 */
636 g_iochannel_free (GIOChannel *channel)
638 g_return_if_fail (channel != NULL);
644 g_iochannel_close_and_free (GIOChannel *channel)
646 g_return_if_fail (channel != NULL);
650 g_iochannel_free (channel);
653 #undef g_iochannel_wakeup_peer
656 g_iochannel_wakeup_peer (GIOChannel *channel)
659 static guint message = 0;
662 g_return_if_fail (channel != NULL);
666 message = RegisterWindowMessage ("gdk-pipe-readable");
669 g_print ("g_iochannel_wakeup_peer: calling PostThreadMessage (%#x, %d, %d, %d)\n",
670 channel->peer, message, channel->peer_fd, channel->offset);
672 PostThreadMessage (channel->peer, message,
673 channel->peer_fd, channel->offset);
674 #endif /* NATIVE_WIN32 */
677 #endif /* Old IO Channels */
683 gwin_ftruncate (gint fd,
689 g_return_val_if_fail (fd >= 0, -1);
691 hfile = (HANDLE) _get_osfhandle (fd);
692 curpos = SetFilePointer (hfile, 0, NULL, FILE_CURRENT);
693 if (curpos == 0xFFFFFFFF
694 || SetFilePointer (hfile, size, NULL, FILE_BEGIN) == 0xFFFFFFFF
695 || !SetEndOfFile (hfile))
697 gint error = GetLastError ();
701 case ERROR_INVALID_HANDLE:
716 gwin_opendir (const char *dirname)
722 g_return_val_if_fail (dirname != NULL, NULL);
724 result = g_new0 (DIR, 1);
725 result->find_file_data = g_new0 (WIN32_FIND_DATA, 1);
726 result->dir_name = g_strdup (dirname);
728 k = strlen (result->dir_name);
729 if (k && result->dir_name[k - 1] == '\\')
731 result->dir_name[k - 1] = '\0';
734 mask = g_strdup_printf ("%s\\*", result->dir_name);
736 result->find_file_handle = (guint) FindFirstFile (mask,
737 (LPWIN32_FIND_DATA) result->find_file_data);
740 if (result->find_file_handle == (guint) INVALID_HANDLE_VALUE)
742 int error = GetLastError ();
744 g_free (result->dir_name);
745 g_free (result->find_file_data);
754 result->just_opened = TRUE;
760 gwin_readdir (DIR *dir)
762 static struct dirent result;
764 g_return_val_if_fail (dir != NULL, NULL);
766 if (dir->just_opened)
767 dir->just_opened = FALSE;
770 if (!FindNextFile ((HANDLE) dir->find_file_handle,
771 (LPWIN32_FIND_DATA) dir->find_file_data))
773 int error = GetLastError ();
777 case ERROR_NO_MORE_FILES:
785 strcpy (result.d_name, g_basename (((LPWIN32_FIND_DATA) dir->find_file_data)->cFileName));
791 gwin_rewinddir (DIR *dir)
795 g_return_if_fail (dir != NULL);
797 if (!FindClose ((HANDLE) dir->find_file_handle))
798 g_warning ("gwin_rewinddir(): FindClose() failed\n");
800 mask = g_strdup_printf ("%s\\*", dir->dir_name);
801 dir->find_file_handle = (guint) FindFirstFile (mask,
802 (LPWIN32_FIND_DATA) dir->find_file_data);
805 if (dir->find_file_handle == (guint) INVALID_HANDLE_VALUE)
807 int error = GetLastError ();
816 dir->just_opened = TRUE;
820 gwin_closedir (DIR *dir)
822 g_return_val_if_fail (dir != NULL, -1);
824 if (!FindClose ((HANDLE) dir->find_file_handle))
826 int error = GetLastError ();
831 errno = EIO; return -1;
835 g_free (dir->dir_name);
836 g_free (dir->find_file_data);
842 #endif /* _MSC_VER */
844 #endif /* NATIVE_WIN32 */