Merge remote branch 'gvdb/master'
[platform/upstream/glib.git] / glib / gutils.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1998  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 /*
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/. 
25  */
26
27 /* 
28  * MT safe for the unix part, FIXME: make the win32 part MT safe as well.
29  */
30
31 #include "config.h"
32
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36 #include <stdarg.h>
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <locale.h>
40 #include <string.h>
41 #include <ctype.h>              /* For tolower() */
42 #include <errno.h>
43 #include <sys/types.h>
44 #include <sys/stat.h>
45 #ifdef HAVE_PWD_H
46 #include <pwd.h>
47 #endif
48 #include <sys/types.h>
49 #ifdef HAVE_SYS_PARAM_H
50 #include <sys/param.h>
51 #endif
52 #ifdef HAVE_CRT_EXTERNS_H 
53 #include <crt_externs.h> /* for _NSGetEnviron */
54 #endif
55
56 /* implement gutils's inline functions
57  */
58 #define G_IMPLEMENT_INLINES 1
59 #define __G_UTILS_C__
60 #include "gutils.h"
61
62 #include "gfileutils.h"
63 #include "ghash.h"
64 #include "gslist.h"
65 #include "gprintfint.h"
66 #include "gthread.h"
67 #include "gthreadprivate.h"
68 #include "gtestutils.h"
69 #include "gunicode.h"
70 #include "gstrfuncs.h"
71 #include "glibintl.h"
72
73 #ifdef G_PLATFORM_WIN32
74 #include "garray.h"
75 #include "gconvert.h"
76 #include "gwin32.h"
77 #endif
78
79 #ifdef  MAXPATHLEN
80 #define G_PATH_LENGTH   MAXPATHLEN
81 #elif   defined (PATH_MAX)
82 #define G_PATH_LENGTH   PATH_MAX
83 #elif   defined (_PC_PATH_MAX)
84 #define G_PATH_LENGTH   sysconf(_PC_PATH_MAX)
85 #else   
86 #define G_PATH_LENGTH   2048
87 #endif
88
89 #ifdef G_PLATFORM_WIN32
90 #  define STRICT                /* Strict typing, please */
91 #  include <windows.h>
92 #  undef STRICT
93 #  ifndef GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
94 #    define GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT 2
95 #    define GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS 4
96 #  endif
97 #  include <lmcons.h>           /* For UNLEN */
98 #endif /* G_PLATFORM_WIN32 */
99
100 #ifdef G_OS_WIN32
101 #  include <direct.h>
102 #  include <shlobj.h>
103    /* older SDK (e.g. msvc 5.0) does not have these*/
104 #  ifndef CSIDL_MYMUSIC
105 #    define CSIDL_MYMUSIC 13
106 #  endif
107 #  ifndef CSIDL_MYVIDEO
108 #    define CSIDL_MYVIDEO 14
109 #  endif
110 #  ifndef CSIDL_INTERNET_CACHE
111 #    define CSIDL_INTERNET_CACHE 32
112 #  endif
113 #  ifndef CSIDL_COMMON_APPDATA
114 #    define CSIDL_COMMON_APPDATA 35
115 #  endif
116 #  ifndef CSIDL_MYPICTURES
117 #    define CSIDL_MYPICTURES 0x27
118 #  endif
119 #  ifndef CSIDL_COMMON_DOCUMENTS
120 #    define CSIDL_COMMON_DOCUMENTS 46
121 #  endif
122 #  ifndef CSIDL_PROFILE
123 #    define CSIDL_PROFILE 40
124 #  endif
125 #  include <process.h>
126 #endif
127
128 #ifdef HAVE_CARBON
129 #include <CoreServices/CoreServices.h>
130 #endif
131
132 #ifdef HAVE_CODESET
133 #include <langinfo.h>
134 #endif
135
136 const guint glib_major_version = GLIB_MAJOR_VERSION;
137 const guint glib_minor_version = GLIB_MINOR_VERSION;
138 const guint glib_micro_version = GLIB_MICRO_VERSION;
139 const guint glib_interface_age = GLIB_INTERFACE_AGE;
140 const guint glib_binary_age = GLIB_BINARY_AGE;
141
142 #ifdef G_PLATFORM_WIN32
143
144 static HMODULE glib_dll = NULL;
145
146 #ifdef DLL_EXPORT
147
148 BOOL WINAPI
149 DllMain (HINSTANCE hinstDLL,
150          DWORD     fdwReason,
151          LPVOID    lpvReserved)
152 {
153   if (fdwReason == DLL_PROCESS_ATTACH)
154       glib_dll = hinstDLL;
155
156   return TRUE;
157 }
158
159 #endif
160
161 gchar *
162 _glib_get_dll_directory (void)
163 {
164   gchar *retval;
165   gchar *p;
166   wchar_t wc_fn[MAX_PATH];
167
168 #ifdef DLL_EXPORT
169   if (glib_dll == NULL)
170     return NULL;
171 #endif
172
173   /* This code is different from that in
174    * g_win32_get_package_installation_directory_of_module() in that
175    * here we return the actual folder where the GLib DLL is. We don't
176    * do the check for it being in a "bin" or "lib" subfolder and then
177    * returning the parent of that.
178    *
179    * In a statically built GLib, glib_dll will be NULL and we will
180    * thus look up the application's .exe file's location.
181    */
182   if (!GetModuleFileNameW (glib_dll, wc_fn, MAX_PATH))
183     return NULL;
184
185   retval = g_utf16_to_utf8 (wc_fn, -1, NULL, NULL, NULL);
186
187   p = strrchr (retval, G_DIR_SEPARATOR);
188   if (p == NULL)
189     {
190       /* Wtf? */
191       return NULL;
192     }
193   *p = '\0';
194
195   return retval;
196 }
197
198 #endif
199
200 /**
201  * glib_check_version:
202  * @required_major: the required major version.
203  * @required_minor: the required minor version.
204  * @required_micro: the required micro version.
205  *
206  * Checks that the GLib library in use is compatible with the
207  * given version. Generally you would pass in the constants
208  * #GLIB_MAJOR_VERSION, #GLIB_MINOR_VERSION, #GLIB_MICRO_VERSION
209  * as the three arguments to this function; that produces
210  * a check that the library in use is compatible with
211  * the version of GLib the application or module was compiled
212  * against.
213  *
214  * Compatibility is defined by two things: first the version
215  * of the running library is newer than the version
216  * @required_major.required_minor.@required_micro. Second
217  * the running library must be binary compatible with the
218  * version @required_major.required_minor.@required_micro
219  * (same major version.)
220  *
221  * Return value: %NULL if the GLib library is compatible with the
222  *   given version, or a string describing the version mismatch.
223  *   The returned string is owned by GLib and must not be modified
224  *   or freed.
225  *
226  * Since: 2.6
227  **/
228 const gchar *
229 glib_check_version (guint required_major,
230                     guint required_minor,
231                     guint required_micro)
232 {
233   gint glib_effective_micro = 100 * GLIB_MINOR_VERSION + GLIB_MICRO_VERSION;
234   gint required_effective_micro = 100 * required_minor + required_micro;
235
236   if (required_major > GLIB_MAJOR_VERSION)
237     return "GLib version too old (major mismatch)";
238   if (required_major < GLIB_MAJOR_VERSION)
239     return "GLib version too new (major mismatch)";
240   if (required_effective_micro < glib_effective_micro - GLIB_BINARY_AGE)
241     return "GLib version too new (micro mismatch)";
242   if (required_effective_micro > glib_effective_micro)
243     return "GLib version too old (micro mismatch)";
244   return NULL;
245 }
246
247 #if !defined (HAVE_MEMMOVE) && !defined (HAVE_WORKING_BCOPY)
248 /**
249  * g_memmove: 
250  * @dest: the destination address to copy the bytes to.
251  * @src: the source address to copy the bytes from.
252  * @len: the number of bytes to copy.
253  *
254  * Copies a block of memory @len bytes long, from @src to @dest.
255  * The source and destination areas may overlap.
256  *
257  * In order to use this function, you must include 
258  * <filename>string.h</filename> yourself, because this macro will 
259  * typically simply resolve to memmove() and GLib does not include 
260  * <filename>string.h</filename> for you.
261  */
262 void 
263 g_memmove (gpointer      dest, 
264            gconstpointer src, 
265            gulong        len)
266 {
267   gchar* destptr = dest;
268   const gchar* srcptr = src;
269   if (src + len < dest || dest + len < src)
270     {
271       bcopy (src, dest, len);
272       return;
273     }
274   else if (dest <= src)
275     {
276       while (len--)
277         *(destptr++) = *(srcptr++);
278     }
279   else
280     {
281       destptr += len;
282       srcptr += len;
283       while (len--)
284         *(--destptr) = *(--srcptr);
285     }
286 }
287 #endif /* !HAVE_MEMMOVE && !HAVE_WORKING_BCOPY */
288
289 #ifdef G_OS_WIN32
290 #undef g_atexit
291 #endif
292
293 /**
294  * g_atexit:
295  * @func: the function to call on normal program termination.
296  * 
297  * Specifies a function to be called at normal program termination.
298  *
299  * Since GLib 2.8.2, on Windows g_atexit() actually is a preprocessor
300  * macro that maps to a call to the atexit() function in the C
301  * library. This means that in case the code that calls g_atexit(),
302  * i.e. atexit(), is in a DLL, the function will be called when the
303  * DLL is detached from the program. This typically makes more sense
304  * than that the function is called when the GLib DLL is detached,
305  * which happened earlier when g_atexit() was a function in the GLib
306  * DLL.
307  *
308  * The behaviour of atexit() in the context of dynamically loaded
309  * modules is not formally specified and varies wildly.
310  *
311  * On POSIX systems, calling g_atexit() (or atexit()) in a dynamically
312  * loaded module which is unloaded before the program terminates might
313  * well cause a crash at program exit.
314  *
315  * Some POSIX systems implement atexit() like Windows, and have each
316  * dynamically loaded module maintain an own atexit chain that is
317  * called when the module is unloaded.
318  *
319  * On other POSIX systems, before a dynamically loaded module is
320  * unloaded, the registered atexit functions (if any) residing in that
321  * module are called, regardless where the code that registered them
322  * resided. This is presumably the most robust approach.
323  *
324  * As can be seen from the above, for portability it's best to avoid
325  * calling g_atexit() (or atexit()) except in the main executable of a
326  * program.
327  */
328 void
329 g_atexit (GVoidFunc func)
330 {
331   gint result;
332   const gchar *error = NULL;
333
334   /* keep this in sync with glib.h */
335
336 #ifdef  G_NATIVE_ATEXIT
337   result = ATEXIT (func);
338   if (result)
339     error = g_strerror (errno);
340 #elif defined (HAVE_ATEXIT)
341 #  ifdef NeXT /* @#%@! NeXTStep */
342   result = !atexit ((void (*)(void)) func);
343   if (result)
344     error = g_strerror (errno);
345 #  else
346   result = atexit ((void (*)(void)) func);
347   if (result)
348     error = g_strerror (errno);
349 #  endif /* NeXT */
350 #elif defined (HAVE_ON_EXIT)
351   result = on_exit ((void (*)(int, void *)) func, NULL);
352   if (result)
353     error = g_strerror (errno);
354 #else
355   result = 0;
356   error = "no implementation";
357 #endif /* G_NATIVE_ATEXIT */
358
359   if (error)
360     g_error ("Could not register atexit() function: %s", error);
361 }
362
363 /* Based on execvp() from GNU Libc.
364  * Some of this code is cut-and-pasted into gspawn.c
365  */
366
367 static gchar*
368 my_strchrnul (const gchar *str, 
369               gchar        c)
370 {
371   gchar *p = (gchar*)str;
372   while (*p && (*p != c))
373     ++p;
374
375   return p;
376 }
377
378 #ifdef G_OS_WIN32
379
380 static gchar *inner_find_program_in_path (const gchar *program);
381
382 gchar*
383 g_find_program_in_path (const gchar *program)
384 {
385   const gchar *last_dot = strrchr (program, '.');
386
387   if (last_dot == NULL ||
388       strchr (last_dot, '\\') != NULL ||
389       strchr (last_dot, '/') != NULL)
390     {
391       const gint program_length = strlen (program);
392       gchar *pathext = g_build_path (";",
393                                      ".exe;.cmd;.bat;.com",
394                                      g_getenv ("PATHEXT"),
395                                      NULL);
396       gchar *p;
397       gchar *decorated_program;
398       gchar *retval;
399
400       p = pathext;
401       do
402         {
403           gchar *q = my_strchrnul (p, ';');
404
405           decorated_program = g_malloc (program_length + (q-p) + 1);
406           memcpy (decorated_program, program, program_length);
407           memcpy (decorated_program+program_length, p, q-p);
408           decorated_program [program_length + (q-p)] = '\0';
409           
410           retval = inner_find_program_in_path (decorated_program);
411           g_free (decorated_program);
412
413           if (retval != NULL)
414             {
415               g_free (pathext);
416               return retval;
417             }
418           p = q;
419         } while (*p++ != '\0');
420       g_free (pathext);
421       return NULL;
422     }
423   else
424     return inner_find_program_in_path (program);
425 }
426
427 #endif
428
429 /**
430  * g_find_program_in_path:
431  * @program: a program name in the GLib file name encoding
432  * 
433  * Locates the first executable named @program in the user's path, in the
434  * same way that execvp() would locate it. Returns an allocated string
435  * with the absolute path name, or %NULL if the program is not found in
436  * the path. If @program is already an absolute path, returns a copy of
437  * @program if @program exists and is executable, and %NULL otherwise.
438  *  
439  * On Windows, if @program does not have a file type suffix, tries
440  * with the suffixes .exe, .cmd, .bat and .com, and the suffixes in
441  * the <envar>PATHEXT</envar> environment variable. 
442  * 
443  * On Windows, it looks for the file in the same way as CreateProcess() 
444  * would. This means first in the directory where the executing
445  * program was loaded from, then in the current directory, then in the
446  * Windows 32-bit system directory, then in the Windows directory, and
447  * finally in the directories in the <envar>PATH</envar> environment 
448  * variable. If the program is found, the return value contains the 
449  * full name including the type suffix.
450  *
451  * Return value: absolute path, or %NULL
452  **/
453 #ifdef G_OS_WIN32
454 static gchar *
455 inner_find_program_in_path (const gchar *program)
456 #else
457 gchar*
458 g_find_program_in_path (const gchar *program)
459 #endif
460 {
461   const gchar *path, *p;
462   gchar *name, *freeme;
463 #ifdef G_OS_WIN32
464   const gchar *path_copy;
465   gchar *filename = NULL, *appdir = NULL;
466   gchar *sysdir = NULL, *windir = NULL;
467   int n;
468   wchar_t wfilename[MAXPATHLEN], wsysdir[MAXPATHLEN],
469     wwindir[MAXPATHLEN];
470 #endif
471   gsize len;
472   gsize pathlen;
473
474   g_return_val_if_fail (program != NULL, NULL);
475
476   /* If it is an absolute path, or a relative path including subdirectories,
477    * don't look in PATH.
478    */
479   if (g_path_is_absolute (program)
480       || strchr (program, G_DIR_SEPARATOR) != NULL
481 #ifdef G_OS_WIN32
482       || strchr (program, '/') != NULL
483 #endif
484       )
485     {
486       if (g_file_test (program, G_FILE_TEST_IS_EXECUTABLE) &&
487           !g_file_test (program, G_FILE_TEST_IS_DIR))
488         return g_strdup (program);
489       else
490         return NULL;
491     }
492   
493   path = g_getenv ("PATH");
494 #if defined(G_OS_UNIX) || defined(G_OS_BEOS)
495   if (path == NULL)
496     {
497       /* There is no `PATH' in the environment.  The default
498        * search path in GNU libc is the current directory followed by
499        * the path `confstr' returns for `_CS_PATH'.
500        */
501       
502       /* In GLib we put . last, for security, and don't use the
503        * unportable confstr(); UNIX98 does not actually specify
504        * what to search if PATH is unset. POSIX may, dunno.
505        */
506       
507       path = "/bin:/usr/bin:.";
508     }
509 #else
510   n = GetModuleFileNameW (NULL, wfilename, MAXPATHLEN);
511   if (n > 0 && n < MAXPATHLEN)
512     filename = g_utf16_to_utf8 (wfilename, -1, NULL, NULL, NULL);
513   
514   n = GetSystemDirectoryW (wsysdir, MAXPATHLEN);
515   if (n > 0 && n < MAXPATHLEN)
516     sysdir = g_utf16_to_utf8 (wsysdir, -1, NULL, NULL, NULL);
517   
518   n = GetWindowsDirectoryW (wwindir, MAXPATHLEN);
519   if (n > 0 && n < MAXPATHLEN)
520     windir = g_utf16_to_utf8 (wwindir, -1, NULL, NULL, NULL);
521   
522   if (filename)
523     {
524       appdir = g_path_get_dirname (filename);
525       g_free (filename);
526     }
527   
528   path = g_strdup (path);
529
530   if (windir)
531     {
532       const gchar *tem = path;
533       path = g_strconcat (windir, ";", path, NULL);
534       g_free ((gchar *) tem);
535       g_free (windir);
536     }
537   
538   if (sysdir)
539     {
540       const gchar *tem = path;
541       path = g_strconcat (sysdir, ";", path, NULL);
542       g_free ((gchar *) tem);
543       g_free (sysdir);
544     }
545   
546   {
547     const gchar *tem = path;
548     path = g_strconcat (".;", path, NULL);
549     g_free ((gchar *) tem);
550   }
551   
552   if (appdir)
553     {
554       const gchar *tem = path;
555       path = g_strconcat (appdir, ";", path, NULL);
556       g_free ((gchar *) tem);
557       g_free (appdir);
558     }
559
560   path_copy = path;
561 #endif
562   
563   len = strlen (program) + 1;
564   pathlen = strlen (path);
565   freeme = name = g_malloc (pathlen + len + 1);
566   
567   /* Copy the file name at the top, including '\0'  */
568   memcpy (name + pathlen + 1, program, len);
569   name = name + pathlen;
570   /* And add the slash before the filename  */
571   *name = G_DIR_SEPARATOR;
572   
573   p = path;
574   do
575     {
576       char *startp;
577
578       path = p;
579       p = my_strchrnul (path, G_SEARCHPATH_SEPARATOR);
580
581       if (p == path)
582         /* Two adjacent colons, or a colon at the beginning or the end
583          * of `PATH' means to search the current directory.
584          */
585         startp = name + 1;
586       else
587         startp = memcpy (name - (p - path), path, p - path);
588
589       if (g_file_test (startp, G_FILE_TEST_IS_EXECUTABLE) &&
590           !g_file_test (startp, G_FILE_TEST_IS_DIR))
591         {
592           gchar *ret;
593           ret = g_strdup (startp);
594           g_free (freeme);
595 #ifdef G_OS_WIN32
596           g_free ((gchar *) path_copy);
597 #endif
598           return ret;
599         }
600     }
601   while (*p++ != '\0');
602   
603   g_free (freeme);
604 #ifdef G_OS_WIN32
605   g_free ((gchar *) path_copy);
606 #endif
607
608   return NULL;
609 }
610
611 static gboolean
612 debug_key_matches (const gchar *key,
613                    const gchar *token,
614                    guint        length)
615 {
616   for (; length; length--, key++, token++)
617     {
618       char k = (*key   == '_') ? '-' : tolower (*key  );
619       char t = (*token == '_') ? '-' : tolower (*token);
620
621       if (k != t)
622         return FALSE;
623     }
624
625   return *key == '\0';
626 }
627
628 /**
629  * g_parse_debug_string:
630  * @string: a list of debug options separated by colons, spaces, or
631  * commas, or %NULL.
632  * @keys: pointer to an array of #GDebugKey which associate 
633  *     strings with bit flags.
634  * @nkeys: the number of #GDebugKey<!-- -->s in the array.
635  *
636  * Parses a string containing debugging options
637  * into a %guint containing bit flags. This is used 
638  * within GDK and GTK+ to parse the debug options passed on the
639  * command line or through environment variables.
640  *
641  * If @string is equal to "all", all flags are set.  If @string
642  * is equal to "help", all the available keys in @keys are printed
643  * out to standard error.
644  *
645  * Returns: the combined set of bit flags.
646  */
647 guint        
648 g_parse_debug_string  (const gchar     *string, 
649                        const GDebugKey *keys, 
650                        guint            nkeys)
651 {
652   guint i;
653   guint result = 0;
654   
655   if (string == NULL)
656     return 0;
657
658   /* this function is used by gmem.c/gslice.c initialization code,
659    * so introducing malloc dependencies here would require adaptions
660    * of those code portions.
661    */
662   
663   if (!g_ascii_strcasecmp (string, "all"))
664     {
665       for (i=0; i<nkeys; i++)
666         result |= keys[i].value;
667     }
668   else if (!g_ascii_strcasecmp (string, "help"))
669     {
670       /* using stdio directly for the reason stated above */
671       fprintf (stderr, "Supported debug values: ");
672       for (i=0; i<nkeys; i++)
673         fprintf (stderr, " %s", keys[i].key);
674       fprintf (stderr, "\n");
675     }
676   else
677     {
678       const gchar *p = string;
679       const gchar *q;
680       
681       while (*p)
682         {
683           q = strpbrk (p, ":;, \t");
684           if (!q)
685             q = p + strlen(p);
686           
687           for (i = 0; i < nkeys; i++)
688             if (debug_key_matches (keys[i].key, p, q - p))
689               result |= keys[i].value;
690           
691           p = q;
692           if (*p)
693             p++;
694         }
695     }
696   
697   return result;
698 }
699
700 /**
701  * g_basename:
702  * @file_name: the name of the file.
703  * 
704  * Gets the name of the file without any leading directory components.  
705  * It returns a pointer into the given file name string.
706  * 
707  * Return value: the name of the file without any leading directory components.
708  *
709  * Deprecated:2.2: Use g_path_get_basename() instead, but notice that
710  * g_path_get_basename() allocates new memory for the returned string, unlike
711  * this function which returns a pointer into the argument.
712  **/
713 G_CONST_RETURN gchar*
714 g_basename (const gchar    *file_name)
715 {
716   register gchar *base;
717   
718   g_return_val_if_fail (file_name != NULL, NULL);
719   
720   base = strrchr (file_name, G_DIR_SEPARATOR);
721
722 #ifdef G_OS_WIN32
723   {
724     gchar *q = strrchr (file_name, '/');
725     if (base == NULL || (q != NULL && q > base))
726         base = q;
727   }
728 #endif
729
730   if (base)
731     return base + 1;
732
733 #ifdef G_OS_WIN32
734   if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
735     return (gchar*) file_name + 2;
736 #endif /* G_OS_WIN32 */
737   
738   return (gchar*) file_name;
739 }
740
741 /**
742  * g_path_get_basename:
743  * @file_name: the name of the file.
744  *
745  * Gets the last component of the filename. If @file_name ends with a 
746  * directory separator it gets the component before the last slash. If 
747  * @file_name consists only of directory separators (and on Windows, 
748  * possibly a drive letter), a single separator is returned. If
749  * @file_name is empty, it gets ".".
750  *
751  * Return value: a newly allocated string containing the last component of 
752  *   the filename.
753  */
754 gchar*
755 g_path_get_basename (const gchar   *file_name)
756 {
757   register gssize base;             
758   register gssize last_nonslash;    
759   gsize len;    
760   gchar *retval;
761  
762   g_return_val_if_fail (file_name != NULL, NULL);
763
764   if (file_name[0] == '\0')
765     /* empty string */
766     return g_strdup (".");
767   
768   last_nonslash = strlen (file_name) - 1;
769
770   while (last_nonslash >= 0 && G_IS_DIR_SEPARATOR (file_name [last_nonslash]))
771     last_nonslash--;
772
773   if (last_nonslash == -1)
774     /* string only containing slashes */
775     return g_strdup (G_DIR_SEPARATOR_S);
776
777 #ifdef G_OS_WIN32
778   if (last_nonslash == 1 && g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
779     /* string only containing slashes and a drive */
780     return g_strdup (G_DIR_SEPARATOR_S);
781 #endif /* G_OS_WIN32 */
782
783   base = last_nonslash;
784
785   while (base >=0 && !G_IS_DIR_SEPARATOR (file_name [base]))
786     base--;
787
788 #ifdef G_OS_WIN32
789   if (base == -1 && g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
790     base = 1;
791 #endif /* G_OS_WIN32 */
792
793   len = last_nonslash - base;
794   retval = g_malloc (len + 1);
795   memcpy (retval, file_name + base + 1, len);
796   retval [len] = '\0';
797   return retval;
798 }
799
800 /**
801  * g_path_is_absolute:
802  * @file_name: a file name.
803  *
804  * Returns %TRUE if the given @file_name is an absolute file name,
805  * i.e. it contains a full path from the root directory such as "/usr/local"
806  * on UNIX or "C:\windows" on Windows systems.
807  *
808  * Returns: %TRUE if @file_name is an absolute path. 
809  */
810 gboolean
811 g_path_is_absolute (const gchar *file_name)
812 {
813   g_return_val_if_fail (file_name != NULL, FALSE);
814   
815   if (G_IS_DIR_SEPARATOR (file_name[0]))
816     return TRUE;
817
818 #ifdef G_OS_WIN32
819   /* Recognize drive letter on native Windows */
820   if (g_ascii_isalpha (file_name[0]) && 
821       file_name[1] == ':' && G_IS_DIR_SEPARATOR (file_name[2]))
822     return TRUE;
823 #endif /* G_OS_WIN32 */
824
825   return FALSE;
826 }
827
828 /**
829  * g_path_skip_root:
830  * @file_name: a file name.
831  *
832  * Returns a pointer into @file_name after the root component, i.e. after
833  * the "/" in UNIX or "C:\" under Windows. If @file_name is not an absolute
834  * path it returns %NULL.
835  *
836  * Returns: a pointer into @file_name after the root component.
837  */
838 G_CONST_RETURN gchar*
839 g_path_skip_root (const gchar *file_name)
840 {
841   g_return_val_if_fail (file_name != NULL, NULL);
842   
843 #ifdef G_PLATFORM_WIN32
844   /* Skip \\server\share or //server/share */
845   if (G_IS_DIR_SEPARATOR (file_name[0]) &&
846       G_IS_DIR_SEPARATOR (file_name[1]) &&
847       file_name[2] &&
848       !G_IS_DIR_SEPARATOR (file_name[2]))
849     {
850       gchar *p;
851
852       p = strchr (file_name + 2, G_DIR_SEPARATOR);
853 #ifdef G_OS_WIN32
854       {
855         gchar *q = strchr (file_name + 2, '/');
856         if (p == NULL || (q != NULL && q < p))
857           p = q;
858       }
859 #endif
860       if (p &&
861           p > file_name + 2 &&
862           p[1])
863         {
864           file_name = p + 1;
865
866           while (file_name[0] && !G_IS_DIR_SEPARATOR (file_name[0]))
867             file_name++;
868
869           /* Possibly skip a backslash after the share name */
870           if (G_IS_DIR_SEPARATOR (file_name[0]))
871             file_name++;
872
873           return (gchar *)file_name;
874         }
875     }
876 #endif
877   
878   /* Skip initial slashes */
879   if (G_IS_DIR_SEPARATOR (file_name[0]))
880     {
881       while (G_IS_DIR_SEPARATOR (file_name[0]))
882         file_name++;
883       return (gchar *)file_name;
884     }
885
886 #ifdef G_OS_WIN32
887   /* Skip X:\ */
888   if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':' && G_IS_DIR_SEPARATOR (file_name[2]))
889     return (gchar *)file_name + 3;
890 #endif
891
892   return NULL;
893 }
894
895 /**
896  * g_path_get_dirname:
897  * @file_name: the name of the file.
898  *
899  * Gets the directory components of a file name.  If the file name has no
900  * directory components "." is returned.  The returned string should be
901  * freed when no longer needed.
902  * 
903  * Returns: the directory components of the file.
904  */
905 gchar*
906 g_path_get_dirname (const gchar    *file_name)
907 {
908   register gchar *base;
909   register gsize len;    
910   
911   g_return_val_if_fail (file_name != NULL, NULL);
912   
913   base = strrchr (file_name, G_DIR_SEPARATOR);
914 #ifdef G_OS_WIN32
915   {
916     gchar *q = strrchr (file_name, '/');
917     if (base == NULL || (q != NULL && q > base))
918         base = q;
919   }
920 #endif
921   if (!base)
922     {
923 #ifdef G_OS_WIN32
924       if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
925         {
926           gchar drive_colon_dot[4];
927
928           drive_colon_dot[0] = file_name[0];
929           drive_colon_dot[1] = ':';
930           drive_colon_dot[2] = '.';
931           drive_colon_dot[3] = '\0';
932
933           return g_strdup (drive_colon_dot);
934         }
935 #endif
936     return g_strdup (".");
937     }
938
939   while (base > file_name && G_IS_DIR_SEPARATOR (*base))
940     base--;
941
942 #ifdef G_OS_WIN32
943   /* base points to the char before the last slash.
944    *
945    * In case file_name is the root of a drive (X:\) or a child of the
946    * root of a drive (X:\foo), include the slash.
947    *
948    * In case file_name is the root share of an UNC path
949    * (\\server\share), add a slash, returning \\server\share\ .
950    *
951    * In case file_name is a direct child of a share in an UNC path
952    * (\\server\share\foo), include the slash after the share name,
953    * returning \\server\share\ .
954    */
955   if (base == file_name + 1 && g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
956     base++;
957   else if (G_IS_DIR_SEPARATOR (file_name[0]) &&
958            G_IS_DIR_SEPARATOR (file_name[1]) &&
959            file_name[2] &&
960            !G_IS_DIR_SEPARATOR (file_name[2]) &&
961            base >= file_name + 2)
962     {
963       const gchar *p = file_name + 2;
964       while (*p && !G_IS_DIR_SEPARATOR (*p))
965         p++;
966       if (p == base + 1)
967         {
968           len = (guint) strlen (file_name) + 1;
969           base = g_new (gchar, len + 1);
970           strcpy (base, file_name);
971           base[len-1] = G_DIR_SEPARATOR;
972           base[len] = 0;
973           return base;
974         }
975       if (G_IS_DIR_SEPARATOR (*p))
976         {
977           p++;
978           while (*p && !G_IS_DIR_SEPARATOR (*p))
979             p++;
980           if (p == base + 1)
981             base++;
982         }
983     }
984 #endif
985
986   len = (guint) 1 + base - file_name;
987   
988   base = g_new (gchar, len + 1);
989   g_memmove (base, file_name, len);
990   base[len] = 0;
991   
992   return base;
993 }
994
995 /**
996  * g_get_current_dir:
997  *
998  * Gets the current directory.
999  * The returned string should be freed when no longer needed. The encoding 
1000  * of the returned string is system defined. On Windows, it is always UTF-8.
1001  * 
1002  * Returns: the current directory.
1003  */
1004 gchar*
1005 g_get_current_dir (void)
1006 {
1007 #ifdef G_OS_WIN32
1008
1009   gchar *dir = NULL;
1010   wchar_t dummy[2], *wdir;
1011   int len;
1012
1013   len = GetCurrentDirectoryW (2, dummy);
1014   wdir = g_new (wchar_t, len);
1015
1016   if (GetCurrentDirectoryW (len, wdir) == len - 1)
1017     dir = g_utf16_to_utf8 (wdir, -1, NULL, NULL, NULL);
1018   
1019   g_free (wdir);
1020
1021   if (dir == NULL)
1022     dir = g_strdup ("\\");
1023
1024   return dir;
1025
1026 #else
1027
1028   gchar *buffer = NULL;
1029   gchar *dir = NULL;
1030   static gulong max_len = 0;
1031
1032   if (max_len == 0) 
1033     max_len = (G_PATH_LENGTH == -1) ? 2048 : G_PATH_LENGTH;
1034   
1035   /* We don't use getcwd(3) on SUNOS, because, it does a popen("pwd")
1036    * and, if that wasn't bad enough, hangs in doing so.
1037    */
1038 #if     (defined (sun) && !defined (__SVR4)) || !defined(HAVE_GETCWD)
1039   buffer = g_new (gchar, max_len + 1);
1040   *buffer = 0;
1041   dir = getwd (buffer);
1042 #else   /* !sun || !HAVE_GETCWD */
1043   while (max_len < G_MAXULONG / 2)
1044     {
1045       g_free (buffer);
1046       buffer = g_new (gchar, max_len + 1);
1047       *buffer = 0;
1048       dir = getcwd (buffer, max_len);
1049
1050       if (dir || errno != ERANGE)
1051         break;
1052
1053       max_len *= 2;
1054     }
1055 #endif  /* !sun || !HAVE_GETCWD */
1056   
1057   if (!dir || !*buffer)
1058     {
1059       /* hm, should we g_error() out here?
1060        * this can happen if e.g. "./" has mode \0000
1061        */
1062       buffer[0] = G_DIR_SEPARATOR;
1063       buffer[1] = 0;
1064     }
1065
1066   dir = g_strdup (buffer);
1067   g_free (buffer);
1068   
1069   return dir;
1070 #endif /* !Win32 */
1071 }
1072
1073 /**
1074  * g_getenv:
1075  * @variable: the environment variable to get, in the GLib file name encoding.
1076  * 
1077  * Returns the value of an environment variable. The name and value
1078  * are in the GLib file name encoding. On UNIX, this means the actual
1079  * bytes which might or might not be in some consistent character set
1080  * and encoding. On Windows, it is in UTF-8. On Windows, in case the
1081  * environment variable's value contains references to other
1082  * environment variables, they are expanded.
1083  * 
1084  * Return value: the value of the environment variable, or %NULL if
1085  * the environment variable is not found. The returned string may be
1086  * overwritten by the next call to g_getenv(), g_setenv() or
1087  * g_unsetenv().
1088  **/
1089 G_CONST_RETURN gchar*
1090 g_getenv (const gchar *variable)
1091 {
1092 #ifndef G_OS_WIN32
1093
1094   g_return_val_if_fail (variable != NULL, NULL);
1095
1096   return getenv (variable);
1097
1098 #else /* G_OS_WIN32 */
1099
1100   GQuark quark;
1101   gchar *value;
1102   wchar_t dummy[2], *wname, *wvalue;
1103   int len;
1104
1105   g_return_val_if_fail (variable != NULL, NULL);
1106   g_return_val_if_fail (g_utf8_validate (variable, -1, NULL), NULL);
1107
1108   /* On Windows NT, it is relatively typical that environment
1109    * variables contain references to other environment variables. If
1110    * so, use ExpandEnvironmentStrings(). (In an ideal world, such
1111    * environment variables would be stored in the Registry as
1112    * REG_EXPAND_SZ type values, and would then get automatically
1113    * expanded before a program sees them. But there is broken software
1114    * that stores environment variables as REG_SZ values even if they
1115    * contain references to other environment variables.)
1116    */
1117
1118   wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL);
1119
1120   len = GetEnvironmentVariableW (wname, dummy, 2);
1121
1122   if (len == 0)
1123     {
1124       g_free (wname);
1125       return NULL;
1126     }
1127   else if (len == 1)
1128     len = 2;
1129
1130   wvalue = g_new (wchar_t, len);
1131
1132   if (GetEnvironmentVariableW (wname, wvalue, len) != len - 1)
1133     {
1134       g_free (wname);
1135       g_free (wvalue);
1136       return NULL;
1137     }
1138
1139   if (wcschr (wvalue, L'%') != NULL)
1140     {
1141       wchar_t *tem = wvalue;
1142
1143       len = ExpandEnvironmentStringsW (wvalue, dummy, 2);
1144
1145       if (len > 0)
1146         {
1147           wvalue = g_new (wchar_t, len);
1148
1149           if (ExpandEnvironmentStringsW (tem, wvalue, len) != len)
1150             {
1151               g_free (wvalue);
1152               wvalue = tem;
1153             }
1154           else
1155             g_free (tem);
1156         }
1157     }
1158
1159   value = g_utf16_to_utf8 (wvalue, -1, NULL, NULL, NULL);
1160
1161   g_free (wname);
1162   g_free (wvalue);
1163
1164   quark = g_quark_from_string (value);
1165   g_free (value);
1166   
1167   return g_quark_to_string (quark);
1168
1169 #endif /* G_OS_WIN32 */
1170 }
1171
1172 /* _g_getenv_nomalloc
1173  * this function does a getenv() without doing any kind of allocation
1174  * through glib. it's suitable for chars <= 127 only (both, for the
1175  * variable name and the contents) and for contents < 1024 chars in
1176  * length. also, it aliases "" to a NULL return value.
1177  **/
1178 const gchar*
1179 _g_getenv_nomalloc (const gchar *variable,
1180                     gchar        buffer[1024])
1181 {
1182   const gchar *retval = getenv (variable);
1183   if (retval && retval[0])
1184     {
1185       gint l = strlen (retval);
1186       if (l < 1024)
1187         {
1188           strncpy (buffer, retval, l);
1189           buffer[l] = 0;
1190           return buffer;
1191         }
1192     }
1193   return NULL;
1194 }
1195
1196 /**
1197  * g_setenv:
1198  * @variable: the environment variable to set, must not contain '='.
1199  * @value: the value for to set the variable to.
1200  * @overwrite: whether to change the variable if it already exists.
1201  *
1202  * Sets an environment variable. Both the variable's name and value
1203  * should be in the GLib file name encoding. On UNIX, this means that
1204  * they can be any sequence of bytes. On Windows, they should be in
1205  * UTF-8.
1206  *
1207  * Note that on some systems, when variables are overwritten, the memory 
1208  * used for the previous variables and its value isn't reclaimed.
1209  *
1210  * Returns: %FALSE if the environment variable couldn't be set.
1211  *
1212  * Since: 2.4
1213  */
1214 gboolean
1215 g_setenv (const gchar *variable, 
1216           const gchar *value, 
1217           gboolean     overwrite)
1218 {
1219 #ifndef G_OS_WIN32
1220
1221   gint result;
1222 #ifndef HAVE_SETENV
1223   gchar *string;
1224 #endif
1225
1226   g_return_val_if_fail (variable != NULL, FALSE);
1227   g_return_val_if_fail (strchr (variable, '=') == NULL, FALSE);
1228
1229 #ifdef HAVE_SETENV
1230   result = setenv (variable, value, overwrite);
1231 #else
1232   if (!overwrite && getenv (variable) != NULL)
1233     return TRUE;
1234   
1235   /* This results in a leak when you overwrite existing
1236    * settings. It would be fairly easy to fix this by keeping
1237    * our own parallel array or hash table.
1238    */
1239   string = g_strconcat (variable, "=", value, NULL);
1240   result = putenv (string);
1241 #endif
1242   return result == 0;
1243
1244 #else /* G_OS_WIN32 */
1245
1246   gboolean retval;
1247   wchar_t *wname, *wvalue, *wassignment;
1248   gchar *tem;
1249
1250   g_return_val_if_fail (variable != NULL, FALSE);
1251   g_return_val_if_fail (strchr (variable, '=') == NULL, FALSE);
1252   g_return_val_if_fail (g_utf8_validate (variable, -1, NULL), FALSE);
1253   g_return_val_if_fail (g_utf8_validate (value, -1, NULL), FALSE);
1254
1255   if (!overwrite && g_getenv (variable) != NULL)
1256     return TRUE;
1257
1258   /* We want to (if possible) set both the environment variable copy
1259    * kept by the C runtime and the one kept by the system.
1260    *
1261    * We can't use only the C runtime's putenv or _wputenv() as that
1262    * won't work for arbitrary Unicode strings in a "non-Unicode" app
1263    * (with main() and not wmain()). In a "main()" app the C runtime
1264    * initializes the C runtime's environment table by converting the
1265    * real (wide char) environment variables to system codepage, thus
1266    * breaking those that aren't representable in the system codepage.
1267    *
1268    * As the C runtime's putenv() will also set the system copy, we do
1269    * the putenv() first, then call SetEnvironmentValueW ourselves.
1270    */
1271
1272   wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL);
1273   wvalue = g_utf8_to_utf16 (value, -1, NULL, NULL, NULL);
1274   tem = g_strconcat (variable, "=", value, NULL);
1275   wassignment = g_utf8_to_utf16 (tem, -1, NULL, NULL, NULL);
1276     
1277   g_free (tem);
1278   _wputenv (wassignment);
1279   g_free (wassignment);
1280
1281   retval = (SetEnvironmentVariableW (wname, wvalue) != 0);
1282
1283   g_free (wname);
1284   g_free (wvalue);
1285
1286   return retval;
1287
1288 #endif /* G_OS_WIN32 */
1289 }
1290
1291 #ifdef HAVE__NSGETENVIRON
1292 #define environ (*_NSGetEnviron())
1293 #elif !defined(G_OS_WIN32)
1294
1295 /* According to the Single Unix Specification, environ is not in 
1296  * any system header, although unistd.h often declares it.
1297  */
1298 extern char **environ;
1299 #endif
1300
1301 /**
1302  * g_unsetenv:
1303  * @variable: the environment variable to remove, must not contain '='.
1304  * 
1305  * Removes an environment variable from the environment.
1306  *
1307  * Note that on some systems, when variables are overwritten, the memory 
1308  * used for the previous variables and its value isn't reclaimed.
1309  * Furthermore, this function can't be guaranteed to operate in a 
1310  * threadsafe way.
1311  *
1312  * Since: 2.4 
1313  **/
1314 void
1315 g_unsetenv (const gchar *variable)
1316 {
1317 #ifndef G_OS_WIN32
1318
1319 #ifdef HAVE_UNSETENV
1320   g_return_if_fail (variable != NULL);
1321   g_return_if_fail (strchr (variable, '=') == NULL);
1322
1323   unsetenv (variable);
1324 #else /* !HAVE_UNSETENV */
1325   int len;
1326   gchar **e, **f;
1327
1328   g_return_if_fail (variable != NULL);
1329   g_return_if_fail (strchr (variable, '=') == NULL);
1330
1331   len = strlen (variable);
1332   
1333   /* Mess directly with the environ array.
1334    * This seems to be the only portable way to do this.
1335    *
1336    * Note that we remove *all* environment entries for
1337    * the variable name, not just the first.
1338    */
1339   e = f = environ;
1340   while (*e != NULL) 
1341     {
1342       if (strncmp (*e, variable, len) != 0 || (*e)[len] != '=') 
1343         {
1344           *f = *e;
1345           f++;
1346         }
1347       e++;
1348     }
1349   *f = NULL;
1350 #endif /* !HAVE_UNSETENV */
1351
1352 #else  /* G_OS_WIN32 */
1353
1354   wchar_t *wname, *wassignment;
1355   gchar *tem;
1356
1357   g_return_if_fail (variable != NULL);
1358   g_return_if_fail (strchr (variable, '=') == NULL);
1359   g_return_if_fail (g_utf8_validate (variable, -1, NULL));
1360
1361   wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL);
1362   tem = g_strconcat (variable, "=", NULL);
1363   wassignment = g_utf8_to_utf16 (tem, -1, NULL, NULL, NULL);
1364     
1365   g_free (tem);
1366   _wputenv (wassignment);
1367   g_free (wassignment);
1368
1369   SetEnvironmentVariableW (wname, NULL);
1370
1371   g_free (wname);
1372
1373 #endif /* G_OS_WIN32 */
1374 }
1375
1376 /**
1377  * g_listenv:
1378  *
1379  * Gets the names of all variables set in the environment.
1380  * 
1381  * Returns: a %NULL-terminated list of strings which must be freed
1382  * with g_strfreev().
1383  *
1384  * Programs that want to be portable to Windows should typically use
1385  * this function and g_getenv() instead of using the environ array
1386  * from the C library directly. On Windows, the strings in the environ
1387  * array are in system codepage encoding, while in most of the typical
1388  * use cases for environment variables in GLib-using programs you want
1389  * the UTF-8 encoding that this function and g_getenv() provide.
1390  *
1391  * Since: 2.8
1392  */
1393 gchar **
1394 g_listenv (void)
1395 {
1396 #ifndef G_OS_WIN32
1397   gchar **result, *eq;
1398   gint len, i, j;
1399
1400   len = g_strv_length (environ);
1401   result = g_new0 (gchar *, len + 1);
1402   
1403   j = 0;
1404   for (i = 0; i < len; i++)
1405     {
1406       eq = strchr (environ[i], '=');
1407       if (eq)
1408         result[j++] = g_strndup (environ[i], eq - environ[i]);
1409     }
1410
1411   result[j] = NULL;
1412
1413   return result;
1414 #else
1415   gchar **result, *eq;
1416   gint len = 0, j;
1417   wchar_t *p, *q;
1418
1419   p = (wchar_t *) GetEnvironmentStringsW ();
1420   if (p != NULL)
1421     {
1422       q = p;
1423       while (*q)
1424         {
1425           q += wcslen (q) + 1;
1426           len++;
1427         }
1428     }
1429   result = g_new0 (gchar *, len + 1);
1430
1431   j = 0;
1432   q = p;
1433   while (*q)
1434     {
1435       result[j] = g_utf16_to_utf8 (q, -1, NULL, NULL, NULL);
1436       if (result[j] != NULL)
1437         {
1438           eq = strchr (result[j], '=');
1439           if (eq && eq > result[j])
1440             {
1441               *eq = '\0';
1442               j++;
1443             }
1444           else
1445             g_free (result[j]);
1446         }
1447       q += wcslen (q) + 1;
1448     }
1449   result[j] = NULL;
1450   FreeEnvironmentStringsW (p);
1451
1452   return result;
1453 #endif
1454 }
1455
1456 G_LOCK_DEFINE_STATIC (g_utils_global);
1457
1458 static  gchar   *g_tmp_dir = NULL;
1459 static  gchar   *g_user_name = NULL;
1460 static  gchar   *g_real_name = NULL;
1461 static  gchar   *g_home_dir = NULL;
1462 static  gchar   *g_host_name = NULL;
1463
1464 #ifdef G_OS_WIN32
1465 /* System codepage versions of the above, kept at file level so that they,
1466  * too, are produced only once.
1467  */
1468 static  gchar   *g_tmp_dir_cp = NULL;
1469 static  gchar   *g_user_name_cp = NULL;
1470 static  gchar   *g_real_name_cp = NULL;
1471 static  gchar   *g_home_dir_cp = NULL;
1472 #endif
1473
1474 static  gchar   *g_user_data_dir = NULL;
1475 static  gchar  **g_system_data_dirs = NULL;
1476 static  gchar   *g_user_cache_dir = NULL;
1477 static  gchar   *g_user_config_dir = NULL;
1478 static  gchar  **g_system_config_dirs = NULL;
1479
1480 static  gchar  **g_user_special_dirs = NULL;
1481
1482 /* fifteen minutes of fame for everybody */
1483 #define G_USER_DIRS_EXPIRE      15 * 60
1484
1485 #ifdef G_OS_WIN32
1486
1487 static gchar *
1488 get_special_folder (int csidl)
1489 {
1490   wchar_t path[MAX_PATH+1];
1491   HRESULT hr;
1492   LPITEMIDLIST pidl = NULL;
1493   BOOL b;
1494   gchar *retval = NULL;
1495
1496   hr = SHGetSpecialFolderLocation (NULL, csidl, &pidl);
1497   if (hr == S_OK)
1498     {
1499       b = SHGetPathFromIDListW (pidl, path);
1500       if (b)
1501         retval = g_utf16_to_utf8 (path, -1, NULL, NULL, NULL);
1502       CoTaskMemFree (pidl);
1503     }
1504   return retval;
1505 }
1506
1507 static char *
1508 get_windows_directory_root (void)
1509 {
1510   wchar_t wwindowsdir[MAX_PATH];
1511
1512   if (GetWindowsDirectoryW (wwindowsdir, G_N_ELEMENTS (wwindowsdir)))
1513     {
1514       /* Usually X:\Windows, but in terminal server environments
1515        * might be an UNC path, AFAIK.
1516        */
1517       char *windowsdir = g_utf16_to_utf8 (wwindowsdir, -1, NULL, NULL, NULL);
1518       char *p;
1519
1520       if (windowsdir == NULL)
1521         return g_strdup ("C:\\");
1522
1523       p = (char *) g_path_skip_root (windowsdir);
1524       if (G_IS_DIR_SEPARATOR (p[-1]) && p[-2] != ':')
1525         p--;
1526       *p = '\0';
1527       return windowsdir;
1528     }
1529   else
1530     return g_strdup ("C:\\");
1531 }
1532
1533 #endif
1534
1535 /* HOLDS: g_utils_global_lock */
1536 static void
1537 g_get_any_init_do (void)
1538 {
1539   gchar hostname[100];
1540
1541   g_tmp_dir = g_strdup (g_getenv ("TMPDIR"));
1542   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1543     g_tmp_dir = g_strdup (g_getenv ("TMP"));
1544   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1545     g_tmp_dir = g_strdup (g_getenv ("TEMP"));
1546
1547 #ifdef G_OS_WIN32
1548   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1549     g_tmp_dir = get_windows_directory_root ();
1550 #else  
1551 #ifdef P_tmpdir
1552   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1553     {
1554       gsize k;    
1555       g_tmp_dir = g_strdup (P_tmpdir);
1556       k = strlen (g_tmp_dir);
1557       if (k > 1 && G_IS_DIR_SEPARATOR (g_tmp_dir[k - 1]))
1558         g_tmp_dir[k - 1] = '\0';
1559     }
1560 #endif
1561   
1562   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1563     {
1564       g_tmp_dir = g_strdup ("/tmp");
1565     }
1566 #endif  /* !G_OS_WIN32 */
1567   
1568 #ifdef G_OS_WIN32
1569   /* We check $HOME first for Win32, though it is a last resort for Unix
1570    * where we prefer the results of getpwuid().
1571    */
1572   g_home_dir = g_strdup (g_getenv ("HOME"));
1573
1574   /* Only believe HOME if it is an absolute path and exists */
1575   if (g_home_dir)
1576     {
1577       if (!(g_path_is_absolute (g_home_dir) &&
1578             g_file_test (g_home_dir, G_FILE_TEST_IS_DIR)))
1579         {
1580           g_free (g_home_dir);
1581           g_home_dir = NULL;
1582         }
1583     }
1584   
1585   /* In case HOME is Unix-style (it happens), convert it to
1586    * Windows style.
1587    */
1588   if (g_home_dir)
1589     {
1590       gchar *p;
1591       while ((p = strchr (g_home_dir, '/')) != NULL)
1592         *p = '\\';
1593     }
1594
1595   if (!g_home_dir)
1596     {
1597       /* USERPROFILE is probably the closest equivalent to $HOME? */
1598       if (g_getenv ("USERPROFILE") != NULL)
1599         g_home_dir = g_strdup (g_getenv ("USERPROFILE"));
1600     }
1601
1602   if (!g_home_dir)
1603     g_home_dir = get_special_folder (CSIDL_PROFILE);
1604   
1605   if (!g_home_dir)
1606     g_home_dir = get_windows_directory_root ();
1607 #endif /* G_OS_WIN32 */
1608   
1609 #ifdef HAVE_PWD_H
1610   {
1611     struct passwd *pw = NULL;
1612     gpointer buffer = NULL;
1613     gint error;
1614     gchar *logname;
1615
1616 #  if defined (HAVE_POSIX_GETPWUID_R) || defined (HAVE_NONPOSIX_GETPWUID_R)
1617     struct passwd pwd;
1618 #    ifdef _SC_GETPW_R_SIZE_MAX  
1619     /* This reurns the maximum length */
1620     glong bufsize = sysconf (_SC_GETPW_R_SIZE_MAX);
1621     
1622     if (bufsize < 0)
1623       bufsize = 64;
1624 #    else /* _SC_GETPW_R_SIZE_MAX */
1625     glong bufsize = 64;
1626 #    endif /* _SC_GETPW_R_SIZE_MAX */
1627
1628     logname = (gchar *) g_getenv ("LOGNAME");
1629         
1630     do
1631       {
1632         g_free (buffer);
1633         /* we allocate 6 extra bytes to work around a bug in 
1634          * Mac OS < 10.3. See #156446
1635          */
1636         buffer = g_malloc (bufsize + 6);
1637         errno = 0;
1638         
1639 #    ifdef HAVE_POSIX_GETPWUID_R
1640         if (logname) {
1641           error = getpwnam_r (logname, &pwd, buffer, bufsize, &pw);
1642           if (!pw || (pw->pw_uid != getuid ())) {
1643             /* LOGNAME is lying, fall back to looking up the uid */
1644             error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
1645           }
1646         } else {
1647           error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
1648         }
1649         error = error < 0 ? errno : error;
1650 #    else /* HAVE_NONPOSIX_GETPWUID_R */
1651    /* HPUX 11 falls into the HAVE_POSIX_GETPWUID_R case */
1652 #      if defined(_AIX) || defined(__hpux)
1653         error = getpwuid_r (getuid (), &pwd, buffer, bufsize);
1654         pw = error == 0 ? &pwd : NULL;
1655 #      else /* !_AIX */
1656         if (logname) {
1657           pw = getpwnam_r (logname, &pwd, buffer, bufsize);
1658           if (!pw || (pw->pw_uid != getuid ())) {
1659             /* LOGNAME is lying, fall back to looking up the uid */
1660             pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
1661           }
1662         } else {
1663           pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
1664         }
1665         error = pw ? 0 : errno;
1666 #      endif /* !_AIX */            
1667 #    endif /* HAVE_NONPOSIX_GETPWUID_R */
1668         
1669         if (!pw)
1670           {
1671             /* we bail out prematurely if the user id can't be found
1672              * (should be pretty rare case actually), or if the buffer
1673              * should be sufficiently big and lookups are still not
1674              * successfull.
1675              */
1676             if (error == 0 || error == ENOENT)
1677               {
1678                 g_warning ("getpwuid_r(): failed due to unknown user id (%lu)",
1679                            (gulong) getuid ());
1680                 break;
1681               }
1682             if (bufsize > 32 * 1024)
1683               {
1684                 g_warning ("getpwuid_r(): failed due to: %s.",
1685                            g_strerror (error));
1686                 break;
1687               }
1688             
1689             bufsize *= 2;
1690           }
1691       }
1692     while (!pw);
1693 #  endif /* HAVE_POSIX_GETPWUID_R || HAVE_NONPOSIX_GETPWUID_R */
1694     
1695     if (!pw)
1696       {
1697         setpwent ();
1698         pw = getpwuid (getuid ());
1699         endpwent ();
1700       }
1701     if (pw)
1702       {
1703         g_user_name = g_strdup (pw->pw_name);
1704
1705         if (pw->pw_gecos && *pw->pw_gecos != '\0') 
1706           {
1707             gchar **gecos_fields;
1708             gchar **name_parts;
1709
1710             /* split the gecos field and substitute '&' */
1711             gecos_fields = g_strsplit (pw->pw_gecos, ",", 0);
1712             name_parts = g_strsplit (gecos_fields[0], "&", 0);
1713             pw->pw_name[0] = g_ascii_toupper (pw->pw_name[0]);
1714             g_real_name = g_strjoinv (pw->pw_name, name_parts);
1715             g_strfreev (gecos_fields);
1716             g_strfreev (name_parts);
1717           }
1718
1719         if (!g_home_dir)
1720           g_home_dir = g_strdup (pw->pw_dir);
1721       }
1722     g_free (buffer);
1723   }
1724   
1725 #else /* !HAVE_PWD_H */
1726   
1727 #ifdef G_OS_WIN32
1728   {
1729     guint len = UNLEN+1;
1730     wchar_t buffer[UNLEN+1];
1731     
1732     if (GetUserNameW (buffer, (LPDWORD) &len))
1733       {
1734         g_user_name = g_utf16_to_utf8 (buffer, -1, NULL, NULL, NULL);
1735         g_real_name = g_strdup (g_user_name);
1736       }
1737   }
1738 #endif /* G_OS_WIN32 */
1739
1740 #endif /* !HAVE_PWD_H */
1741
1742 #ifndef G_OS_WIN32
1743   if (!g_home_dir)
1744     g_home_dir = g_strdup (g_getenv ("HOME"));
1745 #endif
1746
1747 #ifdef __EMX__
1748   /* change '\\' in %HOME% to '/' */
1749   g_strdelimit (g_home_dir, "\\",'/');
1750 #endif
1751   if (!g_user_name)
1752     g_user_name = g_strdup ("somebody");
1753   if (!g_real_name)
1754     g_real_name = g_strdup ("Unknown");
1755
1756   {
1757 #ifndef G_OS_WIN32
1758     gboolean hostname_fail = (gethostname (hostname, sizeof (hostname)) == -1);
1759 #else
1760     DWORD size = sizeof (hostname);
1761     gboolean hostname_fail = (!GetComputerName (hostname, &size));
1762 #endif
1763     g_host_name = g_strdup (hostname_fail ? "localhost" : hostname);
1764   }
1765
1766 #ifdef G_OS_WIN32
1767   g_tmp_dir_cp = g_locale_from_utf8 (g_tmp_dir, -1, NULL, NULL, NULL);
1768   g_user_name_cp = g_locale_from_utf8 (g_user_name, -1, NULL, NULL, NULL);
1769   g_real_name_cp = g_locale_from_utf8 (g_real_name, -1, NULL, NULL, NULL);
1770
1771   if (!g_tmp_dir_cp)
1772     g_tmp_dir_cp = g_strdup ("\\");
1773   if (!g_user_name_cp)
1774     g_user_name_cp = g_strdup ("somebody");
1775   if (!g_real_name_cp)
1776     g_real_name_cp = g_strdup ("Unknown");
1777
1778   /* home_dir might be NULL, unlike tmp_dir, user_name and
1779    * real_name.
1780    */
1781   if (g_home_dir)
1782     g_home_dir_cp = g_locale_from_utf8 (g_home_dir, -1, NULL, NULL, NULL);
1783   else
1784     g_home_dir_cp = NULL;
1785 #endif /* G_OS_WIN32 */
1786 }
1787
1788 static inline void
1789 g_get_any_init (void)
1790 {
1791   if (!g_tmp_dir)
1792     g_get_any_init_do ();
1793 }
1794
1795 static inline void
1796 g_get_any_init_locked (void)
1797 {
1798   G_LOCK (g_utils_global);
1799   g_get_any_init ();
1800   G_UNLOCK (g_utils_global);
1801 }
1802
1803
1804 /**
1805  * g_get_user_name:
1806  *
1807  * Gets the user name of the current user. The encoding of the returned
1808  * string is system-defined. On UNIX, it might be the preferred file name
1809  * encoding, or something else, and there is no guarantee that it is even
1810  * consistent on a machine. On Windows, it is always UTF-8.
1811  *
1812  * Returns: the user name of the current user.
1813  */
1814 G_CONST_RETURN gchar*
1815 g_get_user_name (void)
1816 {
1817   g_get_any_init_locked ();
1818   return g_user_name;
1819 }
1820
1821 /**
1822  * g_get_real_name:
1823  *
1824  * Gets the real name of the user. This usually comes from the user's entry 
1825  * in the <filename>passwd</filename> file. The encoding of the returned 
1826  * string is system-defined. (On Windows, it is, however, always UTF-8.) 
1827  * If the real user name cannot be determined, the string "Unknown" is 
1828  * returned.
1829  *
1830  * Returns: the user's real name.
1831  */
1832 G_CONST_RETURN gchar*
1833 g_get_real_name (void)
1834 {
1835   g_get_any_init_locked ();
1836   return g_real_name;
1837 }
1838
1839 /**
1840  * g_get_home_dir:
1841  *
1842  * Gets the current user's home directory as defined in the 
1843  * password database.
1844  *
1845  * Note that in contrast to traditional UNIX tools, this function 
1846  * prefers <filename>passwd</filename> entries over the <envar>HOME</envar> 
1847  * environment variable. 
1848  *
1849  * One of the reasons for this decision is that applications in many 
1850  * cases need special handling to deal with the case where 
1851  * <envar>HOME</envar> is
1852  * <simplelist>
1853  *   <member>Not owned by the user</member>
1854  *   <member>Not writeable</member>
1855  *   <member>Not even readable</member>
1856  * </simplelist>
1857  * Since applications are in general <emphasis>not</emphasis> written 
1858  * to deal with these situations it was considered better to make 
1859  * g_get_home_dir() not pay attention to <envar>HOME</envar> and to 
1860  * return the real home directory for the user. If applications
1861  * want to pay attention to <envar>HOME</envar>, they can do:
1862  * |[
1863  *  const char *homedir = g_getenv ("HOME");
1864  *   if (!homedir)
1865  *      homedir = g_get_home_dir (<!-- -->);
1866  * ]|
1867  *
1868  * Returns: the current user's home directory
1869  */
1870 G_CONST_RETURN gchar*
1871 g_get_home_dir (void)
1872 {
1873   g_get_any_init_locked ();
1874   return g_home_dir;
1875 }
1876
1877 /**
1878  * g_get_tmp_dir:
1879  *
1880  * Gets the directory to use for temporary files. This is found from 
1881  * inspecting the environment variables <envar>TMPDIR</envar>, 
1882  * <envar>TMP</envar>, and <envar>TEMP</envar> in that order. If none 
1883  * of those are defined "/tmp" is returned on UNIX and "C:\" on Windows. 
1884  * The encoding of the returned string is system-defined. On Windows, 
1885  * it is always UTF-8. The return value is never %NULL or the empty string.
1886  *
1887  * Returns: the directory to use for temporary files.
1888  */
1889 G_CONST_RETURN gchar*
1890 g_get_tmp_dir (void)
1891 {
1892   g_get_any_init_locked ();
1893   return g_tmp_dir;
1894 }
1895
1896 /**
1897  * g_get_host_name:
1898  *
1899  * Return a name for the machine. 
1900  *
1901  * The returned name is not necessarily a fully-qualified domain name,
1902  * or even present in DNS or some other name service at all. It need
1903  * not even be unique on your local network or site, but usually it
1904  * is. Callers should not rely on the return value having any specific
1905  * properties like uniqueness for security purposes. Even if the name
1906  * of the machine is changed while an application is running, the
1907  * return value from this function does not change. The returned
1908  * string is owned by GLib and should not be modified or freed. If no
1909  * name can be determined, a default fixed string "localhost" is
1910  * returned.
1911  *
1912  * Returns: the host name of the machine.
1913  *
1914  * Since: 2.8
1915  */
1916 const gchar *
1917 g_get_host_name (void)
1918 {
1919   g_get_any_init_locked ();
1920   return g_host_name;
1921 }
1922
1923 G_LOCK_DEFINE_STATIC (g_prgname);
1924 static gchar *g_prgname = NULL;
1925
1926 /**
1927  * g_get_prgname:
1928  *
1929  * Gets the name of the program. This name should <emphasis>not</emphasis> 
1930  * be localized, contrast with g_get_application_name().
1931  * (If you are using GDK or GTK+ the program name is set in gdk_init(), 
1932  * which is called by gtk_init(). The program name is found by taking 
1933  * the last component of <literal>argv[0]</literal>.)
1934  *
1935  * Returns: the name of the program. The returned string belongs 
1936  * to GLib and must not be modified or freed.
1937  */
1938 gchar*
1939 g_get_prgname (void)
1940 {
1941   gchar* retval;
1942
1943   G_LOCK (g_prgname);
1944 #ifdef G_OS_WIN32
1945   if (g_prgname == NULL)
1946     {
1947       static gboolean beenhere = FALSE;
1948
1949       if (!beenhere)
1950         {
1951           gchar *utf8_buf = NULL;
1952           wchar_t buf[MAX_PATH+1];
1953
1954           beenhere = TRUE;
1955           if (GetModuleFileNameW (GetModuleHandle (NULL),
1956                                   buf, G_N_ELEMENTS (buf)) > 0)
1957             utf8_buf = g_utf16_to_utf8 (buf, -1, NULL, NULL, NULL);
1958
1959           if (utf8_buf)
1960             {
1961               g_prgname = g_path_get_basename (utf8_buf);
1962               g_free (utf8_buf);
1963             }
1964         }
1965     }
1966 #endif
1967   retval = g_prgname;
1968   G_UNLOCK (g_prgname);
1969
1970   return retval;
1971 }
1972
1973 /**
1974  * g_set_prgname:
1975  * @prgname: the name of the program.
1976  *
1977  * Sets the name of the program. This name should <emphasis>not</emphasis> 
1978  * be localized, contrast with g_set_application_name(). Note that for 
1979  * thread-safety reasons this function can only be called once.
1980  */
1981 void
1982 g_set_prgname (const gchar *prgname)
1983 {
1984   G_LOCK (g_prgname);
1985   g_free (g_prgname);
1986   g_prgname = g_strdup (prgname);
1987   G_UNLOCK (g_prgname);
1988 }
1989
1990 G_LOCK_DEFINE_STATIC (g_application_name);
1991 static gchar *g_application_name = NULL;
1992
1993 /**
1994  * g_get_application_name:
1995  * 
1996  * Gets a human-readable name for the application, as set by
1997  * g_set_application_name(). This name should be localized if
1998  * possible, and is intended for display to the user.  Contrast with
1999  * g_get_prgname(), which gets a non-localized name. If
2000  * g_set_application_name() has not been called, returns the result of
2001  * g_get_prgname() (which may be %NULL if g_set_prgname() has also not
2002  * been called).
2003  * 
2004  * Return value: human-readable application name. may return %NULL
2005  *
2006  * Since: 2.2
2007  **/
2008 G_CONST_RETURN gchar*
2009 g_get_application_name (void)
2010 {
2011   gchar* retval;
2012
2013   G_LOCK (g_application_name);
2014   retval = g_application_name;
2015   G_UNLOCK (g_application_name);
2016
2017   if (retval == NULL)
2018     return g_get_prgname ();
2019   
2020   return retval;
2021 }
2022
2023 /**
2024  * g_set_application_name:
2025  * @application_name: localized name of the application
2026  *
2027  * Sets a human-readable name for the application. This name should be
2028  * localized if possible, and is intended for display to the user.
2029  * Contrast with g_set_prgname(), which sets a non-localized name.
2030  * g_set_prgname() will be called automatically by gtk_init(),
2031  * but g_set_application_name() will not.
2032  *
2033  * Note that for thread safety reasons, this function can only
2034  * be called once.
2035  *
2036  * The application name will be used in contexts such as error messages,
2037  * or when displaying an application's name in the task list.
2038  * 
2039  * Since: 2.2
2040  **/
2041 void
2042 g_set_application_name (const gchar *application_name)
2043 {
2044   gboolean already_set = FALSE;
2045         
2046   G_LOCK (g_application_name);
2047   if (g_application_name)
2048     already_set = TRUE;
2049   else
2050     g_application_name = g_strdup (application_name);
2051   G_UNLOCK (g_application_name);
2052
2053   if (already_set)
2054     g_warning ("g_set_application_name() called multiple times");
2055 }
2056
2057 /**
2058  * g_get_user_data_dir:
2059  * 
2060  * Returns a base directory in which to access application data such
2061  * as icons that is customized for a particular user.  
2062  *
2063  * On UNIX platforms this is determined using the mechanisms described in
2064  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2065  * XDG Base Directory Specification</ulink>.
2066  * In this case the directory retrieved will be XDG_DATA_HOME.
2067  *
2068  * On Windows is the virtual folder that represents the My Documents
2069  * desktop item. See documentation for CSIDL_PERSONAL.
2070  *
2071  * Return value: a string owned by GLib that must not be modified 
2072  *               or freed.
2073  * Since: 2.6
2074  **/
2075 G_CONST_RETURN gchar*
2076 g_get_user_data_dir (void)
2077 {
2078   gchar *data_dir;  
2079
2080   G_LOCK (g_utils_global);
2081
2082   if (!g_user_data_dir)
2083     {
2084 #ifdef G_OS_WIN32
2085       data_dir = get_special_folder (CSIDL_PERSONAL);
2086 #else
2087       data_dir = (gchar *) g_getenv ("XDG_DATA_HOME");
2088
2089       if (data_dir && data_dir[0])
2090         data_dir = g_strdup (data_dir);
2091 #endif
2092       if (!data_dir || !data_dir[0])
2093         {
2094           g_get_any_init ();
2095
2096           if (g_home_dir)
2097             data_dir = g_build_filename (g_home_dir, ".local", 
2098                                          "share", NULL);
2099           else
2100             data_dir = g_build_filename (g_tmp_dir, g_user_name, ".local", 
2101                                          "share", NULL);
2102         }
2103
2104       g_user_data_dir = data_dir;
2105     }
2106   else
2107     data_dir = g_user_data_dir;
2108
2109   G_UNLOCK (g_utils_global);
2110
2111   return data_dir;
2112 }
2113
2114 static void
2115 g_init_user_config_dir (void)
2116 {
2117   gchar *config_dir;
2118
2119   if (!g_user_config_dir)
2120     {
2121 #ifdef G_OS_WIN32
2122       config_dir = get_special_folder (CSIDL_APPDATA);
2123 #else
2124       config_dir = (gchar *) g_getenv ("XDG_CONFIG_HOME");
2125
2126       if (config_dir && config_dir[0])
2127         config_dir = g_strdup (config_dir);
2128 #endif
2129       if (!config_dir || !config_dir[0])
2130         {
2131           g_get_any_init ();
2132
2133           if (g_home_dir)
2134             config_dir = g_build_filename (g_home_dir, ".config", NULL);
2135           else
2136             config_dir = g_build_filename (g_tmp_dir, g_user_name, ".config", NULL);
2137         }
2138
2139       g_user_config_dir = config_dir;
2140     }
2141 }
2142
2143 /**
2144  * g_get_user_config_dir:
2145  * 
2146  * Returns a base directory in which to store user-specific application 
2147  * configuration information such as user preferences and settings. 
2148  *
2149  * On UNIX platforms this is determined using the mechanisms described in
2150  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2151  * XDG Base Directory Specification</ulink>.
2152  * In this case the directory retrieved will be XDG_CONFIG_HOME.
2153  *
2154  * On Windows is the directory that serves as a common repository for
2155  * application-specific data. A typical path is
2156  * C:\Documents and Settings\username\Application. See documentation for
2157  * CSIDL_APPDATA.
2158  *
2159  * Return value: a string owned by GLib that must not be modified 
2160  *               or freed.
2161  * Since: 2.6
2162  **/
2163 G_CONST_RETURN gchar*
2164 g_get_user_config_dir (void)
2165 {
2166   G_LOCK (g_utils_global);
2167
2168   g_init_user_config_dir ();
2169
2170   G_UNLOCK (g_utils_global);
2171
2172   return g_user_config_dir;
2173 }
2174
2175 /**
2176  * g_get_user_cache_dir:
2177  * 
2178  * Returns a base directory in which to store non-essential, cached
2179  * data specific to particular user.
2180  *
2181  * On UNIX platforms this is determined using the mechanisms described in
2182  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2183  * XDG Base Directory Specification</ulink>.
2184  * In this case the directory retrieved will be XDG_CACHE_HOME.
2185  *
2186  * On Windows is the directory that serves as a common repository for
2187  * temporary Internet files. A typical path is
2188  * C:\Documents and Settings\username\Local Settings\Temporary Internet Files.
2189  * See documentation for CSIDL_INTERNET_CACHE.
2190  *
2191  * Return value: a string owned by GLib that must not be modified 
2192  *               or freed.
2193  * Since: 2.6
2194  **/
2195 G_CONST_RETURN gchar*
2196 g_get_user_cache_dir (void)
2197 {
2198   gchar *cache_dir;  
2199
2200   G_LOCK (g_utils_global);
2201
2202   if (!g_user_cache_dir)
2203     {
2204 #ifdef G_OS_WIN32
2205       cache_dir = get_special_folder (CSIDL_INTERNET_CACHE); /* XXX correct? */
2206 #else
2207       cache_dir = (gchar *) g_getenv ("XDG_CACHE_HOME");
2208
2209       if (cache_dir && cache_dir[0])
2210           cache_dir = g_strdup (cache_dir);
2211 #endif
2212       if (!cache_dir || !cache_dir[0])
2213         {
2214           g_get_any_init ();
2215         
2216           if (g_home_dir)
2217             cache_dir = g_build_filename (g_home_dir, ".cache", NULL);
2218           else
2219             cache_dir = g_build_filename (g_tmp_dir, g_user_name, ".cache", NULL);
2220         }
2221       g_user_cache_dir = cache_dir;
2222     }
2223   else
2224     cache_dir = g_user_cache_dir;
2225
2226   G_UNLOCK (g_utils_global);
2227
2228   return cache_dir;
2229 }
2230
2231 #ifdef HAVE_CARBON
2232
2233 static gchar *
2234 find_folder (OSType type)
2235 {
2236   gchar *filename = NULL;
2237   FSRef  found;
2238
2239   if (FSFindFolder (kUserDomain, type, kDontCreateFolder, &found) == noErr)
2240     {
2241       CFURLRef url = CFURLCreateFromFSRef (kCFAllocatorSystemDefault, &found);
2242
2243       if (url)
2244         {
2245           CFStringRef path = CFURLCopyFileSystemPath (url, kCFURLPOSIXPathStyle);
2246
2247           if (path)
2248             {
2249               filename = g_strdup (CFStringGetCStringPtr (path, kCFStringEncodingUTF8));
2250
2251               if (! filename)
2252                 {
2253                   filename = g_new0 (gchar, CFStringGetLength (path) * 3 + 1);
2254
2255                   CFStringGetCString (path, filename,
2256                                       CFStringGetLength (path) * 3 + 1,
2257                                       kCFStringEncodingUTF8);
2258                 }
2259
2260               CFRelease (path);
2261             }
2262
2263           CFRelease (url);
2264         }
2265     }
2266
2267   return filename;
2268 }
2269
2270 static void
2271 load_user_special_dirs (void)
2272 {
2273   g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = find_folder (kDesktopFolderType);
2274   g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = find_folder (kDocumentsFolderType);
2275   g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = find_folder (kDesktopFolderType); /* XXX correct ? */
2276   g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = find_folder (kMusicDocumentsFolderType);
2277   g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = find_folder (kPictureDocumentsFolderType);
2278   g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = NULL;
2279   g_user_special_dirs[G_USER_DIRECTORY_TEMPLATES] = NULL;
2280   g_user_special_dirs[G_USER_DIRECTORY_VIDEOS] = find_folder (kMovieDocumentsFolderType);
2281 }
2282
2283 #endif /* HAVE_CARBON */
2284
2285 #if defined(G_OS_WIN32)
2286 static void
2287 load_user_special_dirs (void)
2288 {
2289   typedef HRESULT (WINAPI *t_SHGetKnownFolderPath) (const GUID *rfid,
2290                                                     DWORD dwFlags,
2291                                                     HANDLE hToken,
2292                                                     PWSTR *ppszPath);
2293   t_SHGetKnownFolderPath p_SHGetKnownFolderPath;
2294
2295   static const GUID FOLDERID_Downloads =
2296     { 0x374de290, 0x123f, 0x4565, { 0x91, 0x64, 0x39, 0xc4, 0x92, 0x5e, 0x46, 0x7b } };
2297   static const GUID FOLDERID_Public =
2298     { 0xDFDF76A2, 0xC82A, 0x4D63, { 0x90, 0x6A, 0x56, 0x44, 0xAC, 0x45, 0x73, 0x85 } };
2299
2300   wchar_t *wcp;
2301
2302   p_SHGetKnownFolderPath = (t_SHGetKnownFolderPath) GetProcAddress (GetModuleHandle ("shell32.dll"),
2303                                                                     "SHGetKnownFolderPath");
2304
2305   g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
2306   g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = get_special_folder (CSIDL_PERSONAL);
2307
2308   if (p_SHGetKnownFolderPath == NULL)
2309     {
2310       g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
2311     }
2312   else
2313     {
2314       wcp = NULL;
2315       (*p_SHGetKnownFolderPath) (&FOLDERID_Downloads, 0, NULL, &wcp);
2316       g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = g_utf16_to_utf8 (wcp, -1, NULL, NULL, NULL);
2317       if (g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] == NULL)
2318         g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
2319       CoTaskMemFree (wcp);
2320     }
2321
2322   g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = get_special_folder (CSIDL_MYMUSIC);
2323   g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = get_special_folder (CSIDL_MYPICTURES);
2324
2325   if (p_SHGetKnownFolderPath == NULL)
2326     {
2327       /* XXX */
2328       g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
2329     }
2330   else
2331     {
2332       wcp = NULL;
2333       (*p_SHGetKnownFolderPath) (&FOLDERID_Public, 0, NULL, &wcp);
2334       g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = g_utf16_to_utf8 (wcp, -1, NULL, NULL, NULL);
2335       if (g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] == NULL)
2336         g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
2337       CoTaskMemFree (wcp);
2338     }
2339   
2340   g_user_special_dirs[G_USER_DIRECTORY_TEMPLATES] = get_special_folder (CSIDL_TEMPLATES);
2341   g_user_special_dirs[G_USER_DIRECTORY_VIDEOS] = get_special_folder (CSIDL_MYVIDEO);
2342 }
2343 #endif /* G_OS_WIN32 */
2344
2345 static void g_init_user_config_dir (void);
2346
2347 #if defined(G_OS_UNIX) && !defined(HAVE_CARBON)
2348
2349 /* adapted from xdg-user-dir-lookup.c
2350  *
2351  * Copyright (C) 2007 Red Hat Inc.
2352  *
2353  * Permission is hereby granted, free of charge, to any person
2354  * obtaining a copy of this software and associated documentation files
2355  * (the "Software"), to deal in the Software without restriction,
2356  * including without limitation the rights to use, copy, modify, merge,
2357  * publish, distribute, sublicense, and/or sell copies of the Software,
2358  * and to permit persons to whom the Software is furnished to do so,
2359  * subject to the following conditions: 
2360  *
2361  * The above copyright notice and this permission notice shall be
2362  * included in all copies or substantial portions of the Software. 
2363  *
2364  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2365  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2366  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2367  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2368  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
2369  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2370  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2371  * SOFTWARE.
2372  */
2373 static void
2374 load_user_special_dirs (void)
2375 {
2376   gchar *config_file;
2377   gchar *data;
2378   gchar **lines;
2379   gint n_lines, i;
2380   
2381   g_init_user_config_dir ();
2382   config_file = g_build_filename (g_user_config_dir,
2383                                   "user-dirs.dirs",
2384                                   NULL);
2385   
2386   if (!g_file_get_contents (config_file, &data, NULL, NULL))
2387     {
2388       g_free (config_file);
2389       return;
2390     }
2391
2392   lines = g_strsplit (data, "\n", -1);
2393   n_lines = g_strv_length (lines);
2394   g_free (data);
2395   
2396   for (i = 0; i < n_lines; i++)
2397     {
2398       gchar *buffer = lines[i];
2399       gchar *d, *p;
2400       gint len;
2401       gboolean is_relative = FALSE;
2402       GUserDirectory directory;
2403
2404       /* Remove newline at end */
2405       len = strlen (buffer);
2406       if (len > 0 && buffer[len - 1] == '\n')
2407         buffer[len - 1] = 0;
2408       
2409       p = buffer;
2410       while (*p == ' ' || *p == '\t')
2411         p++;
2412       
2413       if (strncmp (p, "XDG_DESKTOP_DIR", strlen ("XDG_DESKTOP_DIR")) == 0)
2414         {
2415           directory = G_USER_DIRECTORY_DESKTOP;
2416           p += strlen ("XDG_DESKTOP_DIR");
2417         }
2418       else if (strncmp (p, "XDG_DOCUMENTS_DIR", strlen ("XDG_DOCUMENTS_DIR")) == 0)
2419         {
2420           directory = G_USER_DIRECTORY_DOCUMENTS;
2421           p += strlen ("XDG_DOCUMENTS_DIR");
2422         }
2423       else if (strncmp (p, "XDG_DOWNLOAD_DIR", strlen ("XDG_DOWNLOAD_DIR")) == 0)
2424         {
2425           directory = G_USER_DIRECTORY_DOWNLOAD;
2426           p += strlen ("XDG_DOWNLOAD_DIR");
2427         }
2428       else if (strncmp (p, "XDG_MUSIC_DIR", strlen ("XDG_MUSIC_DIR")) == 0)
2429         {
2430           directory = G_USER_DIRECTORY_MUSIC;
2431           p += strlen ("XDG_MUSIC_DIR");
2432         }
2433       else if (strncmp (p, "XDG_PICTURES_DIR", strlen ("XDG_PICTURES_DIR")) == 0)
2434         {
2435           directory = G_USER_DIRECTORY_PICTURES;
2436           p += strlen ("XDG_PICTURES_DIR");
2437         }
2438       else if (strncmp (p, "XDG_PUBLICSHARE_DIR", strlen ("XDG_PUBLICSHARE_DIR")) == 0)
2439         {
2440           directory = G_USER_DIRECTORY_PUBLIC_SHARE;
2441           p += strlen ("XDG_PUBLICSHARE_DIR");
2442         }
2443       else if (strncmp (p, "XDG_TEMPLATES_DIR", strlen ("XDG_TEMPLATES_DIR")) == 0)
2444         {
2445           directory = G_USER_DIRECTORY_TEMPLATES;
2446           p += strlen ("XDG_TEMPLATES_DIR");
2447         }
2448       else if (strncmp (p, "XDG_VIDEOS_DIR", strlen ("XDG_VIDEOS_DIR")) == 0)
2449         {
2450           directory = G_USER_DIRECTORY_VIDEOS;
2451           p += strlen ("XDG_VIDEOS_DIR");
2452         }
2453       else
2454         continue;
2455
2456       while (*p == ' ' || *p == '\t')
2457         p++;
2458
2459       if (*p != '=')
2460         continue;
2461       p++;
2462
2463       while (*p == ' ' || *p == '\t')
2464         p++;
2465
2466       if (*p != '"')
2467         continue;
2468       p++;
2469
2470       if (strncmp (p, "$HOME", 5) == 0)
2471         {
2472           p += 5;
2473           is_relative = TRUE;
2474         }
2475       else if (*p != '/')
2476         continue;
2477
2478       d = strrchr (p, '"');
2479       if (!d)
2480         continue;
2481       *d = 0;
2482
2483       d = p;
2484       
2485       /* remove trailing slashes */
2486       len = strlen (d);
2487       if (d[len - 1] == '/')
2488         d[len - 1] = 0;
2489       
2490       if (is_relative)
2491         {
2492           g_get_any_init ();
2493           g_user_special_dirs[directory] = g_build_filename (g_home_dir, d, NULL);
2494         }
2495       else
2496         g_user_special_dirs[directory] = g_strdup (d);
2497     }
2498
2499   g_strfreev (lines);
2500   g_free (config_file);
2501 }
2502
2503 #endif /* G_OS_UNIX && !HAVE_CARBON */
2504
2505
2506 /**
2507  * g_reload_user_special_dirs_cache:
2508  *
2509  * Resets the cache used for g_get_user_special_dir(), so
2510  * that the latest on-disk version is used. Call this only
2511  * if you just changed the data on disk yourself.
2512  *
2513  * Due to threadsafety issues this may cause leaking of strings
2514  * that were previously returned from g_get_user_special_dir()
2515  * that can't be freed. We ensure to only leak the data for
2516  * the directories that actually changed value though.
2517  *
2518  * Since: 2.22
2519  */
2520 void
2521 g_reload_user_special_dirs_cache (void)
2522 {
2523   int i;
2524
2525   G_LOCK (g_utils_global);
2526
2527   if (g_user_special_dirs != NULL)
2528     {
2529       /* save a copy of the pointer, to check if some memory can be preserved */
2530       char **old_g_user_special_dirs = g_user_special_dirs;
2531       char *old_val;
2532
2533       /* recreate and reload our cache */
2534       g_user_special_dirs = g_new0 (gchar *, G_USER_N_DIRECTORIES);
2535       load_user_special_dirs ();
2536
2537       /* only leak changed directories */
2538       for (i = 0; i < G_USER_N_DIRECTORIES; i++)
2539         {
2540           old_val = old_g_user_special_dirs[i];
2541           if (g_strcmp0 (old_val, g_user_special_dirs[i]) == 0)
2542             {
2543               /* don't leak */
2544               g_free (g_user_special_dirs[i]);
2545               g_user_special_dirs[i] = old_val;
2546             }
2547           else
2548             g_free (old_val);
2549         }
2550
2551       /* free the old array */
2552       g_free (old_g_user_special_dirs);
2553     }
2554
2555   G_UNLOCK (g_utils_global);
2556 }
2557
2558 /**
2559  * g_get_user_special_dir:
2560  * @directory: the logical id of special directory
2561  *
2562  * Returns the full path of a special directory using its logical id.
2563  *
2564  * On Unix this is done using the XDG special user directories.
2565  * For compatibility with existing practise, %G_USER_DIRECTORY_DESKTOP
2566  * falls back to <filename>$HOME/Desktop</filename> when XDG special
2567  * user directories have not been set up. 
2568  *
2569  * Depending on the platform, the user might be able to change the path
2570  * of the special directory without requiring the session to restart; GLib
2571  * will not reflect any change once the special directories are loaded.
2572  *
2573  * Return value: the path to the specified special directory, or %NULL
2574  *   if the logical id was not found. The returned string is owned by
2575  *   GLib and should not be modified or freed.
2576  *
2577  * Since: 2.14
2578  */
2579 G_CONST_RETURN gchar *
2580 g_get_user_special_dir (GUserDirectory directory)
2581 {
2582   g_return_val_if_fail (directory >= G_USER_DIRECTORY_DESKTOP &&
2583                         directory < G_USER_N_DIRECTORIES, NULL);
2584
2585   G_LOCK (g_utils_global);
2586
2587   if (G_UNLIKELY (g_user_special_dirs == NULL))
2588     {
2589       g_user_special_dirs = g_new0 (gchar *, G_USER_N_DIRECTORIES);
2590
2591       load_user_special_dirs ();
2592
2593       /* Special-case desktop for historical compatibility */
2594       if (g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] == NULL)
2595         {
2596           g_get_any_init ();
2597
2598           g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] =
2599             g_build_filename (g_home_dir, "Desktop", NULL);
2600         }
2601     }
2602
2603   G_UNLOCK (g_utils_global);
2604
2605   return g_user_special_dirs[directory];
2606 }
2607
2608 #ifdef G_OS_WIN32
2609
2610 #undef g_get_system_data_dirs
2611
2612 static HMODULE
2613 get_module_for_address (gconstpointer address)
2614 {
2615   /* Holds the g_utils_global lock */
2616
2617   static gboolean beenhere = FALSE;
2618   typedef BOOL (WINAPI *t_GetModuleHandleExA) (DWORD, LPCTSTR, HMODULE *);
2619   static t_GetModuleHandleExA p_GetModuleHandleExA = NULL;
2620   HMODULE hmodule = NULL;
2621
2622   if (!address)
2623     return NULL;
2624
2625   if (!beenhere)
2626     {
2627       p_GetModuleHandleExA =
2628         (t_GetModuleHandleExA) GetProcAddress (GetModuleHandle ("kernel32.dll"),
2629                                                "GetModuleHandleExA");
2630       beenhere = TRUE;
2631     }
2632
2633   if (p_GetModuleHandleExA == NULL ||
2634       !(*p_GetModuleHandleExA) (GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
2635                                 GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
2636                                 address, &hmodule))
2637     {
2638       MEMORY_BASIC_INFORMATION mbi;
2639       VirtualQuery (address, &mbi, sizeof (mbi));
2640       hmodule = (HMODULE) mbi.AllocationBase;
2641     }
2642
2643   return hmodule;
2644 }
2645
2646 static gchar *
2647 get_module_share_dir (gconstpointer address)
2648 {
2649   HMODULE hmodule;
2650   gchar *filename;
2651   gchar *retval;
2652
2653   hmodule = get_module_for_address (address);
2654   if (hmodule == NULL)
2655     return NULL;
2656
2657   filename = g_win32_get_package_installation_directory_of_module (hmodule);
2658   retval = g_build_filename (filename, "share", NULL);
2659   g_free (filename);
2660
2661   return retval;
2662 }
2663
2664 G_CONST_RETURN gchar * G_CONST_RETURN *
2665 g_win32_get_system_data_dirs_for_module (void (*address_of_function)())
2666 {
2667   GArray *data_dirs;
2668   HMODULE hmodule;
2669   static GHashTable *per_module_data_dirs = NULL;
2670   gchar **retval;
2671   gchar *p;
2672   gchar *exe_root;
2673       
2674   if (address_of_function)
2675     {
2676       G_LOCK (g_utils_global);
2677       hmodule = get_module_for_address (address_of_function);
2678       if (hmodule != NULL)
2679         {
2680           if (per_module_data_dirs == NULL)
2681             per_module_data_dirs = g_hash_table_new (NULL, NULL);
2682           else
2683             {
2684               retval = g_hash_table_lookup (per_module_data_dirs, hmodule);
2685               
2686               if (retval != NULL)
2687                 {
2688                   G_UNLOCK (g_utils_global);
2689                   return (G_CONST_RETURN gchar * G_CONST_RETURN *) retval;
2690                 }
2691             }
2692         }
2693     }
2694
2695   data_dirs = g_array_new (TRUE, TRUE, sizeof (char *));
2696
2697   /* Documents and Settings\All Users\Application Data */
2698   p = get_special_folder (CSIDL_COMMON_APPDATA);
2699   if (p)
2700     g_array_append_val (data_dirs, p);
2701   
2702   /* Documents and Settings\All Users\Documents */
2703   p = get_special_folder (CSIDL_COMMON_DOCUMENTS);
2704   if (p)
2705     g_array_append_val (data_dirs, p);
2706         
2707   /* Using the above subfolders of Documents and Settings perhaps
2708    * makes sense from a Windows perspective.
2709    *
2710    * But looking at the actual use cases of this function in GTK+
2711    * and GNOME software, what we really want is the "share"
2712    * subdirectory of the installation directory for the package
2713    * our caller is a part of.
2714    *
2715    * The address_of_function parameter, if non-NULL, points to a
2716    * function in the calling module. Use that to determine that
2717    * module's installation folder, and use its "share" subfolder.
2718    *
2719    * Additionally, also use the "share" subfolder of the installation
2720    * locations of GLib and the .exe file being run.
2721    *
2722    * To guard against none of the above being what is really wanted,
2723    * callers of this function should have Win32-specific code to look
2724    * up their installation folder themselves, and handle a subfolder
2725    * "share" of it in the same way as the folders returned from this
2726    * function.
2727    */
2728
2729   p = get_module_share_dir (address_of_function);
2730   if (p)
2731     g_array_append_val (data_dirs, p);
2732     
2733   if (glib_dll != NULL)
2734     {
2735       gchar *glib_root = g_win32_get_package_installation_directory_of_module (glib_dll);
2736       p = g_build_filename (glib_root, "share", NULL);
2737       if (p)
2738         g_array_append_val (data_dirs, p);
2739       g_free (glib_root);
2740     }
2741   
2742   exe_root = g_win32_get_package_installation_directory_of_module (NULL);
2743   p = g_build_filename (exe_root, "share", NULL);
2744   if (p)
2745     g_array_append_val (data_dirs, p);
2746   g_free (exe_root);
2747
2748   retval = (gchar **) g_array_free (data_dirs, FALSE);
2749
2750   if (address_of_function)
2751     {
2752       if (hmodule != NULL)
2753         g_hash_table_insert (per_module_data_dirs, hmodule, retval);
2754       G_UNLOCK (g_utils_global);
2755     }
2756
2757   return (G_CONST_RETURN gchar * G_CONST_RETURN *) retval;
2758 }
2759
2760 #endif
2761
2762 /**
2763  * g_get_system_data_dirs:
2764  * 
2765  * Returns an ordered list of base directories in which to access 
2766  * system-wide application data.
2767  *
2768  * On UNIX platforms this is determined using the mechanisms described in
2769  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2770  * XDG Base Directory Specification</ulink>
2771  * In this case the list of directories retrieved will be XDG_DATA_DIRS.
2772  *
2773  * On Windows the first elements in the list are the Application Data
2774  * and Documents folders for All Users. (These can be determined only
2775  * on Windows 2000 or later and are not present in the list on other
2776  * Windows versions.) See documentation for CSIDL_COMMON_APPDATA and
2777  * CSIDL_COMMON_DOCUMENTS.
2778  *
2779  * Then follows the "share" subfolder in the installation folder for
2780  * the package containing the DLL that calls this function, if it can
2781  * be determined.
2782  * 
2783  * Finally the list contains the "share" subfolder in the installation
2784  * folder for GLib, and in the installation folder for the package the
2785  * application's .exe file belongs to.
2786  *
2787  * The installation folders above are determined by looking up the
2788  * folder where the module (DLL or EXE) in question is located. If the
2789  * folder's name is "bin", its parent is used, otherwise the folder
2790  * itself.
2791  *
2792  * Note that on Windows the returned list can vary depending on where
2793  * this function is called.
2794  *
2795  * Return value: a %NULL-terminated array of strings owned by GLib that must 
2796  *               not be modified or freed.
2797  * Since: 2.6
2798  **/
2799 G_CONST_RETURN gchar * G_CONST_RETURN * 
2800 g_get_system_data_dirs (void)
2801 {
2802   gchar **data_dir_vector;
2803
2804   G_LOCK (g_utils_global);
2805
2806   if (!g_system_data_dirs)
2807     {
2808 #ifdef G_OS_WIN32
2809       data_dir_vector = (gchar **) g_win32_get_system_data_dirs_for_module (NULL);
2810 #else
2811       gchar *data_dirs = (gchar *) g_getenv ("XDG_DATA_DIRS");
2812
2813       if (!data_dirs || !data_dirs[0])
2814           data_dirs = "/usr/local/share/:/usr/share/";
2815
2816       data_dir_vector = g_strsplit (data_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2817 #endif
2818
2819       g_system_data_dirs = data_dir_vector;
2820     }
2821   else
2822     data_dir_vector = g_system_data_dirs;
2823
2824   G_UNLOCK (g_utils_global);
2825
2826   return (G_CONST_RETURN gchar * G_CONST_RETURN *) data_dir_vector;
2827 }
2828
2829 /**
2830  * g_get_system_config_dirs:
2831  * 
2832  * Returns an ordered list of base directories in which to access 
2833  * system-wide configuration information.
2834  *
2835  * On UNIX platforms this is determined using the mechanisms described in
2836  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2837  * XDG Base Directory Specification</ulink>.
2838  * In this case the list of directories retrieved will be XDG_CONFIG_DIRS.
2839  *
2840  * On Windows is the directory that contains application data for all users.
2841  * A typical path is C:\Documents and Settings\All Users\Application Data.
2842  * This folder is used for application data that is not user specific.
2843  * For example, an application can store a spell-check dictionary, a database
2844  * of clip art, or a log file in the CSIDL_COMMON_APPDATA folder.
2845  * This information will not roam and is available to anyone using the computer.
2846  *
2847  * Return value: a %NULL-terminated array of strings owned by GLib that must 
2848  *               not be modified or freed.
2849  * Since: 2.6
2850  **/
2851 G_CONST_RETURN gchar * G_CONST_RETURN *
2852 g_get_system_config_dirs (void)
2853 {
2854   gchar *conf_dirs, **conf_dir_vector;
2855
2856   G_LOCK (g_utils_global);
2857
2858   if (!g_system_config_dirs)
2859     {
2860 #ifdef G_OS_WIN32
2861       conf_dirs = get_special_folder (CSIDL_COMMON_APPDATA);
2862       if (conf_dirs)
2863         {
2864           conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2865           g_free (conf_dirs);
2866         }
2867       else
2868         {
2869           /* Return empty list */
2870           conf_dir_vector = g_strsplit ("", G_SEARCHPATH_SEPARATOR_S, 0);
2871         }
2872 #else
2873       conf_dirs = (gchar *) g_getenv ("XDG_CONFIG_DIRS");
2874
2875       if (!conf_dirs || !conf_dirs[0])
2876           conf_dirs = "/etc/xdg";
2877
2878       conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2879 #endif
2880
2881       g_system_config_dirs = conf_dir_vector;
2882     }
2883   else
2884     conf_dir_vector = g_system_config_dirs;
2885   G_UNLOCK (g_utils_global);
2886
2887   return (G_CONST_RETURN gchar * G_CONST_RETURN *) conf_dir_vector;
2888 }
2889
2890 #ifndef G_OS_WIN32
2891
2892 static GHashTable *alias_table = NULL;
2893
2894 /* read an alias file for the locales */
2895 static void
2896 read_aliases (gchar *file)
2897 {
2898   FILE *fp;
2899   char buf[256];
2900   
2901   if (!alias_table)
2902     alias_table = g_hash_table_new (g_str_hash, g_str_equal);
2903   fp = fopen (file,"r");
2904   if (!fp)
2905     return;
2906   while (fgets (buf, 256, fp))
2907     {
2908       char *p, *q;
2909
2910       g_strstrip (buf);
2911
2912       /* Line is a comment */
2913       if ((buf[0] == '#') || (buf[0] == '\0'))
2914         continue;
2915
2916       /* Reads first column */
2917       for (p = buf, q = NULL; *p; p++) {
2918         if ((*p == '\t') || (*p == ' ') || (*p == ':')) {
2919           *p = '\0';
2920           q = p+1;
2921           while ((*q == '\t') || (*q == ' ')) {
2922             q++;
2923           }
2924           break;
2925         }
2926       }
2927       /* The line only had one column */
2928       if (!q || *q == '\0')
2929         continue;
2930       
2931       /* Read second column */
2932       for (p = q; *p; p++) {
2933         if ((*p == '\t') || (*p == ' ')) {
2934           *p = '\0';
2935           break;
2936         }
2937       }
2938
2939       /* Add to alias table if necessary */
2940       if (!g_hash_table_lookup (alias_table, buf)) {
2941         g_hash_table_insert (alias_table, g_strdup (buf), g_strdup (q));
2942       }
2943     }
2944   fclose (fp);
2945 }
2946
2947 #endif
2948
2949 static char *
2950 unalias_lang (char *lang)
2951 {
2952 #ifndef G_OS_WIN32
2953   char *p;
2954   int i;
2955
2956   if (!alias_table)
2957     read_aliases ("/usr/share/locale/locale.alias");
2958
2959   i = 0;
2960   while ((p = g_hash_table_lookup (alias_table, lang)) && (strcmp (p, lang) != 0))
2961     {
2962       lang = p;
2963       if (i++ == 30)
2964         {
2965           static gboolean said_before = FALSE;
2966           if (!said_before)
2967             g_warning ("Too many alias levels for a locale, "
2968                        "may indicate a loop");
2969           said_before = TRUE;
2970           return lang;
2971         }
2972     }
2973 #endif
2974   return lang;
2975 }
2976
2977 /* Mask for components of locale spec. The ordering here is from
2978  * least significant to most significant
2979  */
2980 enum
2981 {
2982   COMPONENT_CODESET =   1 << 0,
2983   COMPONENT_TERRITORY = 1 << 1,
2984   COMPONENT_MODIFIER =  1 << 2
2985 };
2986
2987 /* Break an X/Open style locale specification into components
2988  */
2989 static guint
2990 explode_locale (const gchar *locale,
2991                 gchar      **language, 
2992                 gchar      **territory, 
2993                 gchar      **codeset, 
2994                 gchar      **modifier)
2995 {
2996   const gchar *uscore_pos;
2997   const gchar *at_pos;
2998   const gchar *dot_pos;
2999
3000   guint mask = 0;
3001
3002   uscore_pos = strchr (locale, '_');
3003   dot_pos = strchr (uscore_pos ? uscore_pos : locale, '.');
3004   at_pos = strchr (dot_pos ? dot_pos : (uscore_pos ? uscore_pos : locale), '@');
3005
3006   if (at_pos)
3007     {
3008       mask |= COMPONENT_MODIFIER;
3009       *modifier = g_strdup (at_pos);
3010     }
3011   else
3012     at_pos = locale + strlen (locale);
3013
3014   if (dot_pos)
3015     {
3016       mask |= COMPONENT_CODESET;
3017       *codeset = g_strndup (dot_pos, at_pos - dot_pos);
3018     }
3019   else
3020     dot_pos = at_pos;
3021
3022   if (uscore_pos)
3023     {
3024       mask |= COMPONENT_TERRITORY;
3025       *territory = g_strndup (uscore_pos, dot_pos - uscore_pos);
3026     }
3027   else
3028     uscore_pos = dot_pos;
3029
3030   *language = g_strndup (locale, uscore_pos - locale);
3031
3032   return mask;
3033 }
3034
3035 /*
3036  * Compute all interesting variants for a given locale name -
3037  * by stripping off different components of the value.
3038  *
3039  * For simplicity, we assume that the locale is in
3040  * X/Open format: language[_territory][.codeset][@modifier]
3041  *
3042  * TODO: Extend this to handle the CEN format (see the GNUlibc docs)
3043  *       as well. We could just copy the code from glibc wholesale
3044  *       but it is big, ugly, and complicated, so I'm reluctant
3045  *       to do so when this should handle 99% of the time...
3046  */
3047 GSList *
3048 _g_compute_locale_variants (const gchar *locale)
3049 {
3050   GSList *retval = NULL;
3051
3052   gchar *language = NULL;
3053   gchar *territory = NULL;
3054   gchar *codeset = NULL;
3055   gchar *modifier = NULL;
3056
3057   guint mask;
3058   guint i;
3059
3060   g_return_val_if_fail (locale != NULL, NULL);
3061
3062   mask = explode_locale (locale, &language, &territory, &codeset, &modifier);
3063
3064   /* Iterate through all possible combinations, from least attractive
3065    * to most attractive.
3066    */
3067   for (i = 0; i <= mask; i++)
3068     if ((i & ~mask) == 0)
3069       {
3070         gchar *val = g_strconcat (language,
3071                                   (i & COMPONENT_TERRITORY) ? territory : "",
3072                                   (i & COMPONENT_CODESET) ? codeset : "",
3073                                   (i & COMPONENT_MODIFIER) ? modifier : "",
3074                                   NULL);
3075         retval = g_slist_prepend (retval, val);
3076       }
3077
3078   g_free (language);
3079   if (mask & COMPONENT_CODESET)
3080     g_free (codeset);
3081   if (mask & COMPONENT_TERRITORY)
3082     g_free (territory);
3083   if (mask & COMPONENT_MODIFIER)
3084     g_free (modifier);
3085
3086   return retval;
3087 }
3088
3089 /* The following is (partly) taken from the gettext package.
3090    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.  */
3091
3092 static const gchar *
3093 guess_category_value (const gchar *category_name)
3094 {
3095   const gchar *retval;
3096
3097   /* The highest priority value is the `LANGUAGE' environment
3098      variable.  This is a GNU extension.  */
3099   retval = g_getenv ("LANGUAGE");
3100   if ((retval != NULL) && (retval[0] != '\0'))
3101     return retval;
3102
3103   /* `LANGUAGE' is not set.  So we have to proceed with the POSIX
3104      methods of looking to `LC_ALL', `LC_xxx', and `LANG'.  On some
3105      systems this can be done by the `setlocale' function itself.  */
3106
3107   /* Setting of LC_ALL overwrites all other.  */
3108   retval = g_getenv ("LC_ALL");  
3109   if ((retval != NULL) && (retval[0] != '\0'))
3110     return retval;
3111
3112   /* Next comes the name of the desired category.  */
3113   retval = g_getenv (category_name);
3114   if ((retval != NULL) && (retval[0] != '\0'))
3115     return retval;
3116
3117   /* Last possibility is the LANG environment variable.  */
3118   retval = g_getenv ("LANG");
3119   if ((retval != NULL) && (retval[0] != '\0'))
3120     return retval;
3121
3122 #ifdef G_PLATFORM_WIN32
3123   /* g_win32_getlocale() first checks for LC_ALL, LC_MESSAGES and
3124    * LANG, which we already did above. Oh well. The main point of
3125    * calling g_win32_getlocale() is to get the thread's locale as used
3126    * by Windows and the Microsoft C runtime (in the "English_United
3127    * States" format) translated into the Unixish format.
3128    */
3129   {
3130     char *locale = g_win32_getlocale ();
3131     retval = g_intern_string (locale);
3132     g_free (locale);
3133     return retval;
3134   }
3135 #endif  
3136
3137   return NULL;
3138 }
3139
3140 typedef struct _GLanguageNamesCache GLanguageNamesCache;
3141
3142 struct _GLanguageNamesCache {
3143   gchar *languages;
3144   gchar **language_names;
3145 };
3146
3147 static void
3148 language_names_cache_free (gpointer data)
3149 {
3150   GLanguageNamesCache *cache = data;
3151   g_free (cache->languages);
3152   g_strfreev (cache->language_names);
3153   g_free (cache);
3154 }
3155
3156 /**
3157  * g_get_language_names:
3158  * 
3159  * Computes a list of applicable locale names, which can be used to 
3160  * e.g. construct locale-dependent filenames or search paths. The returned 
3161  * list is sorted from most desirable to least desirable and always contains 
3162  * the default locale "C".
3163  *
3164  * For example, if LANGUAGE=de:en_US, then the returned list is
3165  * "de", "en_US", "en", "C".
3166  *
3167  * This function consults the environment variables <envar>LANGUAGE</envar>, 
3168  * <envar>LC_ALL</envar>, <envar>LC_MESSAGES</envar> and <envar>LANG</envar> 
3169  * to find the list of locales specified by the user.
3170  * 
3171  * Return value: a %NULL-terminated array of strings owned by GLib 
3172  *    that must not be modified or freed.
3173  *
3174  * Since: 2.6
3175  **/
3176 G_CONST_RETURN gchar * G_CONST_RETURN * 
3177 g_get_language_names (void)
3178 {
3179   static GStaticPrivate cache_private = G_STATIC_PRIVATE_INIT;
3180   GLanguageNamesCache *cache = g_static_private_get (&cache_private);
3181   const gchar *value;
3182
3183   if (!cache)
3184     {
3185       cache = g_new0 (GLanguageNamesCache, 1);
3186       g_static_private_set (&cache_private, cache, language_names_cache_free);
3187     }
3188
3189   value = guess_category_value ("LC_MESSAGES");
3190   if (!value)
3191     value = "C";
3192
3193   if (!(cache->languages && strcmp (cache->languages, value) == 0))
3194     {
3195       gchar **languages;
3196       gchar **alist, **a;
3197       GSList *list, *l;
3198       gint i;
3199
3200       g_free (cache->languages);
3201       g_strfreev (cache->language_names);
3202       cache->languages = g_strdup (value);
3203
3204       alist = g_strsplit (value, ":", 0);
3205       list = NULL;
3206       for (a = alist; *a; a++)
3207         {
3208           gchar *b = unalias_lang (*a);
3209           list = g_slist_concat (list, _g_compute_locale_variants (b));
3210         }
3211       g_strfreev (alist);
3212       list = g_slist_append (list, g_strdup ("C"));
3213
3214       cache->language_names = languages = g_new (gchar *, g_slist_length (list) + 1);
3215       for (l = list, i = 0; l; l = l->next, i++)
3216         languages[i] = l->data;
3217       languages[i] = NULL;
3218
3219       g_slist_free (list);
3220     }
3221
3222   return (G_CONST_RETURN gchar * G_CONST_RETURN *) cache->language_names;
3223 }
3224
3225 /**
3226  * g_direct_hash:
3227  * @v: a #gpointer key
3228  *
3229  * Converts a gpointer to a hash value.
3230  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3231  * when using pointers as keys in a #GHashTable.
3232  *
3233  * Returns: a hash value corresponding to the key.
3234  */
3235 guint
3236 g_direct_hash (gconstpointer v)
3237 {
3238   return GPOINTER_TO_UINT (v);
3239 }
3240
3241 /**
3242  * g_direct_equal:
3243  * @v1: a key.
3244  * @v2: a key to compare with @v1.
3245  *
3246  * Compares two #gpointer arguments and returns %TRUE if they are equal.
3247  * It can be passed to g_hash_table_new() as the @key_equal_func
3248  * parameter, when using pointers as keys in a #GHashTable.
3249  * 
3250  * Returns: %TRUE if the two keys match.
3251  */
3252 gboolean
3253 g_direct_equal (gconstpointer v1,
3254                 gconstpointer v2)
3255 {
3256   return v1 == v2;
3257 }
3258
3259 /**
3260  * g_int_equal:
3261  * @v1: a pointer to a #gint key.
3262  * @v2: a pointer to a #gint key to compare with @v1.
3263  *
3264  * Compares the two #gint values being pointed to and returns 
3265  * %TRUE if they are equal.
3266  * It can be passed to g_hash_table_new() as the @key_equal_func
3267  * parameter, when using pointers to integers as keys in a #GHashTable.
3268  * 
3269  * Returns: %TRUE if the two keys match.
3270  */
3271 gboolean
3272 g_int_equal (gconstpointer v1,
3273              gconstpointer v2)
3274 {
3275   return *((const gint*) v1) == *((const gint*) v2);
3276 }
3277
3278 /**
3279  * g_int_hash:
3280  * @v: a pointer to a #gint key
3281  *
3282  * Converts a pointer to a #gint to a hash value.
3283  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3284  * when using pointers to integers values as keys in a #GHashTable.
3285  *
3286  * Returns: a hash value corresponding to the key.
3287  */
3288 guint
3289 g_int_hash (gconstpointer v)
3290 {
3291   return *(const gint*) v;
3292 }
3293
3294 /**
3295  * g_int64_equal:
3296  * @v1: a pointer to a #gint64 key.
3297  * @v2: a pointer to a #gint64 key to compare with @v1.
3298  *
3299  * Compares the two #gint64 values being pointed to and returns 
3300  * %TRUE if they are equal.
3301  * It can be passed to g_hash_table_new() as the @key_equal_func
3302  * parameter, when using pointers to 64-bit integers as keys in a #GHashTable.
3303  * 
3304  * Returns: %TRUE if the two keys match.
3305  *
3306  * Since: 2.22
3307  */
3308 gboolean
3309 g_int64_equal (gconstpointer v1,
3310                gconstpointer v2)
3311 {
3312   return *((const gint64*) v1) == *((const gint64*) v2);
3313 }
3314
3315 /**
3316  * g_int64_hash:
3317  * @v: a pointer to a #gint64 key
3318  *
3319  * Converts a pointer to a #gint64 to a hash value.
3320  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3321  * when using pointers to 64-bit integers values as keys in a #GHashTable.
3322  *
3323  * Returns: a hash value corresponding to the key.
3324  *
3325  * Since: 2.22
3326  */
3327 guint
3328 g_int64_hash (gconstpointer v)
3329 {
3330   return (guint) *(const gint64*) v;
3331 }
3332
3333 /**
3334  * g_double_equal:
3335  * @v1: a pointer to a #gdouble key.
3336  * @v2: a pointer to a #gdouble key to compare with @v1.
3337  *
3338  * Compares the two #gdouble values being pointed to and returns 
3339  * %TRUE if they are equal.
3340  * It can be passed to g_hash_table_new() as the @key_equal_func
3341  * parameter, when using pointers to doubles as keys in a #GHashTable.
3342  * 
3343  * Returns: %TRUE if the two keys match.
3344  *
3345  * Since: 2.22
3346  */
3347 gboolean
3348 g_double_equal (gconstpointer v1,
3349                 gconstpointer v2)
3350 {
3351   return *((const gdouble*) v1) == *((const gdouble*) v2);
3352 }
3353
3354 /**
3355  * g_double_hash:
3356  * @v: a pointer to a #gdouble key
3357  *
3358  * Converts a pointer to a #gdouble to a hash value.
3359  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3360  * when using pointers to doubles as keys in a #GHashTable.
3361  *
3362  * Returns: a hash value corresponding to the key.
3363  *
3364  * Since: 2.22
3365  */
3366 guint
3367 g_double_hash (gconstpointer v)
3368 {
3369   return (guint) *(const gdouble*) v;
3370 }
3371
3372 /**
3373  * g_nullify_pointer:
3374  * @nullify_location: the memory address of the pointer.
3375  * 
3376  * Set the pointer at the specified location to %NULL.
3377  **/
3378 void
3379 g_nullify_pointer (gpointer *nullify_location)
3380 {
3381   g_return_if_fail (nullify_location != NULL);
3382
3383   *nullify_location = NULL;
3384 }
3385
3386 /**
3387  * g_get_codeset:
3388  * 
3389  * Get the codeset for the current locale.
3390  * 
3391  * Return value: a newly allocated string containing the name
3392  * of the codeset. This string must be freed with g_free().
3393  **/
3394 gchar *
3395 g_get_codeset (void)
3396 {
3397   const gchar *charset;
3398
3399   g_get_charset (&charset);
3400
3401   return g_strdup (charset);
3402 }
3403
3404 /* This is called from g_thread_init(). It's used to
3405  * initialize some static data in a threadsafe way.
3406  */
3407 void
3408 _g_utils_thread_init (void)
3409 {
3410   g_get_language_names ();
3411 }
3412
3413 #ifdef G_OS_WIN32
3414
3415 /**
3416  * _glib_get_locale_dir:
3417  *
3418  * Return the path to the share\locale or lib\locale subfolder of the
3419  * GLib installation folder. The path is in the system codepage. We
3420  * have to use system codepage as bindtextdomain() doesn't have a
3421  * UTF-8 interface.
3422  */
3423 static gchar *
3424 _glib_get_locale_dir (void)
3425 {
3426   gchar *install_dir = NULL, *locale_dir;
3427   gchar *retval = NULL;
3428
3429   if (glib_dll != NULL)
3430     install_dir = g_win32_get_package_installation_directory_of_module (glib_dll);
3431
3432   if (install_dir)
3433     {
3434       /*
3435        * Append "/share/locale" or "/lib/locale" depending on whether
3436        * autoconfigury detected GNU gettext or not.
3437        */
3438       const char *p = GLIB_LOCALE_DIR + strlen (GLIB_LOCALE_DIR);
3439       while (*--p != '/')
3440         ;
3441       while (*--p != '/')
3442         ;
3443
3444       locale_dir = g_build_filename (install_dir, p, NULL);
3445
3446       retval = g_win32_locale_filename_from_utf8 (locale_dir);
3447
3448       g_free (install_dir);
3449       g_free (locale_dir);
3450     }
3451
3452   if (retval)
3453     return retval;
3454   else
3455     return g_strdup ("");
3456 }
3457
3458 #undef GLIB_LOCALE_DIR
3459
3460 #endif /* G_OS_WIN32 */
3461
3462 /**
3463  * glib_gettext:
3464  * @str: The string to be translated
3465  *
3466  * Returns the translated string from the glib translations.
3467  * This is an internal function and should only be used by
3468  * the internals of glib (such as libgio).
3469  *
3470  * Returns: the transation of @str to the current locale
3471  */
3472 G_CONST_RETURN gchar *
3473 glib_gettext (const gchar *str)
3474 {
3475   static gboolean _glib_gettext_initialized = FALSE;
3476
3477   if (!_glib_gettext_initialized)
3478     {
3479 #ifdef G_OS_WIN32
3480       gchar *tmp = _glib_get_locale_dir ();
3481       bindtextdomain (GETTEXT_PACKAGE, tmp);
3482       g_free (tmp);
3483 #else
3484       bindtextdomain (GETTEXT_PACKAGE, GLIB_LOCALE_DIR);
3485 #endif
3486 #    ifdef HAVE_BIND_TEXTDOMAIN_CODESET
3487       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
3488 #    endif
3489       _glib_gettext_initialized = TRUE;
3490     }
3491   
3492   return g_dgettext (GETTEXT_PACKAGE, str);
3493 }
3494
3495 #if defined (G_OS_WIN32) && !defined (_WIN64)
3496
3497 /* Binary compatibility versions. Not for newly compiled code. */
3498
3499 #undef g_find_program_in_path
3500
3501 gchar*
3502 g_find_program_in_path (const gchar *program)
3503 {
3504   gchar *utf8_program = g_locale_to_utf8 (program, -1, NULL, NULL, NULL);
3505   gchar *utf8_retval = g_find_program_in_path_utf8 (utf8_program);
3506   gchar *retval;
3507
3508   g_free (utf8_program);
3509   if (utf8_retval == NULL)
3510     return NULL;
3511   retval = g_locale_from_utf8 (utf8_retval, -1, NULL, NULL, NULL);
3512   g_free (utf8_retval);
3513
3514   return retval;
3515 }
3516
3517 #undef g_get_current_dir
3518
3519 gchar*
3520 g_get_current_dir (void)
3521 {
3522   gchar *utf8_dir = g_get_current_dir_utf8 ();
3523   gchar *dir = g_locale_from_utf8 (utf8_dir, -1, NULL, NULL, NULL);
3524   g_free (utf8_dir);
3525   return dir;
3526 }
3527
3528 #undef g_getenv
3529
3530 G_CONST_RETURN gchar*
3531 g_getenv (const gchar *variable)
3532 {
3533   gchar *utf8_variable = g_locale_to_utf8 (variable, -1, NULL, NULL, NULL);
3534   const gchar *utf8_value = g_getenv_utf8 (utf8_variable);
3535   gchar *value;
3536   GQuark quark;
3537
3538   g_free (utf8_variable);
3539   if (!utf8_value)
3540     return NULL;
3541   value = g_locale_from_utf8 (utf8_value, -1, NULL, NULL, NULL);
3542   quark = g_quark_from_string (value);
3543   g_free (value);
3544
3545   return g_quark_to_string (quark);
3546 }
3547
3548 #undef g_setenv
3549
3550 gboolean
3551 g_setenv (const gchar *variable, 
3552           const gchar *value, 
3553           gboolean     overwrite)
3554 {
3555   gchar *utf8_variable = g_locale_to_utf8 (variable, -1, NULL, NULL, NULL);
3556   gchar *utf8_value = g_locale_to_utf8 (value, -1, NULL, NULL, NULL);
3557   gboolean retval = g_setenv_utf8 (utf8_variable, utf8_value, overwrite);
3558
3559   g_free (utf8_variable);
3560   g_free (utf8_value);
3561
3562   return retval;
3563 }
3564
3565 #undef g_unsetenv
3566
3567 void
3568 g_unsetenv (const gchar *variable)
3569 {
3570   gchar *utf8_variable = g_locale_to_utf8 (variable, -1, NULL, NULL, NULL);
3571
3572   g_unsetenv_utf8 (utf8_variable);
3573
3574   g_free (utf8_variable);
3575 }
3576
3577 #undef g_get_user_name
3578
3579 G_CONST_RETURN gchar*
3580 g_get_user_name (void)
3581 {
3582   g_get_any_init_locked ();
3583   return g_user_name_cp;
3584 }
3585
3586 #undef g_get_real_name
3587
3588 G_CONST_RETURN gchar*
3589 g_get_real_name (void)
3590 {
3591   g_get_any_init_locked ();
3592   return g_real_name_cp;
3593 }
3594
3595 #undef g_get_home_dir
3596
3597 G_CONST_RETURN gchar*
3598 g_get_home_dir (void)
3599 {
3600   g_get_any_init_locked ();
3601   return g_home_dir_cp;
3602 }
3603
3604 #undef g_get_tmp_dir
3605
3606 G_CONST_RETURN gchar*
3607 g_get_tmp_dir (void)
3608 {
3609   g_get_any_init_locked ();
3610   return g_tmp_dir_cp;
3611 }
3612
3613 #endif