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);
375 G_LOCK_DECLARE_STATIC (g_utils_global);
377 static gchar *g_tmp_dir = NULL;
378 static gchar *g_user_name = NULL;
379 static gchar *g_real_name = NULL;
380 static gchar *g_home_dir = NULL;
382 /* HOLDS: g_utils_global_lock */
384 g_get_any_init (void)
388 g_tmp_dir = g_strdup (g_getenv ("TMPDIR"));
390 g_tmp_dir = g_strdup (g_getenv ("TMP"));
392 g_tmp_dir = g_strdup (g_getenv ("TEMP"));
398 g_tmp_dir = g_strdup (P_tmpdir);
399 k = strlen (g_tmp_dir);
400 if (g_tmp_dir[k-1] == G_DIR_SEPARATOR)
401 g_tmp_dir[k-1] = '\0';
408 g_tmp_dir = g_strdup ("/tmp");
409 #else /* NATIVE_WIN32 */
410 g_tmp_dir = g_strdup ("C:\\");
411 #endif /* NATIVE_WIN32 */
415 /* The official way to specify a home directory on NT is
416 * the HOMEDRIVE and HOMEPATH environment variables.
418 * This is inside #ifdef NATIVE_WIN32 because with the cygwin dll,
419 * HOME should be a POSIX style pathname.
422 if (getenv ("HOMEDRIVE") != NULL && getenv ("HOMEPATH") != NULL)
424 gchar *homedrive, *homepath;
426 homedrive = g_strdup (g_getenv ("HOMEDRIVE"));
427 homepath = g_strdup (g_getenv ("HOMEPATH"));
429 g_home_dir = g_strconcat (homedrive, homepath, NULL);
433 #endif /* !NATIVE_WIN32 */
436 g_home_dir = g_strdup (g_getenv ("HOME"));
441 struct passwd *pw = NULL;
442 gpointer buffer = NULL;
444 # ifdef HAVE_GETPWUID_R
446 guint bufsize = 1; // sizeof (struct passwd);
452 buffer = g_malloc (bufsize);
454 # ifdef HAVE_GETPWUID_R_POSIX
455 error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
456 error = error ? errno : 0;
457 # else /* !HAVE_GETPWUID_R_POSIX */
458 pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
460 # endif /* !HAVE_GETPWUID_R_POSIX */
464 while (error == ERANGE);
467 g_warning ("getpwuid_r(): failed due to: %s", g_strerror (error));
469 # else /* !HAVE_GETPWUID_R */
471 # ifdef G_THREADS_ENABLED
472 # warning "the `g_get_(user_name|real_name|home_dir|tmp_dir)'"
473 # warning "functions will not be MT-safe during their first call"
474 # warning "because there is no `getpwuid_r' on your system."
475 # endif /* G_THREADS_ENABLED */
478 pw = getpwuid (getuid ());
481 # endif /* !HAVE_GETPWUID_R */
485 g_user_name = g_strdup (pw->pw_name);
486 g_real_name = g_strdup (pw->pw_gecos);
488 g_home_dir = g_strdup (pw->pw_dir);
493 #else /* !HAVE_PWD_H */
500 if (GetUserName (buffer, &len))
502 g_user_name = g_strdup (buffer);
503 g_real_name = g_strdup (buffer);
506 # else /* !NATIVE_WIN32 */
507 /* why are we forcefully setting g_home_dir to NULL here? */
510 # endif /* !NATIVE_WIN32 */
512 #endif /* !HAVE_PWD_H */
515 g_user_name = g_strdup ("somebody");
517 g_real_name = g_strdup ("Unknown");
522 g_get_user_name (void)
524 G_LOCK (g_utils_global);
527 G_UNLOCK (g_utils_global);
533 g_get_real_name (void)
535 G_LOCK (g_utils_global);
538 G_UNLOCK (g_utils_global);
543 /* Return the home directory of the user. If there is a HOME
544 * environment variable, its value is returned, otherwise use some
545 * system-dependent way of finding it out. If no home directory can be
546 * deduced, return NULL.
550 g_get_home_dir (void)
552 G_LOCK (g_utils_global);
555 G_UNLOCK (g_utils_global);
560 /* Return a directory to be used to store temporary files. This is the
561 * value of the TMPDIR, TMP or TEMP environment variables (they are
562 * checked in that order). If none of those exist, use P_tmpdir from
563 * stdio.h. If that isn't defined, return "/tmp" on POSIXly systems,
564 * and C:\ on Windows.
570 G_LOCK (g_utils_global);
573 G_UNLOCK (g_utils_global);
578 static gchar *g_prgname = NULL;
585 G_LOCK (g_utils_global);
587 G_UNLOCK (g_utils_global);
593 g_set_prgname (const gchar *prgname)
597 G_LOCK (g_utils_global);
599 g_prgname = g_strdup (prgname);
601 G_UNLOCK (g_utils_global);
605 g_direct_hash (gconstpointer v)
607 return GPOINTER_TO_UINT (v);
611 g_direct_equal (gconstpointer v1,
614 return GPOINTER_TO_UINT (v1) == GPOINTER_TO_UINT (v2);
618 g_int_equal (gconstpointer v1,
621 return *((const gint*) v1) == *((const gint*) v2);
625 g_int_hash (gconstpointer v)
627 return *(const gint*) v;
630 #if 0 /* Old IO Channels */
633 g_iochannel_new (gint fd)
635 GIOChannel *channel = g_new (GIOChannel, 1);
641 channel->peer_fd = 0;
643 channel->need_wakeups = 0;
644 #endif /* NATIVE_WIN32 */
650 g_iochannel_free (GIOChannel *channel)
652 g_return_if_fail (channel != NULL);
658 g_iochannel_close_and_free (GIOChannel *channel)
660 g_return_if_fail (channel != NULL);
664 g_iochannel_free (channel);
667 #undef g_iochannel_wakeup_peer
670 g_iochannel_wakeup_peer (GIOChannel *channel)
673 static guint message = 0;
676 g_return_if_fail (channel != NULL);
680 message = RegisterWindowMessage ("gdk-pipe-readable");
683 g_print ("g_iochannel_wakeup_peer: calling PostThreadMessage (%#x, %d, %d, %d)\n",
684 channel->peer, message, channel->peer_fd, channel->offset);
686 PostThreadMessage (channel->peer, message,
687 channel->peer_fd, channel->offset);
688 #endif /* NATIVE_WIN32 */
691 #endif /* Old IO Channels */
697 gwin_ftruncate (gint fd,
703 g_return_val_if_fail (fd >= 0, -1);
705 hfile = (HANDLE) _get_osfhandle (fd);
706 curpos = SetFilePointer (hfile, 0, NULL, FILE_CURRENT);
707 if (curpos == 0xFFFFFFFF
708 || SetFilePointer (hfile, size, NULL, FILE_BEGIN) == 0xFFFFFFFF
709 || !SetEndOfFile (hfile))
711 gint error = GetLastError ();
715 case ERROR_INVALID_HANDLE:
730 gwin_opendir (const char *dirname)
736 g_return_val_if_fail (dirname != NULL, NULL);
738 result = g_new0 (DIR, 1);
739 result->find_file_data = g_new0 (WIN32_FIND_DATA, 1);
740 result->dir_name = g_strdup (dirname);
742 k = strlen (result->dir_name);
743 if (k && result->dir_name[k - 1] == '\\')
745 result->dir_name[k - 1] = '\0';
748 mask = g_strdup_printf ("%s\\*", result->dir_name);
750 result->find_file_handle = (guint) FindFirstFile (mask,
751 (LPWIN32_FIND_DATA) result->find_file_data);
754 if (result->find_file_handle == (guint) INVALID_HANDLE_VALUE)
756 int error = GetLastError ();
758 g_free (result->dir_name);
759 g_free (result->find_file_data);
768 result->just_opened = TRUE;
774 gwin_readdir (DIR *dir)
776 static struct dirent result;
778 g_return_val_if_fail (dir != NULL, NULL);
780 if (dir->just_opened)
781 dir->just_opened = FALSE;
784 if (!FindNextFile ((HANDLE) dir->find_file_handle,
785 (LPWIN32_FIND_DATA) dir->find_file_data))
787 int error = GetLastError ();
791 case ERROR_NO_MORE_FILES:
799 strcpy (result.d_name, g_basename (((LPWIN32_FIND_DATA) dir->find_file_data)->cFileName));
805 gwin_rewinddir (DIR *dir)
809 g_return_if_fail (dir != NULL);
811 if (!FindClose ((HANDLE) dir->find_file_handle))
812 g_warning ("gwin_rewinddir(): FindClose() failed\n");
814 mask = g_strdup_printf ("%s\\*", dir->dir_name);
815 dir->find_file_handle = (guint) FindFirstFile (mask,
816 (LPWIN32_FIND_DATA) dir->find_file_data);
819 if (dir->find_file_handle == (guint) INVALID_HANDLE_VALUE)
821 int error = GetLastError ();
830 dir->just_opened = TRUE;
834 gwin_closedir (DIR *dir)
836 g_return_val_if_fail (dir != NULL, -1);
838 if (!FindClose ((HANDLE) dir->find_file_handle))
840 int error = GetLastError ();
845 errno = EIO; return -1;
849 g_free (dir->dir_name);
850 g_free (dir->find_file_data);
856 #endif /* _MSC_VER */
858 #endif /* NATIVE_WIN32 */