g_get_user_runtime_dir(): New function
[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  * Note that this is a somewhat vague concept on Windows.
806  *
807  * On POSIX systems, an absolute file name is well-defined. It always
808  * starts from the single root directory. For example "/usr/local".
809  *
810  * On Windows, the concepts of current drive and drive-specific
811  * current directory introduce vagueness. This function interprets as
812  * an absolute file name one that either begins with a directory
813  * separator such as "\Users\tml" or begins with the root on a drive,
814  * for example "C:\Windows". The first case also includes UNC paths
815  * such as "\\myserver\docs\foo". In all cases, either slashes or
816  * backslashes are accepted.
817  *
818  * Note that a file name relative to the current drive root does not
819  * truly specify a file uniquely over time and across processes, as
820  * the current drive is a per-process value and can be changed.
821  *
822  * File names relative the current directory on some specific drive,
823  * such as "D:foo/bar", are not interpreted as absolute by this
824  * function, but they obviously are not relative to the normal current
825  * directory as returned by getcwd() or g_get_current_dir()
826  * either. Such paths should be avoided, or need to be handled using
827  * Windows-specific code.
828  *
829  * Returns: %TRUE if @file_name is absolute. 
830  */
831 gboolean
832 g_path_is_absolute (const gchar *file_name)
833 {
834   g_return_val_if_fail (file_name != NULL, FALSE);
835   
836   if (G_IS_DIR_SEPARATOR (file_name[0]))
837     return TRUE;
838
839 #ifdef G_OS_WIN32
840   /* Recognize drive letter on native Windows */
841   if (g_ascii_isalpha (file_name[0]) && 
842       file_name[1] == ':' && G_IS_DIR_SEPARATOR (file_name[2]))
843     return TRUE;
844 #endif /* G_OS_WIN32 */
845
846   return FALSE;
847 }
848
849 /**
850  * g_path_skip_root:
851  * @file_name: a file name.
852  *
853  * Returns a pointer into @file_name after the root component, i.e. after
854  * the "/" in UNIX or "C:\" under Windows. If @file_name is not an absolute
855  * path it returns %NULL.
856  *
857  * Returns: a pointer into @file_name after the root component.
858  */
859 G_CONST_RETURN gchar*
860 g_path_skip_root (const gchar *file_name)
861 {
862   g_return_val_if_fail (file_name != NULL, NULL);
863   
864 #ifdef G_PLATFORM_WIN32
865   /* Skip \\server\share or //server/share */
866   if (G_IS_DIR_SEPARATOR (file_name[0]) &&
867       G_IS_DIR_SEPARATOR (file_name[1]) &&
868       file_name[2] &&
869       !G_IS_DIR_SEPARATOR (file_name[2]))
870     {
871       gchar *p;
872
873       p = strchr (file_name + 2, G_DIR_SEPARATOR);
874 #ifdef G_OS_WIN32
875       {
876         gchar *q = strchr (file_name + 2, '/');
877         if (p == NULL || (q != NULL && q < p))
878           p = q;
879       }
880 #endif
881       if (p &&
882           p > file_name + 2 &&
883           p[1])
884         {
885           file_name = p + 1;
886
887           while (file_name[0] && !G_IS_DIR_SEPARATOR (file_name[0]))
888             file_name++;
889
890           /* Possibly skip a backslash after the share name */
891           if (G_IS_DIR_SEPARATOR (file_name[0]))
892             file_name++;
893
894           return (gchar *)file_name;
895         }
896     }
897 #endif
898   
899   /* Skip initial slashes */
900   if (G_IS_DIR_SEPARATOR (file_name[0]))
901     {
902       while (G_IS_DIR_SEPARATOR (file_name[0]))
903         file_name++;
904       return (gchar *)file_name;
905     }
906
907 #ifdef G_OS_WIN32
908   /* Skip X:\ */
909   if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':' && G_IS_DIR_SEPARATOR (file_name[2]))
910     return (gchar *)file_name + 3;
911 #endif
912
913   return NULL;
914 }
915
916 /**
917  * g_path_get_dirname:
918  * @file_name: the name of the file.
919  *
920  * Gets the directory components of a file name.  If the file name has no
921  * directory components "." is returned.  The returned string should be
922  * freed when no longer needed.
923  * 
924  * Returns: the directory components of the file.
925  */
926 gchar*
927 g_path_get_dirname (const gchar    *file_name)
928 {
929   register gchar *base;
930   register gsize len;    
931   
932   g_return_val_if_fail (file_name != NULL, NULL);
933   
934   base = strrchr (file_name, G_DIR_SEPARATOR);
935 #ifdef G_OS_WIN32
936   {
937     gchar *q = strrchr (file_name, '/');
938     if (base == NULL || (q != NULL && q > base))
939         base = q;
940   }
941 #endif
942   if (!base)
943     {
944 #ifdef G_OS_WIN32
945       if (g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
946         {
947           gchar drive_colon_dot[4];
948
949           drive_colon_dot[0] = file_name[0];
950           drive_colon_dot[1] = ':';
951           drive_colon_dot[2] = '.';
952           drive_colon_dot[3] = '\0';
953
954           return g_strdup (drive_colon_dot);
955         }
956 #endif
957     return g_strdup (".");
958     }
959
960   while (base > file_name && G_IS_DIR_SEPARATOR (*base))
961     base--;
962
963 #ifdef G_OS_WIN32
964   /* base points to the char before the last slash.
965    *
966    * In case file_name is the root of a drive (X:\) or a child of the
967    * root of a drive (X:\foo), include the slash.
968    *
969    * In case file_name is the root share of an UNC path
970    * (\\server\share), add a slash, returning \\server\share\ .
971    *
972    * In case file_name is a direct child of a share in an UNC path
973    * (\\server\share\foo), include the slash after the share name,
974    * returning \\server\share\ .
975    */
976   if (base == file_name + 1 && g_ascii_isalpha (file_name[0]) && file_name[1] == ':')
977     base++;
978   else if (G_IS_DIR_SEPARATOR (file_name[0]) &&
979            G_IS_DIR_SEPARATOR (file_name[1]) &&
980            file_name[2] &&
981            !G_IS_DIR_SEPARATOR (file_name[2]) &&
982            base >= file_name + 2)
983     {
984       const gchar *p = file_name + 2;
985       while (*p && !G_IS_DIR_SEPARATOR (*p))
986         p++;
987       if (p == base + 1)
988         {
989           len = (guint) strlen (file_name) + 1;
990           base = g_new (gchar, len + 1);
991           strcpy (base, file_name);
992           base[len-1] = G_DIR_SEPARATOR;
993           base[len] = 0;
994           return base;
995         }
996       if (G_IS_DIR_SEPARATOR (*p))
997         {
998           p++;
999           while (*p && !G_IS_DIR_SEPARATOR (*p))
1000             p++;
1001           if (p == base + 1)
1002             base++;
1003         }
1004     }
1005 #endif
1006
1007   len = (guint) 1 + base - file_name;
1008   
1009   base = g_new (gchar, len + 1);
1010   g_memmove (base, file_name, len);
1011   base[len] = 0;
1012   
1013   return base;
1014 }
1015
1016 /**
1017  * g_get_current_dir:
1018  *
1019  * Gets the current directory.
1020  * The returned string should be freed when no longer needed. The encoding 
1021  * of the returned string is system defined. On Windows, it is always UTF-8.
1022  * 
1023  * Returns: the current directory.
1024  */
1025 gchar*
1026 g_get_current_dir (void)
1027 {
1028 #ifdef G_OS_WIN32
1029
1030   gchar *dir = NULL;
1031   wchar_t dummy[2], *wdir;
1032   int len;
1033
1034   len = GetCurrentDirectoryW (2, dummy);
1035   wdir = g_new (wchar_t, len);
1036
1037   if (GetCurrentDirectoryW (len, wdir) == len - 1)
1038     dir = g_utf16_to_utf8 (wdir, -1, NULL, NULL, NULL);
1039   
1040   g_free (wdir);
1041
1042   if (dir == NULL)
1043     dir = g_strdup ("\\");
1044
1045   return dir;
1046
1047 #else
1048
1049   gchar *buffer = NULL;
1050   gchar *dir = NULL;
1051   static gulong max_len = 0;
1052
1053   if (max_len == 0) 
1054     max_len = (G_PATH_LENGTH == -1) ? 2048 : G_PATH_LENGTH;
1055   
1056   /* We don't use getcwd(3) on SUNOS, because, it does a popen("pwd")
1057    * and, if that wasn't bad enough, hangs in doing so.
1058    */
1059 #if     (defined (sun) && !defined (__SVR4)) || !defined(HAVE_GETCWD)
1060   buffer = g_new (gchar, max_len + 1);
1061   *buffer = 0;
1062   dir = getwd (buffer);
1063 #else   /* !sun || !HAVE_GETCWD */
1064   while (max_len < G_MAXULONG / 2)
1065     {
1066       g_free (buffer);
1067       buffer = g_new (gchar, max_len + 1);
1068       *buffer = 0;
1069       dir = getcwd (buffer, max_len);
1070
1071       if (dir || errno != ERANGE)
1072         break;
1073
1074       max_len *= 2;
1075     }
1076 #endif  /* !sun || !HAVE_GETCWD */
1077   
1078   if (!dir || !*buffer)
1079     {
1080       /* hm, should we g_error() out here?
1081        * this can happen if e.g. "./" has mode \0000
1082        */
1083       buffer[0] = G_DIR_SEPARATOR;
1084       buffer[1] = 0;
1085     }
1086
1087   dir = g_strdup (buffer);
1088   g_free (buffer);
1089   
1090   return dir;
1091 #endif /* !Win32 */
1092 }
1093
1094 /**
1095  * g_getenv:
1096  * @variable: the environment variable to get, in the GLib file name encoding.
1097  * 
1098  * Returns the value of an environment variable. The name and value
1099  * are in the GLib file name encoding. On UNIX, this means the actual
1100  * bytes which might or might not be in some consistent character set
1101  * and encoding. On Windows, it is in UTF-8. On Windows, in case the
1102  * environment variable's value contains references to other
1103  * environment variables, they are expanded.
1104  * 
1105  * Return value: the value of the environment variable, or %NULL if
1106  * the environment variable is not found. The returned string may be
1107  * overwritten by the next call to g_getenv(), g_setenv() or
1108  * g_unsetenv().
1109  **/
1110 G_CONST_RETURN gchar*
1111 g_getenv (const gchar *variable)
1112 {
1113 #ifndef G_OS_WIN32
1114
1115   g_return_val_if_fail (variable != NULL, NULL);
1116
1117   return getenv (variable);
1118
1119 #else /* G_OS_WIN32 */
1120
1121   GQuark quark;
1122   gchar *value;
1123   wchar_t dummy[2], *wname, *wvalue;
1124   int len;
1125
1126   g_return_val_if_fail (variable != NULL, NULL);
1127   g_return_val_if_fail (g_utf8_validate (variable, -1, NULL), NULL);
1128
1129   /* On Windows NT, it is relatively typical that environment
1130    * variables contain references to other environment variables. If
1131    * so, use ExpandEnvironmentStrings(). (In an ideal world, such
1132    * environment variables would be stored in the Registry as
1133    * REG_EXPAND_SZ type values, and would then get automatically
1134    * expanded before a program sees them. But there is broken software
1135    * that stores environment variables as REG_SZ values even if they
1136    * contain references to other environment variables.)
1137    */
1138
1139   wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL);
1140
1141   len = GetEnvironmentVariableW (wname, dummy, 2);
1142
1143   if (len == 0)
1144     {
1145       g_free (wname);
1146       return NULL;
1147     }
1148   else if (len == 1)
1149     len = 2;
1150
1151   wvalue = g_new (wchar_t, len);
1152
1153   if (GetEnvironmentVariableW (wname, wvalue, len) != len - 1)
1154     {
1155       g_free (wname);
1156       g_free (wvalue);
1157       return NULL;
1158     }
1159
1160   if (wcschr (wvalue, L'%') != NULL)
1161     {
1162       wchar_t *tem = wvalue;
1163
1164       len = ExpandEnvironmentStringsW (wvalue, dummy, 2);
1165
1166       if (len > 0)
1167         {
1168           wvalue = g_new (wchar_t, len);
1169
1170           if (ExpandEnvironmentStringsW (tem, wvalue, len) != len)
1171             {
1172               g_free (wvalue);
1173               wvalue = tem;
1174             }
1175           else
1176             g_free (tem);
1177         }
1178     }
1179
1180   value = g_utf16_to_utf8 (wvalue, -1, NULL, NULL, NULL);
1181
1182   g_free (wname);
1183   g_free (wvalue);
1184
1185   quark = g_quark_from_string (value);
1186   g_free (value);
1187   
1188   return g_quark_to_string (quark);
1189
1190 #endif /* G_OS_WIN32 */
1191 }
1192
1193 /* _g_getenv_nomalloc
1194  * this function does a getenv() without doing any kind of allocation
1195  * through glib. it's suitable for chars <= 127 only (both, for the
1196  * variable name and the contents) and for contents < 1024 chars in
1197  * length. also, it aliases "" to a NULL return value.
1198  **/
1199 const gchar*
1200 _g_getenv_nomalloc (const gchar *variable,
1201                     gchar        buffer[1024])
1202 {
1203   const gchar *retval = getenv (variable);
1204   if (retval && retval[0])
1205     {
1206       gint l = strlen (retval);
1207       if (l < 1024)
1208         {
1209           strncpy (buffer, retval, l);
1210           buffer[l] = 0;
1211           return buffer;
1212         }
1213     }
1214   return NULL;
1215 }
1216
1217 /**
1218  * g_setenv:
1219  * @variable: the environment variable to set, must not contain '='.
1220  * @value: the value for to set the variable to.
1221  * @overwrite: whether to change the variable if it already exists.
1222  *
1223  * Sets an environment variable. Both the variable's name and value
1224  * should be in the GLib file name encoding. On UNIX, this means that
1225  * they can be any sequence of bytes. On Windows, they should be in
1226  * UTF-8.
1227  *
1228  * Note that on some systems, when variables are overwritten, the memory 
1229  * used for the previous variables and its value isn't reclaimed.
1230  *
1231  * Returns: %FALSE if the environment variable couldn't be set.
1232  *
1233  * Since: 2.4
1234  */
1235 gboolean
1236 g_setenv (const gchar *variable, 
1237           const gchar *value, 
1238           gboolean     overwrite)
1239 {
1240 #ifndef G_OS_WIN32
1241
1242   gint result;
1243 #ifndef HAVE_SETENV
1244   gchar *string;
1245 #endif
1246
1247   g_return_val_if_fail (variable != NULL, FALSE);
1248   g_return_val_if_fail (strchr (variable, '=') == NULL, FALSE);
1249
1250 #ifdef HAVE_SETENV
1251   result = setenv (variable, value, overwrite);
1252 #else
1253   if (!overwrite && getenv (variable) != NULL)
1254     return TRUE;
1255   
1256   /* This results in a leak when you overwrite existing
1257    * settings. It would be fairly easy to fix this by keeping
1258    * our own parallel array or hash table.
1259    */
1260   string = g_strconcat (variable, "=", value, NULL);
1261   result = putenv (string);
1262 #endif
1263   return result == 0;
1264
1265 #else /* G_OS_WIN32 */
1266
1267   gboolean retval;
1268   wchar_t *wname, *wvalue, *wassignment;
1269   gchar *tem;
1270
1271   g_return_val_if_fail (variable != NULL, FALSE);
1272   g_return_val_if_fail (strchr (variable, '=') == NULL, FALSE);
1273   g_return_val_if_fail (g_utf8_validate (variable, -1, NULL), FALSE);
1274   g_return_val_if_fail (g_utf8_validate (value, -1, NULL), FALSE);
1275
1276   if (!overwrite && g_getenv (variable) != NULL)
1277     return TRUE;
1278
1279   /* We want to (if possible) set both the environment variable copy
1280    * kept by the C runtime and the one kept by the system.
1281    *
1282    * We can't use only the C runtime's putenv or _wputenv() as that
1283    * won't work for arbitrary Unicode strings in a "non-Unicode" app
1284    * (with main() and not wmain()). In a "main()" app the C runtime
1285    * initializes the C runtime's environment table by converting the
1286    * real (wide char) environment variables to system codepage, thus
1287    * breaking those that aren't representable in the system codepage.
1288    *
1289    * As the C runtime's putenv() will also set the system copy, we do
1290    * the putenv() first, then call SetEnvironmentValueW ourselves.
1291    */
1292
1293   wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL);
1294   wvalue = g_utf8_to_utf16 (value, -1, NULL, NULL, NULL);
1295   tem = g_strconcat (variable, "=", value, NULL);
1296   wassignment = g_utf8_to_utf16 (tem, -1, NULL, NULL, NULL);
1297     
1298   g_free (tem);
1299   _wputenv (wassignment);
1300   g_free (wassignment);
1301
1302   retval = (SetEnvironmentVariableW (wname, wvalue) != 0);
1303
1304   g_free (wname);
1305   g_free (wvalue);
1306
1307   return retval;
1308
1309 #endif /* G_OS_WIN32 */
1310 }
1311
1312 #ifdef HAVE__NSGETENVIRON
1313 #define environ (*_NSGetEnviron())
1314 #elif !defined(G_OS_WIN32)
1315
1316 /* According to the Single Unix Specification, environ is not in 
1317  * any system header, although unistd.h often declares it.
1318  */
1319 extern char **environ;
1320 #endif
1321
1322 /**
1323  * g_unsetenv:
1324  * @variable: the environment variable to remove, must not contain '='.
1325  * 
1326  * Removes an environment variable from the environment.
1327  *
1328  * Note that on some systems, when variables are overwritten, the memory 
1329  * used for the previous variables and its value isn't reclaimed.
1330  * Furthermore, this function can't be guaranteed to operate in a 
1331  * threadsafe way.
1332  *
1333  * Since: 2.4 
1334  **/
1335 void
1336 g_unsetenv (const gchar *variable)
1337 {
1338 #ifndef G_OS_WIN32
1339
1340 #ifdef HAVE_UNSETENV
1341   g_return_if_fail (variable != NULL);
1342   g_return_if_fail (strchr (variable, '=') == NULL);
1343
1344   unsetenv (variable);
1345 #else /* !HAVE_UNSETENV */
1346   int len;
1347   gchar **e, **f;
1348
1349   g_return_if_fail (variable != NULL);
1350   g_return_if_fail (strchr (variable, '=') == NULL);
1351
1352   len = strlen (variable);
1353   
1354   /* Mess directly with the environ array.
1355    * This seems to be the only portable way to do this.
1356    *
1357    * Note that we remove *all* environment entries for
1358    * the variable name, not just the first.
1359    */
1360   e = f = environ;
1361   while (*e != NULL) 
1362     {
1363       if (strncmp (*e, variable, len) != 0 || (*e)[len] != '=') 
1364         {
1365           *f = *e;
1366           f++;
1367         }
1368       e++;
1369     }
1370   *f = NULL;
1371 #endif /* !HAVE_UNSETENV */
1372
1373 #else  /* G_OS_WIN32 */
1374
1375   wchar_t *wname, *wassignment;
1376   gchar *tem;
1377
1378   g_return_if_fail (variable != NULL);
1379   g_return_if_fail (strchr (variable, '=') == NULL);
1380   g_return_if_fail (g_utf8_validate (variable, -1, NULL));
1381
1382   wname = g_utf8_to_utf16 (variable, -1, NULL, NULL, NULL);
1383   tem = g_strconcat (variable, "=", NULL);
1384   wassignment = g_utf8_to_utf16 (tem, -1, NULL, NULL, NULL);
1385     
1386   g_free (tem);
1387   _wputenv (wassignment);
1388   g_free (wassignment);
1389
1390   SetEnvironmentVariableW (wname, NULL);
1391
1392   g_free (wname);
1393
1394 #endif /* G_OS_WIN32 */
1395 }
1396
1397 /**
1398  * g_listenv:
1399  *
1400  * Gets the names of all variables set in the environment.
1401  * 
1402  * Returns: a %NULL-terminated list of strings which must be freed
1403  * with g_strfreev().
1404  *
1405  * Programs that want to be portable to Windows should typically use
1406  * this function and g_getenv() instead of using the environ array
1407  * from the C library directly. On Windows, the strings in the environ
1408  * array are in system codepage encoding, while in most of the typical
1409  * use cases for environment variables in GLib-using programs you want
1410  * the UTF-8 encoding that this function and g_getenv() provide.
1411  *
1412  * Since: 2.8
1413  */
1414 gchar **
1415 g_listenv (void)
1416 {
1417 #ifndef G_OS_WIN32
1418   gchar **result, *eq;
1419   gint len, i, j;
1420
1421   len = g_strv_length (environ);
1422   result = g_new0 (gchar *, len + 1);
1423   
1424   j = 0;
1425   for (i = 0; i < len; i++)
1426     {
1427       eq = strchr (environ[i], '=');
1428       if (eq)
1429         result[j++] = g_strndup (environ[i], eq - environ[i]);
1430     }
1431
1432   result[j] = NULL;
1433
1434   return result;
1435 #else
1436   gchar **result, *eq;
1437   gint len = 0, j;
1438   wchar_t *p, *q;
1439
1440   p = (wchar_t *) GetEnvironmentStringsW ();
1441   if (p != NULL)
1442     {
1443       q = p;
1444       while (*q)
1445         {
1446           q += wcslen (q) + 1;
1447           len++;
1448         }
1449     }
1450   result = g_new0 (gchar *, len + 1);
1451
1452   j = 0;
1453   q = p;
1454   while (*q)
1455     {
1456       result[j] = g_utf16_to_utf8 (q, -1, NULL, NULL, NULL);
1457       if (result[j] != NULL)
1458         {
1459           eq = strchr (result[j], '=');
1460           if (eq && eq > result[j])
1461             {
1462               *eq = '\0';
1463               j++;
1464             }
1465           else
1466             g_free (result[j]);
1467         }
1468       q += wcslen (q) + 1;
1469     }
1470   result[j] = NULL;
1471   FreeEnvironmentStringsW (p);
1472
1473   return result;
1474 #endif
1475 }
1476
1477 /**
1478  * g_get_environ:
1479  * 
1480  * Gets the list of environment variables for the current process.  The
1481  * list is %NULL terminated and each item in the list is of the form
1482  * 'NAME=VALUE'.
1483  *
1484  * This is equivalent to direct access to the 'environ' global variable,
1485  * except portable.
1486  *
1487  * The return value is freshly allocated and it should be freed with
1488  * g_strfreev() when it is no longer needed.
1489  *
1490  * Returns: the list of environment variables
1491  *
1492  * Since: 2.28
1493  */
1494 gchar **
1495 g_get_environ (void)
1496 {
1497 #ifndef G_OS_WIN32
1498   return g_strdupv (environ);
1499 #else
1500   gunichar2 *strings;
1501   gchar **result;
1502   gint i, n;
1503
1504   strings = GetEnvironmentStringsW ();
1505   for (n = 0; strings[n]; n += wcslen (strings + n) + 1);
1506   result = g_new (char *, n + 1);
1507   for (i = 0; strings[i]; i += wcslen (strings + i) + 1)
1508     result[i] = g_utf16_to_utf8 (strings + i, -1, NULL, NULL, NULL);
1509   FreeEnvironmentStringsW (strings);
1510   result[i] = NULL;
1511
1512   return result;
1513 #endif
1514 }
1515
1516 G_LOCK_DEFINE_STATIC (g_utils_global);
1517
1518 static  gchar   *g_tmp_dir = NULL;
1519 static  gchar   *g_user_name = NULL;
1520 static  gchar   *g_real_name = NULL;
1521 static  gchar   *g_home_dir = NULL;
1522 static  gchar   *g_host_name = NULL;
1523
1524 #ifdef G_OS_WIN32
1525 /* System codepage versions of the above, kept at file level so that they,
1526  * too, are produced only once.
1527  */
1528 static  gchar   *g_tmp_dir_cp = NULL;
1529 static  gchar   *g_user_name_cp = NULL;
1530 static  gchar   *g_real_name_cp = NULL;
1531 static  gchar   *g_home_dir_cp = NULL;
1532 #endif
1533
1534 static  gchar   *g_user_data_dir = NULL;
1535 static  gchar  **g_system_data_dirs = NULL;
1536 static  gchar   *g_user_cache_dir = NULL;
1537 static  gchar   *g_user_config_dir = NULL;
1538 static  gchar  **g_system_config_dirs = NULL;
1539
1540 static  gchar  **g_user_special_dirs = NULL;
1541
1542 /* fifteen minutes of fame for everybody */
1543 #define G_USER_DIRS_EXPIRE      15 * 60
1544
1545 #ifdef G_OS_WIN32
1546
1547 static gchar *
1548 get_special_folder (int csidl)
1549 {
1550   wchar_t path[MAX_PATH+1];
1551   HRESULT hr;
1552   LPITEMIDLIST pidl = NULL;
1553   BOOL b;
1554   gchar *retval = NULL;
1555
1556   hr = SHGetSpecialFolderLocation (NULL, csidl, &pidl);
1557   if (hr == S_OK)
1558     {
1559       b = SHGetPathFromIDListW (pidl, path);
1560       if (b)
1561         retval = g_utf16_to_utf8 (path, -1, NULL, NULL, NULL);
1562       CoTaskMemFree (pidl);
1563     }
1564   return retval;
1565 }
1566
1567 static char *
1568 get_windows_directory_root (void)
1569 {
1570   wchar_t wwindowsdir[MAX_PATH];
1571
1572   if (GetWindowsDirectoryW (wwindowsdir, G_N_ELEMENTS (wwindowsdir)))
1573     {
1574       /* Usually X:\Windows, but in terminal server environments
1575        * might be an UNC path, AFAIK.
1576        */
1577       char *windowsdir = g_utf16_to_utf8 (wwindowsdir, -1, NULL, NULL, NULL);
1578       char *p;
1579
1580       if (windowsdir == NULL)
1581         return g_strdup ("C:\\");
1582
1583       p = (char *) g_path_skip_root (windowsdir);
1584       if (G_IS_DIR_SEPARATOR (p[-1]) && p[-2] != ':')
1585         p--;
1586       *p = '\0';
1587       return windowsdir;
1588     }
1589   else
1590     return g_strdup ("C:\\");
1591 }
1592
1593 #endif
1594
1595 /* HOLDS: g_utils_global_lock */
1596 static void
1597 g_get_any_init_do (void)
1598 {
1599   gchar hostname[100];
1600
1601   g_tmp_dir = g_strdup (g_getenv ("TMPDIR"));
1602   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1603     g_tmp_dir = g_strdup (g_getenv ("TMP"));
1604   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1605     g_tmp_dir = g_strdup (g_getenv ("TEMP"));
1606
1607 #ifdef G_OS_WIN32
1608   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1609     g_tmp_dir = get_windows_directory_root ();
1610 #else  
1611 #ifdef P_tmpdir
1612   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1613     {
1614       gsize k;    
1615       g_tmp_dir = g_strdup (P_tmpdir);
1616       k = strlen (g_tmp_dir);
1617       if (k > 1 && G_IS_DIR_SEPARATOR (g_tmp_dir[k - 1]))
1618         g_tmp_dir[k - 1] = '\0';
1619     }
1620 #endif
1621   
1622   if (g_tmp_dir == NULL || *g_tmp_dir == '\0')
1623     {
1624       g_tmp_dir = g_strdup ("/tmp");
1625     }
1626 #endif  /* !G_OS_WIN32 */
1627   
1628 #ifdef G_OS_WIN32
1629   /* We check $HOME first for Win32, though it is a last resort for Unix
1630    * where we prefer the results of getpwuid().
1631    */
1632   g_home_dir = g_strdup (g_getenv ("HOME"));
1633
1634   /* Only believe HOME if it is an absolute path and exists */
1635   if (g_home_dir)
1636     {
1637       if (!(g_path_is_absolute (g_home_dir) &&
1638             g_file_test (g_home_dir, G_FILE_TEST_IS_DIR)))
1639         {
1640           g_free (g_home_dir);
1641           g_home_dir = NULL;
1642         }
1643     }
1644   
1645   /* In case HOME is Unix-style (it happens), convert it to
1646    * Windows style.
1647    */
1648   if (g_home_dir)
1649     {
1650       gchar *p;
1651       while ((p = strchr (g_home_dir, '/')) != NULL)
1652         *p = '\\';
1653     }
1654
1655   if (!g_home_dir)
1656     {
1657       /* USERPROFILE is probably the closest equivalent to $HOME? */
1658       if (g_getenv ("USERPROFILE") != NULL)
1659         g_home_dir = g_strdup (g_getenv ("USERPROFILE"));
1660     }
1661
1662   if (!g_home_dir)
1663     g_home_dir = get_special_folder (CSIDL_PROFILE);
1664   
1665   if (!g_home_dir)
1666     g_home_dir = get_windows_directory_root ();
1667 #endif /* G_OS_WIN32 */
1668   
1669 #ifdef HAVE_PWD_H
1670   {
1671     struct passwd *pw = NULL;
1672     gpointer buffer = NULL;
1673     gint error;
1674     gchar *logname;
1675
1676 #  if defined (HAVE_POSIX_GETPWUID_R) || defined (HAVE_NONPOSIX_GETPWUID_R)
1677     struct passwd pwd;
1678 #    ifdef _SC_GETPW_R_SIZE_MAX  
1679     /* This reurns the maximum length */
1680     glong bufsize = sysconf (_SC_GETPW_R_SIZE_MAX);
1681     
1682     if (bufsize < 0)
1683       bufsize = 64;
1684 #    else /* _SC_GETPW_R_SIZE_MAX */
1685     glong bufsize = 64;
1686 #    endif /* _SC_GETPW_R_SIZE_MAX */
1687
1688     logname = (gchar *) g_getenv ("LOGNAME");
1689         
1690     do
1691       {
1692         g_free (buffer);
1693         /* we allocate 6 extra bytes to work around a bug in 
1694          * Mac OS < 10.3. See #156446
1695          */
1696         buffer = g_malloc (bufsize + 6);
1697         errno = 0;
1698         
1699 #    ifdef HAVE_POSIX_GETPWUID_R
1700         if (logname) {
1701           error = getpwnam_r (logname, &pwd, buffer, bufsize, &pw);
1702           if (!pw || (pw->pw_uid != getuid ())) {
1703             /* LOGNAME is lying, fall back to looking up the uid */
1704             error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
1705           }
1706         } else {
1707           error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
1708         }
1709         error = error < 0 ? errno : error;
1710 #    else /* HAVE_NONPOSIX_GETPWUID_R */
1711    /* HPUX 11 falls into the HAVE_POSIX_GETPWUID_R case */
1712 #      if defined(_AIX) || defined(__hpux)
1713         error = getpwuid_r (getuid (), &pwd, buffer, bufsize);
1714         pw = error == 0 ? &pwd : NULL;
1715 #      else /* !_AIX */
1716         if (logname) {
1717           pw = getpwnam_r (logname, &pwd, buffer, bufsize);
1718           if (!pw || (pw->pw_uid != getuid ())) {
1719             /* LOGNAME is lying, fall back to looking up the uid */
1720             pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
1721           }
1722         } else {
1723           pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
1724         }
1725         error = pw ? 0 : errno;
1726 #      endif /* !_AIX */            
1727 #    endif /* HAVE_NONPOSIX_GETPWUID_R */
1728         
1729         if (!pw)
1730           {
1731             /* we bail out prematurely if the user id can't be found
1732              * (should be pretty rare case actually), or if the buffer
1733              * should be sufficiently big and lookups are still not
1734              * successfull.
1735              */
1736             if (error == 0 || error == ENOENT)
1737               {
1738                 g_warning ("getpwuid_r(): failed due to unknown user id (%lu)",
1739                            (gulong) getuid ());
1740                 break;
1741               }
1742             if (bufsize > 32 * 1024)
1743               {
1744                 g_warning ("getpwuid_r(): failed due to: %s.",
1745                            g_strerror (error));
1746                 break;
1747               }
1748             
1749             bufsize *= 2;
1750           }
1751       }
1752     while (!pw);
1753 #  endif /* HAVE_POSIX_GETPWUID_R || HAVE_NONPOSIX_GETPWUID_R */
1754     
1755     if (!pw)
1756       {
1757         setpwent ();
1758         pw = getpwuid (getuid ());
1759         endpwent ();
1760       }
1761     if (pw)
1762       {
1763         g_user_name = g_strdup (pw->pw_name);
1764
1765         if (pw->pw_gecos && *pw->pw_gecos != '\0') 
1766           {
1767             gchar **gecos_fields;
1768             gchar **name_parts;
1769
1770             /* split the gecos field and substitute '&' */
1771             gecos_fields = g_strsplit (pw->pw_gecos, ",", 0);
1772             name_parts = g_strsplit (gecos_fields[0], "&", 0);
1773             pw->pw_name[0] = g_ascii_toupper (pw->pw_name[0]);
1774             g_real_name = g_strjoinv (pw->pw_name, name_parts);
1775             g_strfreev (gecos_fields);
1776             g_strfreev (name_parts);
1777           }
1778
1779         if (!g_home_dir)
1780           g_home_dir = g_strdup (pw->pw_dir);
1781       }
1782     g_free (buffer);
1783   }
1784   
1785 #else /* !HAVE_PWD_H */
1786   
1787 #ifdef G_OS_WIN32
1788   {
1789     guint len = UNLEN+1;
1790     wchar_t buffer[UNLEN+1];
1791     
1792     if (GetUserNameW (buffer, (LPDWORD) &len))
1793       {
1794         g_user_name = g_utf16_to_utf8 (buffer, -1, NULL, NULL, NULL);
1795         g_real_name = g_strdup (g_user_name);
1796       }
1797   }
1798 #endif /* G_OS_WIN32 */
1799
1800 #endif /* !HAVE_PWD_H */
1801
1802 #ifndef G_OS_WIN32
1803   if (!g_home_dir)
1804     g_home_dir = g_strdup (g_getenv ("HOME"));
1805 #endif
1806
1807 #ifdef __EMX__
1808   /* change '\\' in %HOME% to '/' */
1809   g_strdelimit (g_home_dir, "\\",'/');
1810 #endif
1811   if (!g_user_name)
1812     g_user_name = g_strdup ("somebody");
1813   if (!g_real_name)
1814     g_real_name = g_strdup ("Unknown");
1815
1816   {
1817 #ifndef G_OS_WIN32
1818     gboolean hostname_fail = (gethostname (hostname, sizeof (hostname)) == -1);
1819 #else
1820     DWORD size = sizeof (hostname);
1821     gboolean hostname_fail = (!GetComputerName (hostname, &size));
1822 #endif
1823     g_host_name = g_strdup (hostname_fail ? "localhost" : hostname);
1824   }
1825
1826 #ifdef G_OS_WIN32
1827   g_tmp_dir_cp = g_locale_from_utf8 (g_tmp_dir, -1, NULL, NULL, NULL);
1828   g_user_name_cp = g_locale_from_utf8 (g_user_name, -1, NULL, NULL, NULL);
1829   g_real_name_cp = g_locale_from_utf8 (g_real_name, -1, NULL, NULL, NULL);
1830
1831   if (!g_tmp_dir_cp)
1832     g_tmp_dir_cp = g_strdup ("\\");
1833   if (!g_user_name_cp)
1834     g_user_name_cp = g_strdup ("somebody");
1835   if (!g_real_name_cp)
1836     g_real_name_cp = g_strdup ("Unknown");
1837
1838   /* home_dir might be NULL, unlike tmp_dir, user_name and
1839    * real_name.
1840    */
1841   if (g_home_dir)
1842     g_home_dir_cp = g_locale_from_utf8 (g_home_dir, -1, NULL, NULL, NULL);
1843   else
1844     g_home_dir_cp = NULL;
1845 #endif /* G_OS_WIN32 */
1846 }
1847
1848 static inline void
1849 g_get_any_init (void)
1850 {
1851   if (!g_tmp_dir)
1852     g_get_any_init_do ();
1853 }
1854
1855 static inline void
1856 g_get_any_init_locked (void)
1857 {
1858   G_LOCK (g_utils_global);
1859   g_get_any_init ();
1860   G_UNLOCK (g_utils_global);
1861 }
1862
1863
1864 /**
1865  * g_get_user_name:
1866  *
1867  * Gets the user name of the current user. The encoding of the returned
1868  * string is system-defined. On UNIX, it might be the preferred file name
1869  * encoding, or something else, and there is no guarantee that it is even
1870  * consistent on a machine. On Windows, it is always UTF-8.
1871  *
1872  * Returns: the user name of the current user.
1873  */
1874 G_CONST_RETURN gchar*
1875 g_get_user_name (void)
1876 {
1877   g_get_any_init_locked ();
1878   return g_user_name;
1879 }
1880
1881 /**
1882  * g_get_real_name:
1883  *
1884  * Gets the real name of the user. This usually comes from the user's entry 
1885  * in the <filename>passwd</filename> file. The encoding of the returned 
1886  * string is system-defined. (On Windows, it is, however, always UTF-8.) 
1887  * If the real user name cannot be determined, the string "Unknown" is 
1888  * returned.
1889  *
1890  * Returns: the user's real name.
1891  */
1892 G_CONST_RETURN gchar*
1893 g_get_real_name (void)
1894 {
1895   g_get_any_init_locked ();
1896   return g_real_name;
1897 }
1898
1899 /**
1900  * g_get_home_dir:
1901  *
1902  * Gets the current user's home directory as defined in the 
1903  * password database.
1904  *
1905  * Note that in contrast to traditional UNIX tools, this function 
1906  * prefers <filename>passwd</filename> entries over the <envar>HOME</envar> 
1907  * environment variable. 
1908  *
1909  * One of the reasons for this decision is that applications in many 
1910  * cases need special handling to deal with the case where 
1911  * <envar>HOME</envar> is
1912  * <simplelist>
1913  *   <member>Not owned by the user</member>
1914  *   <member>Not writeable</member>
1915  *   <member>Not even readable</member>
1916  * </simplelist>
1917  * Since applications are in general <emphasis>not</emphasis> written 
1918  * to deal with these situations it was considered better to make 
1919  * g_get_home_dir() not pay attention to <envar>HOME</envar> and to 
1920  * return the real home directory for the user. If applications
1921  * want to pay attention to <envar>HOME</envar>, they can do:
1922  * |[
1923  *  const char *homedir = g_getenv ("HOME");
1924  *   if (!homedir)
1925  *      homedir = g_get_home_dir (<!-- -->);
1926  * ]|
1927  *
1928  * Returns: the current user's home directory
1929  */
1930 G_CONST_RETURN gchar*
1931 g_get_home_dir (void)
1932 {
1933   g_get_any_init_locked ();
1934   return g_home_dir;
1935 }
1936
1937 /**
1938  * g_get_tmp_dir:
1939  *
1940  * Gets the directory to use for temporary files. This is found from 
1941  * inspecting the environment variables <envar>TMPDIR</envar>, 
1942  * <envar>TMP</envar>, and <envar>TEMP</envar> in that order. If none 
1943  * of those are defined "/tmp" is returned on UNIX and "C:\" on Windows. 
1944  * The encoding of the returned string is system-defined. On Windows, 
1945  * it is always UTF-8. The return value is never %NULL or the empty string.
1946  *
1947  * Returns: the directory to use for temporary files.
1948  */
1949 G_CONST_RETURN gchar*
1950 g_get_tmp_dir (void)
1951 {
1952   g_get_any_init_locked ();
1953   return g_tmp_dir;
1954 }
1955
1956 /**
1957  * g_get_host_name:
1958  *
1959  * Return a name for the machine. 
1960  *
1961  * The returned name is not necessarily a fully-qualified domain name,
1962  * or even present in DNS or some other name service at all. It need
1963  * not even be unique on your local network or site, but usually it
1964  * is. Callers should not rely on the return value having any specific
1965  * properties like uniqueness for security purposes. Even if the name
1966  * of the machine is changed while an application is running, the
1967  * return value from this function does not change. The returned
1968  * string is owned by GLib and should not be modified or freed. If no
1969  * name can be determined, a default fixed string "localhost" is
1970  * returned.
1971  *
1972  * Returns: the host name of the machine.
1973  *
1974  * Since: 2.8
1975  */
1976 const gchar *
1977 g_get_host_name (void)
1978 {
1979   g_get_any_init_locked ();
1980   return g_host_name;
1981 }
1982
1983 G_LOCK_DEFINE_STATIC (g_prgname);
1984 static gchar *g_prgname = NULL;
1985
1986 /**
1987  * g_get_prgname:
1988  *
1989  * Gets the name of the program. This name should <emphasis>not</emphasis> 
1990  * be localized, contrast with g_get_application_name().
1991  * (If you are using GDK or GTK+ the program name is set in gdk_init(), 
1992  * which is called by gtk_init(). The program name is found by taking 
1993  * the last component of <literal>argv[0]</literal>.)
1994  *
1995  * Returns: the name of the program. The returned string belongs 
1996  * to GLib and must not be modified or freed.
1997  */
1998 gchar*
1999 g_get_prgname (void)
2000 {
2001   gchar* retval;
2002
2003   G_LOCK (g_prgname);
2004 #ifdef G_OS_WIN32
2005   if (g_prgname == NULL)
2006     {
2007       static gboolean beenhere = FALSE;
2008
2009       if (!beenhere)
2010         {
2011           gchar *utf8_buf = NULL;
2012           wchar_t buf[MAX_PATH+1];
2013
2014           beenhere = TRUE;
2015           if (GetModuleFileNameW (GetModuleHandle (NULL),
2016                                   buf, G_N_ELEMENTS (buf)) > 0)
2017             utf8_buf = g_utf16_to_utf8 (buf, -1, NULL, NULL, NULL);
2018
2019           if (utf8_buf)
2020             {
2021               g_prgname = g_path_get_basename (utf8_buf);
2022               g_free (utf8_buf);
2023             }
2024         }
2025     }
2026 #endif
2027   retval = g_prgname;
2028   G_UNLOCK (g_prgname);
2029
2030   return retval;
2031 }
2032
2033 /**
2034  * g_set_prgname:
2035  * @prgname: the name of the program.
2036  *
2037  * Sets the name of the program. This name should <emphasis>not</emphasis> 
2038  * be localized, contrast with g_set_application_name(). Note that for 
2039  * thread-safety reasons this function can only be called once.
2040  */
2041 void
2042 g_set_prgname (const gchar *prgname)
2043 {
2044   G_LOCK (g_prgname);
2045   g_free (g_prgname);
2046   g_prgname = g_strdup (prgname);
2047   G_UNLOCK (g_prgname);
2048 }
2049
2050 G_LOCK_DEFINE_STATIC (g_application_name);
2051 static gchar *g_application_name = NULL;
2052
2053 /**
2054  * g_get_application_name:
2055  * 
2056  * Gets a human-readable name for the application, as set by
2057  * g_set_application_name(). This name should be localized if
2058  * possible, and is intended for display to the user.  Contrast with
2059  * g_get_prgname(), which gets a non-localized name. If
2060  * g_set_application_name() has not been called, returns the result of
2061  * g_get_prgname() (which may be %NULL if g_set_prgname() has also not
2062  * been called).
2063  * 
2064  * Return value: human-readable application name. may return %NULL
2065  *
2066  * Since: 2.2
2067  **/
2068 G_CONST_RETURN gchar*
2069 g_get_application_name (void)
2070 {
2071   gchar* retval;
2072
2073   G_LOCK (g_application_name);
2074   retval = g_application_name;
2075   G_UNLOCK (g_application_name);
2076
2077   if (retval == NULL)
2078     return g_get_prgname ();
2079   
2080   return retval;
2081 }
2082
2083 /**
2084  * g_set_application_name:
2085  * @application_name: localized name of the application
2086  *
2087  * Sets a human-readable name for the application. This name should be
2088  * localized if possible, and is intended for display to the user.
2089  * Contrast with g_set_prgname(), which sets a non-localized name.
2090  * g_set_prgname() will be called automatically by gtk_init(),
2091  * but g_set_application_name() will not.
2092  *
2093  * Note that for thread safety reasons, this function can only
2094  * be called once.
2095  *
2096  * The application name will be used in contexts such as error messages,
2097  * or when displaying an application's name in the task list.
2098  * 
2099  * Since: 2.2
2100  **/
2101 void
2102 g_set_application_name (const gchar *application_name)
2103 {
2104   gboolean already_set = FALSE;
2105         
2106   G_LOCK (g_application_name);
2107   if (g_application_name)
2108     already_set = TRUE;
2109   else
2110     g_application_name = g_strdup (application_name);
2111   G_UNLOCK (g_application_name);
2112
2113   if (already_set)
2114     g_warning ("g_set_application_name() called multiple times");
2115 }
2116
2117 /**
2118  * g_get_user_data_dir:
2119  * 
2120  * Returns a base directory in which to access application data such
2121  * as icons that is customized for a particular user.  
2122  *
2123  * On UNIX platforms this is determined using the mechanisms described in
2124  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2125  * XDG Base Directory Specification</ulink>.
2126  * In this case the directory retrieved will be XDG_DATA_HOME.
2127  *
2128  * On Windows this is the folder to use for local (as opposed to
2129  * roaming) application data. See documentation for
2130  * CSIDL_LOCAL_APPDATA. Note that on Windows it thus is the same as
2131  * what g_get_user_config_dir() returns.
2132  *
2133  * Return value: a string owned by GLib that must not be modified 
2134  *               or freed.
2135  * Since: 2.6
2136  **/
2137 G_CONST_RETURN gchar*
2138 g_get_user_data_dir (void)
2139 {
2140   gchar *data_dir;  
2141
2142   G_LOCK (g_utils_global);
2143
2144   if (!g_user_data_dir)
2145     {
2146 #ifdef G_OS_WIN32
2147       data_dir = get_special_folder (CSIDL_LOCAL_APPDATA);
2148 #else
2149       data_dir = (gchar *) g_getenv ("XDG_DATA_HOME");
2150
2151       if (data_dir && data_dir[0])
2152         data_dir = g_strdup (data_dir);
2153 #endif
2154       if (!data_dir || !data_dir[0])
2155         {
2156           g_get_any_init ();
2157
2158           if (g_home_dir)
2159             data_dir = g_build_filename (g_home_dir, ".local", 
2160                                          "share", NULL);
2161           else
2162             data_dir = g_build_filename (g_tmp_dir, g_user_name, ".local", 
2163                                          "share", NULL);
2164         }
2165
2166       g_user_data_dir = data_dir;
2167     }
2168   else
2169     data_dir = g_user_data_dir;
2170
2171   G_UNLOCK (g_utils_global);
2172
2173   return data_dir;
2174 }
2175
2176 static void
2177 g_init_user_config_dir (void)
2178 {
2179   gchar *config_dir;
2180
2181   if (!g_user_config_dir)
2182     {
2183 #ifdef G_OS_WIN32
2184       config_dir = get_special_folder (CSIDL_LOCAL_APPDATA);
2185 #else
2186       config_dir = (gchar *) g_getenv ("XDG_CONFIG_HOME");
2187
2188       if (config_dir && config_dir[0])
2189         config_dir = g_strdup (config_dir);
2190 #endif
2191       if (!config_dir || !config_dir[0])
2192         {
2193           g_get_any_init ();
2194
2195           if (g_home_dir)
2196             config_dir = g_build_filename (g_home_dir, ".config", NULL);
2197           else
2198             config_dir = g_build_filename (g_tmp_dir, g_user_name, ".config", NULL);
2199         }
2200
2201       g_user_config_dir = config_dir;
2202     }
2203 }
2204
2205 /**
2206  * g_get_user_config_dir:
2207  * 
2208  * Returns a base directory in which to store user-specific application 
2209  * configuration information such as user preferences and settings. 
2210  *
2211  * On UNIX platforms this is determined using the mechanisms described in
2212  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2213  * XDG Base Directory Specification</ulink>.
2214  * In this case the directory retrieved will be XDG_CONFIG_HOME.
2215  *
2216  * On Windows this is the folder to use for local (as opposed to
2217  * roaming) application data. See documentation for
2218  * CSIDL_LOCAL_APPDATA. Note that on Windows it thus is the same as
2219  * what g_get_user_data_dir() returns.
2220  *
2221  * Return value: a string owned by GLib that must not be modified 
2222  *               or freed.
2223  * Since: 2.6
2224  **/
2225 G_CONST_RETURN gchar*
2226 g_get_user_config_dir (void)
2227 {
2228   G_LOCK (g_utils_global);
2229
2230   g_init_user_config_dir ();
2231
2232   G_UNLOCK (g_utils_global);
2233
2234   return g_user_config_dir;
2235 }
2236
2237 /**
2238  * g_get_user_cache_dir:
2239  * 
2240  * Returns a base directory in which to store non-essential, cached
2241  * data specific to particular user.
2242  *
2243  * On UNIX platforms this is determined using the mechanisms described in
2244  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2245  * XDG Base Directory Specification</ulink>.
2246  * In this case the directory retrieved will be XDG_CACHE_HOME.
2247  *
2248  * On Windows is the directory that serves as a common repository for
2249  * temporary Internet files. A typical path is
2250  * C:\Documents and Settings\username\Local Settings\Temporary Internet Files.
2251  * See documentation for CSIDL_INTERNET_CACHE.
2252  *
2253  * Return value: a string owned by GLib that must not be modified 
2254  *               or freed.
2255  * Since: 2.6
2256  **/
2257 G_CONST_RETURN gchar*
2258 g_get_user_cache_dir (void)
2259 {
2260   gchar *cache_dir;  
2261
2262   G_LOCK (g_utils_global);
2263
2264   if (!g_user_cache_dir)
2265     {
2266 #ifdef G_OS_WIN32
2267       cache_dir = get_special_folder (CSIDL_INTERNET_CACHE); /* XXX correct? */
2268 #else
2269       cache_dir = (gchar *) g_getenv ("XDG_CACHE_HOME");
2270
2271       if (cache_dir && cache_dir[0])
2272           cache_dir = g_strdup (cache_dir);
2273 #endif
2274       if (!cache_dir || !cache_dir[0])
2275         {
2276           g_get_any_init ();
2277         
2278           if (g_home_dir)
2279             cache_dir = g_build_filename (g_home_dir, ".cache", NULL);
2280           else
2281             cache_dir = g_build_filename (g_tmp_dir, g_user_name, ".cache", NULL);
2282         }
2283       g_user_cache_dir = cache_dir;
2284     }
2285   else
2286     cache_dir = g_user_cache_dir;
2287
2288   G_UNLOCK (g_utils_global);
2289
2290   return cache_dir;
2291 }
2292
2293 /**
2294  * g_get_user_runtime_dir:
2295  *
2296  * Returns a directory that is unique to the current user on the local
2297  * system.
2298  *
2299  * On UNIX platforms this is determined using the mechanisms described in
2300  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2301  * XDG Base Directory Specification</ulink>.  This is the directory
2302  * specified in the XDG_RUNTIME_DIR environment variable.  In the case
2303  * that this variable is not set, glib will issue a warning message to
2304  * stderr and return the value of g_get_user_cache_dir().
2305  *
2306  * On Windows this is the folder to use for local (as opposed to
2307  * roaming) application data. See documentation for
2308  * CSIDL_LOCAL_APPDATA.  Note that on Windows it thus is the same as
2309  * what g_get_user_config_dir() returns.
2310  *
2311  * Returns: a string owned by GLib that must not be modified or freed.
2312  **/
2313 const gchar *
2314 g_get_user_runtime_dir (void)
2315 {
2316 #ifndef G_OS_WIN32
2317   static const gchar *runtime_dir;
2318   static gsize initialised;
2319
2320   if (g_once_init_enter (&initialised))
2321     {
2322       runtime_dir = g_strdup (getenv ("XDG_RUNTIME_DIR"));
2323       
2324       if (runtime_dir == NULL)
2325         g_warning ("XDG_RUNTIME_DIR variable not set.  "
2326                    "Falling back to XDG cache dir.");
2327
2328       g_once_init_leave (&initialised, 1);
2329     }
2330
2331   if (runtime_dir)
2332     return runtime_dir;
2333
2334   /* Both fallback for UNIX and the default
2335    * in Windows: use the user cache directory.
2336    */
2337 #endif
2338
2339   return g_get_user_cache_dir ();
2340 }
2341
2342 #ifdef HAVE_CARBON
2343
2344 static gchar *
2345 find_folder (OSType type)
2346 {
2347   gchar *filename = NULL;
2348   FSRef  found;
2349
2350   if (FSFindFolder (kUserDomain, type, kDontCreateFolder, &found) == noErr)
2351     {
2352       CFURLRef url = CFURLCreateFromFSRef (kCFAllocatorSystemDefault, &found);
2353
2354       if (url)
2355         {
2356           CFStringRef path = CFURLCopyFileSystemPath (url, kCFURLPOSIXPathStyle);
2357
2358           if (path)
2359             {
2360               filename = g_strdup (CFStringGetCStringPtr (path, kCFStringEncodingUTF8));
2361
2362               if (! filename)
2363                 {
2364                   filename = g_new0 (gchar, CFStringGetLength (path) * 3 + 1);
2365
2366                   CFStringGetCString (path, filename,
2367                                       CFStringGetLength (path) * 3 + 1,
2368                                       kCFStringEncodingUTF8);
2369                 }
2370
2371               CFRelease (path);
2372             }
2373
2374           CFRelease (url);
2375         }
2376     }
2377
2378   return filename;
2379 }
2380
2381 static void
2382 load_user_special_dirs (void)
2383 {
2384   g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = find_folder (kDesktopFolderType);
2385   g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = find_folder (kDocumentsFolderType);
2386   g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = find_folder (kDesktopFolderType); /* XXX correct ? */
2387   g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = find_folder (kMusicDocumentsFolderType);
2388   g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = find_folder (kPictureDocumentsFolderType);
2389   g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = NULL;
2390   g_user_special_dirs[G_USER_DIRECTORY_TEMPLATES] = NULL;
2391   g_user_special_dirs[G_USER_DIRECTORY_VIDEOS] = find_folder (kMovieDocumentsFolderType);
2392 }
2393
2394 #endif /* HAVE_CARBON */
2395
2396 #if defined(G_OS_WIN32)
2397 static void
2398 load_user_special_dirs (void)
2399 {
2400   typedef HRESULT (WINAPI *t_SHGetKnownFolderPath) (const GUID *rfid,
2401                                                     DWORD dwFlags,
2402                                                     HANDLE hToken,
2403                                                     PWSTR *ppszPath);
2404   t_SHGetKnownFolderPath p_SHGetKnownFolderPath;
2405
2406   static const GUID FOLDERID_Downloads =
2407     { 0x374de290, 0x123f, 0x4565, { 0x91, 0x64, 0x39, 0xc4, 0x92, 0x5e, 0x46, 0x7b } };
2408   static const GUID FOLDERID_Public =
2409     { 0xDFDF76A2, 0xC82A, 0x4D63, { 0x90, 0x6A, 0x56, 0x44, 0xAC, 0x45, 0x73, 0x85 } };
2410
2411   wchar_t *wcp;
2412
2413   p_SHGetKnownFolderPath = (t_SHGetKnownFolderPath) GetProcAddress (GetModuleHandle ("shell32.dll"),
2414                                                                     "SHGetKnownFolderPath");
2415
2416   g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
2417   g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = get_special_folder (CSIDL_PERSONAL);
2418
2419   if (p_SHGetKnownFolderPath == NULL)
2420     {
2421       g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
2422     }
2423   else
2424     {
2425       wcp = NULL;
2426       (*p_SHGetKnownFolderPath) (&FOLDERID_Downloads, 0, NULL, &wcp);
2427       g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = g_utf16_to_utf8 (wcp, -1, NULL, NULL, NULL);
2428       if (g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] == NULL)
2429         g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
2430       CoTaskMemFree (wcp);
2431     }
2432
2433   g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = get_special_folder (CSIDL_MYMUSIC);
2434   g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = get_special_folder (CSIDL_MYPICTURES);
2435
2436   if (p_SHGetKnownFolderPath == NULL)
2437     {
2438       /* XXX */
2439       g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
2440     }
2441   else
2442     {
2443       wcp = NULL;
2444       (*p_SHGetKnownFolderPath) (&FOLDERID_Public, 0, NULL, &wcp);
2445       g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = g_utf16_to_utf8 (wcp, -1, NULL, NULL, NULL);
2446       if (g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] == NULL)
2447         g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
2448       CoTaskMemFree (wcp);
2449     }
2450   
2451   g_user_special_dirs[G_USER_DIRECTORY_TEMPLATES] = get_special_folder (CSIDL_TEMPLATES);
2452   g_user_special_dirs[G_USER_DIRECTORY_VIDEOS] = get_special_folder (CSIDL_MYVIDEO);
2453 }
2454 #endif /* G_OS_WIN32 */
2455
2456 static void g_init_user_config_dir (void);
2457
2458 #if defined(G_OS_UNIX) && !defined(HAVE_CARBON)
2459
2460 /* adapted from xdg-user-dir-lookup.c
2461  *
2462  * Copyright (C) 2007 Red Hat Inc.
2463  *
2464  * Permission is hereby granted, free of charge, to any person
2465  * obtaining a copy of this software and associated documentation files
2466  * (the "Software"), to deal in the Software without restriction,
2467  * including without limitation the rights to use, copy, modify, merge,
2468  * publish, distribute, sublicense, and/or sell copies of the Software,
2469  * and to permit persons to whom the Software is furnished to do so,
2470  * subject to the following conditions: 
2471  *
2472  * The above copyright notice and this permission notice shall be
2473  * included in all copies or substantial portions of the Software. 
2474  *
2475  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2476  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2477  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2478  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
2479  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
2480  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2481  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2482  * SOFTWARE.
2483  */
2484 static void
2485 load_user_special_dirs (void)
2486 {
2487   gchar *config_file;
2488   gchar *data;
2489   gchar **lines;
2490   gint n_lines, i;
2491   
2492   g_init_user_config_dir ();
2493   config_file = g_build_filename (g_user_config_dir,
2494                                   "user-dirs.dirs",
2495                                   NULL);
2496   
2497   if (!g_file_get_contents (config_file, &data, NULL, NULL))
2498     {
2499       g_free (config_file);
2500       return;
2501     }
2502
2503   lines = g_strsplit (data, "\n", -1);
2504   n_lines = g_strv_length (lines);
2505   g_free (data);
2506   
2507   for (i = 0; i < n_lines; i++)
2508     {
2509       gchar *buffer = lines[i];
2510       gchar *d, *p;
2511       gint len;
2512       gboolean is_relative = FALSE;
2513       GUserDirectory directory;
2514
2515       /* Remove newline at end */
2516       len = strlen (buffer);
2517       if (len > 0 && buffer[len - 1] == '\n')
2518         buffer[len - 1] = 0;
2519       
2520       p = buffer;
2521       while (*p == ' ' || *p == '\t')
2522         p++;
2523       
2524       if (strncmp (p, "XDG_DESKTOP_DIR", strlen ("XDG_DESKTOP_DIR")) == 0)
2525         {
2526           directory = G_USER_DIRECTORY_DESKTOP;
2527           p += strlen ("XDG_DESKTOP_DIR");
2528         }
2529       else if (strncmp (p, "XDG_DOCUMENTS_DIR", strlen ("XDG_DOCUMENTS_DIR")) == 0)
2530         {
2531           directory = G_USER_DIRECTORY_DOCUMENTS;
2532           p += strlen ("XDG_DOCUMENTS_DIR");
2533         }
2534       else if (strncmp (p, "XDG_DOWNLOAD_DIR", strlen ("XDG_DOWNLOAD_DIR")) == 0)
2535         {
2536           directory = G_USER_DIRECTORY_DOWNLOAD;
2537           p += strlen ("XDG_DOWNLOAD_DIR");
2538         }
2539       else if (strncmp (p, "XDG_MUSIC_DIR", strlen ("XDG_MUSIC_DIR")) == 0)
2540         {
2541           directory = G_USER_DIRECTORY_MUSIC;
2542           p += strlen ("XDG_MUSIC_DIR");
2543         }
2544       else if (strncmp (p, "XDG_PICTURES_DIR", strlen ("XDG_PICTURES_DIR")) == 0)
2545         {
2546           directory = G_USER_DIRECTORY_PICTURES;
2547           p += strlen ("XDG_PICTURES_DIR");
2548         }
2549       else if (strncmp (p, "XDG_PUBLICSHARE_DIR", strlen ("XDG_PUBLICSHARE_DIR")) == 0)
2550         {
2551           directory = G_USER_DIRECTORY_PUBLIC_SHARE;
2552           p += strlen ("XDG_PUBLICSHARE_DIR");
2553         }
2554       else if (strncmp (p, "XDG_TEMPLATES_DIR", strlen ("XDG_TEMPLATES_DIR")) == 0)
2555         {
2556           directory = G_USER_DIRECTORY_TEMPLATES;
2557           p += strlen ("XDG_TEMPLATES_DIR");
2558         }
2559       else if (strncmp (p, "XDG_VIDEOS_DIR", strlen ("XDG_VIDEOS_DIR")) == 0)
2560         {
2561           directory = G_USER_DIRECTORY_VIDEOS;
2562           p += strlen ("XDG_VIDEOS_DIR");
2563         }
2564       else
2565         continue;
2566
2567       while (*p == ' ' || *p == '\t')
2568         p++;
2569
2570       if (*p != '=')
2571         continue;
2572       p++;
2573
2574       while (*p == ' ' || *p == '\t')
2575         p++;
2576
2577       if (*p != '"')
2578         continue;
2579       p++;
2580
2581       if (strncmp (p, "$HOME", 5) == 0)
2582         {
2583           p += 5;
2584           is_relative = TRUE;
2585         }
2586       else if (*p != '/')
2587         continue;
2588
2589       d = strrchr (p, '"');
2590       if (!d)
2591         continue;
2592       *d = 0;
2593
2594       d = p;
2595       
2596       /* remove trailing slashes */
2597       len = strlen (d);
2598       if (d[len - 1] == '/')
2599         d[len - 1] = 0;
2600       
2601       if (is_relative)
2602         {
2603           g_get_any_init ();
2604           g_user_special_dirs[directory] = g_build_filename (g_home_dir, d, NULL);
2605         }
2606       else
2607         g_user_special_dirs[directory] = g_strdup (d);
2608     }
2609
2610   g_strfreev (lines);
2611   g_free (config_file);
2612 }
2613
2614 #endif /* G_OS_UNIX && !HAVE_CARBON */
2615
2616
2617 /**
2618  * g_reload_user_special_dirs_cache:
2619  *
2620  * Resets the cache used for g_get_user_special_dir(), so
2621  * that the latest on-disk version is used. Call this only
2622  * if you just changed the data on disk yourself.
2623  *
2624  * Due to threadsafety issues this may cause leaking of strings
2625  * that were previously returned from g_get_user_special_dir()
2626  * that can't be freed. We ensure to only leak the data for
2627  * the directories that actually changed value though.
2628  *
2629  * Since: 2.22
2630  */
2631 void
2632 g_reload_user_special_dirs_cache (void)
2633 {
2634   int i;
2635
2636   G_LOCK (g_utils_global);
2637
2638   if (g_user_special_dirs != NULL)
2639     {
2640       /* save a copy of the pointer, to check if some memory can be preserved */
2641       char **old_g_user_special_dirs = g_user_special_dirs;
2642       char *old_val;
2643
2644       /* recreate and reload our cache */
2645       g_user_special_dirs = g_new0 (gchar *, G_USER_N_DIRECTORIES);
2646       load_user_special_dirs ();
2647
2648       /* only leak changed directories */
2649       for (i = 0; i < G_USER_N_DIRECTORIES; i++)
2650         {
2651           old_val = old_g_user_special_dirs[i];
2652           if (g_strcmp0 (old_val, g_user_special_dirs[i]) == 0)
2653             {
2654               /* don't leak */
2655               g_free (g_user_special_dirs[i]);
2656               g_user_special_dirs[i] = old_val;
2657             }
2658           else
2659             g_free (old_val);
2660         }
2661
2662       /* free the old array */
2663       g_free (old_g_user_special_dirs);
2664     }
2665
2666   G_UNLOCK (g_utils_global);
2667 }
2668
2669 /**
2670  * g_get_user_special_dir:
2671  * @directory: the logical id of special directory
2672  *
2673  * Returns the full path of a special directory using its logical id.
2674  *
2675  * On Unix this is done using the XDG special user directories.
2676  * For compatibility with existing practise, %G_USER_DIRECTORY_DESKTOP
2677  * falls back to <filename>$HOME/Desktop</filename> when XDG special
2678  * user directories have not been set up. 
2679  *
2680  * Depending on the platform, the user might be able to change the path
2681  * of the special directory without requiring the session to restart; GLib
2682  * will not reflect any change once the special directories are loaded.
2683  *
2684  * Return value: the path to the specified special directory, or %NULL
2685  *   if the logical id was not found. The returned string is owned by
2686  *   GLib and should not be modified or freed.
2687  *
2688  * Since: 2.14
2689  */
2690 G_CONST_RETURN gchar *
2691 g_get_user_special_dir (GUserDirectory directory)
2692 {
2693   g_return_val_if_fail (directory >= G_USER_DIRECTORY_DESKTOP &&
2694                         directory < G_USER_N_DIRECTORIES, NULL);
2695
2696   G_LOCK (g_utils_global);
2697
2698   if (G_UNLIKELY (g_user_special_dirs == NULL))
2699     {
2700       g_user_special_dirs = g_new0 (gchar *, G_USER_N_DIRECTORIES);
2701
2702       load_user_special_dirs ();
2703
2704       /* Special-case desktop for historical compatibility */
2705       if (g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] == NULL)
2706         {
2707           g_get_any_init ();
2708
2709           g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] =
2710             g_build_filename (g_home_dir, "Desktop", NULL);
2711         }
2712     }
2713
2714   G_UNLOCK (g_utils_global);
2715
2716   return g_user_special_dirs[directory];
2717 }
2718
2719 #ifdef G_OS_WIN32
2720
2721 #undef g_get_system_data_dirs
2722
2723 static HMODULE
2724 get_module_for_address (gconstpointer address)
2725 {
2726   /* Holds the g_utils_global lock */
2727
2728   static gboolean beenhere = FALSE;
2729   typedef BOOL (WINAPI *t_GetModuleHandleExA) (DWORD, LPCTSTR, HMODULE *);
2730   static t_GetModuleHandleExA p_GetModuleHandleExA = NULL;
2731   HMODULE hmodule = NULL;
2732
2733   if (!address)
2734     return NULL;
2735
2736   if (!beenhere)
2737     {
2738       p_GetModuleHandleExA =
2739         (t_GetModuleHandleExA) GetProcAddress (GetModuleHandle ("kernel32.dll"),
2740                                                "GetModuleHandleExA");
2741       beenhere = TRUE;
2742     }
2743
2744   if (p_GetModuleHandleExA == NULL ||
2745       !(*p_GetModuleHandleExA) (GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
2746                                 GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
2747                                 address, &hmodule))
2748     {
2749       MEMORY_BASIC_INFORMATION mbi;
2750       VirtualQuery (address, &mbi, sizeof (mbi));
2751       hmodule = (HMODULE) mbi.AllocationBase;
2752     }
2753
2754   return hmodule;
2755 }
2756
2757 static gchar *
2758 get_module_share_dir (gconstpointer address)
2759 {
2760   HMODULE hmodule;
2761   gchar *filename;
2762   gchar *retval;
2763
2764   hmodule = get_module_for_address (address);
2765   if (hmodule == NULL)
2766     return NULL;
2767
2768   filename = g_win32_get_package_installation_directory_of_module (hmodule);
2769   retval = g_build_filename (filename, "share", NULL);
2770   g_free (filename);
2771
2772   return retval;
2773 }
2774
2775 G_CONST_RETURN gchar * G_CONST_RETURN *
2776 g_win32_get_system_data_dirs_for_module (void (*address_of_function)())
2777 {
2778   GArray *data_dirs;
2779   HMODULE hmodule;
2780   static GHashTable *per_module_data_dirs = NULL;
2781   gchar **retval;
2782   gchar *p;
2783   gchar *exe_root;
2784       
2785   if (address_of_function)
2786     {
2787       G_LOCK (g_utils_global);
2788       hmodule = get_module_for_address (address_of_function);
2789       if (hmodule != NULL)
2790         {
2791           if (per_module_data_dirs == NULL)
2792             per_module_data_dirs = g_hash_table_new (NULL, NULL);
2793           else
2794             {
2795               retval = g_hash_table_lookup (per_module_data_dirs, hmodule);
2796               
2797               if (retval != NULL)
2798                 {
2799                   G_UNLOCK (g_utils_global);
2800                   return (G_CONST_RETURN gchar * G_CONST_RETURN *) retval;
2801                 }
2802             }
2803         }
2804     }
2805
2806   data_dirs = g_array_new (TRUE, TRUE, sizeof (char *));
2807
2808   /* Documents and Settings\All Users\Application Data */
2809   p = get_special_folder (CSIDL_COMMON_APPDATA);
2810   if (p)
2811     g_array_append_val (data_dirs, p);
2812   
2813   /* Documents and Settings\All Users\Documents */
2814   p = get_special_folder (CSIDL_COMMON_DOCUMENTS);
2815   if (p)
2816     g_array_append_val (data_dirs, p);
2817         
2818   /* Using the above subfolders of Documents and Settings perhaps
2819    * makes sense from a Windows perspective.
2820    *
2821    * But looking at the actual use cases of this function in GTK+
2822    * and GNOME software, what we really want is the "share"
2823    * subdirectory of the installation directory for the package
2824    * our caller is a part of.
2825    *
2826    * The address_of_function parameter, if non-NULL, points to a
2827    * function in the calling module. Use that to determine that
2828    * module's installation folder, and use its "share" subfolder.
2829    *
2830    * Additionally, also use the "share" subfolder of the installation
2831    * locations of GLib and the .exe file being run.
2832    *
2833    * To guard against none of the above being what is really wanted,
2834    * callers of this function should have Win32-specific code to look
2835    * up their installation folder themselves, and handle a subfolder
2836    * "share" of it in the same way as the folders returned from this
2837    * function.
2838    */
2839
2840   p = get_module_share_dir (address_of_function);
2841   if (p)
2842     g_array_append_val (data_dirs, p);
2843     
2844   if (glib_dll != NULL)
2845     {
2846       gchar *glib_root = g_win32_get_package_installation_directory_of_module (glib_dll);
2847       p = g_build_filename (glib_root, "share", NULL);
2848       if (p)
2849         g_array_append_val (data_dirs, p);
2850       g_free (glib_root);
2851     }
2852   
2853   exe_root = g_win32_get_package_installation_directory_of_module (NULL);
2854   p = g_build_filename (exe_root, "share", NULL);
2855   if (p)
2856     g_array_append_val (data_dirs, p);
2857   g_free (exe_root);
2858
2859   retval = (gchar **) g_array_free (data_dirs, FALSE);
2860
2861   if (address_of_function)
2862     {
2863       if (hmodule != NULL)
2864         g_hash_table_insert (per_module_data_dirs, hmodule, retval);
2865       G_UNLOCK (g_utils_global);
2866     }
2867
2868   return (G_CONST_RETURN gchar * G_CONST_RETURN *) retval;
2869 }
2870
2871 #endif
2872
2873 /**
2874  * g_get_system_data_dirs:
2875  * 
2876  * Returns an ordered list of base directories in which to access 
2877  * system-wide application data.
2878  *
2879  * On UNIX platforms this is determined using the mechanisms described in
2880  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2881  * XDG Base Directory Specification</ulink>
2882  * In this case the list of directories retrieved will be XDG_DATA_DIRS.
2883  *
2884  * On Windows the first elements in the list are the Application Data
2885  * and Documents folders for All Users. (These can be determined only
2886  * on Windows 2000 or later and are not present in the list on other
2887  * Windows versions.) See documentation for CSIDL_COMMON_APPDATA and
2888  * CSIDL_COMMON_DOCUMENTS.
2889  *
2890  * Then follows the "share" subfolder in the installation folder for
2891  * the package containing the DLL that calls this function, if it can
2892  * be determined.
2893  * 
2894  * Finally the list contains the "share" subfolder in the installation
2895  * folder for GLib, and in the installation folder for the package the
2896  * application's .exe file belongs to.
2897  *
2898  * The installation folders above are determined by looking up the
2899  * folder where the module (DLL or EXE) in question is located. If the
2900  * folder's name is "bin", its parent is used, otherwise the folder
2901  * itself.
2902  *
2903  * Note that on Windows the returned list can vary depending on where
2904  * this function is called.
2905  *
2906  * Return value: a %NULL-terminated array of strings owned by GLib that must 
2907  *               not be modified or freed.
2908  * Since: 2.6
2909  **/
2910 G_CONST_RETURN gchar * G_CONST_RETURN * 
2911 g_get_system_data_dirs (void)
2912 {
2913   gchar **data_dir_vector;
2914
2915   G_LOCK (g_utils_global);
2916
2917   if (!g_system_data_dirs)
2918     {
2919 #ifdef G_OS_WIN32
2920       data_dir_vector = (gchar **) g_win32_get_system_data_dirs_for_module (NULL);
2921 #else
2922       gchar *data_dirs = (gchar *) g_getenv ("XDG_DATA_DIRS");
2923
2924       if (!data_dirs || !data_dirs[0])
2925           data_dirs = "/usr/local/share/:/usr/share/";
2926
2927       data_dir_vector = g_strsplit (data_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2928 #endif
2929
2930       g_system_data_dirs = data_dir_vector;
2931     }
2932   else
2933     data_dir_vector = g_system_data_dirs;
2934
2935   G_UNLOCK (g_utils_global);
2936
2937   return (G_CONST_RETURN gchar * G_CONST_RETURN *) data_dir_vector;
2938 }
2939
2940 /**
2941  * g_get_system_config_dirs:
2942  * 
2943  * Returns an ordered list of base directories in which to access 
2944  * system-wide configuration information.
2945  *
2946  * On UNIX platforms this is determined using the mechanisms described in
2947  * the <ulink url="http://www.freedesktop.org/Standards/basedir-spec">
2948  * XDG Base Directory Specification</ulink>.
2949  * In this case the list of directories retrieved will be XDG_CONFIG_DIRS.
2950  *
2951  * On Windows is the directory that contains application data for all users.
2952  * A typical path is C:\Documents and Settings\All Users\Application Data.
2953  * This folder is used for application data that is not user specific.
2954  * For example, an application can store a spell-check dictionary, a database
2955  * of clip art, or a log file in the CSIDL_COMMON_APPDATA folder.
2956  * This information will not roam and is available to anyone using the computer.
2957  *
2958  * Return value: a %NULL-terminated array of strings owned by GLib that must 
2959  *               not be modified or freed.
2960  * Since: 2.6
2961  **/
2962 G_CONST_RETURN gchar * G_CONST_RETURN *
2963 g_get_system_config_dirs (void)
2964 {
2965   gchar *conf_dirs, **conf_dir_vector;
2966
2967   G_LOCK (g_utils_global);
2968
2969   if (!g_system_config_dirs)
2970     {
2971 #ifdef G_OS_WIN32
2972       conf_dirs = get_special_folder (CSIDL_COMMON_APPDATA);
2973       if (conf_dirs)
2974         {
2975           conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2976           g_free (conf_dirs);
2977         }
2978       else
2979         {
2980           /* Return empty list */
2981           conf_dir_vector = g_strsplit ("", G_SEARCHPATH_SEPARATOR_S, 0);
2982         }
2983 #else
2984       conf_dirs = (gchar *) g_getenv ("XDG_CONFIG_DIRS");
2985
2986       if (!conf_dirs || !conf_dirs[0])
2987           conf_dirs = "/etc/xdg";
2988
2989       conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2990 #endif
2991
2992       g_system_config_dirs = conf_dir_vector;
2993     }
2994   else
2995     conf_dir_vector = g_system_config_dirs;
2996   G_UNLOCK (g_utils_global);
2997
2998   return (G_CONST_RETURN gchar * G_CONST_RETURN *) conf_dir_vector;
2999 }
3000
3001 #ifndef G_OS_WIN32
3002
3003 static GHashTable *alias_table = NULL;
3004
3005 /* read an alias file for the locales */
3006 static void
3007 read_aliases (gchar *file)
3008 {
3009   FILE *fp;
3010   char buf[256];
3011   
3012   if (!alias_table)
3013     alias_table = g_hash_table_new (g_str_hash, g_str_equal);
3014   fp = fopen (file,"r");
3015   if (!fp)
3016     return;
3017   while (fgets (buf, 256, fp))
3018     {
3019       char *p, *q;
3020
3021       g_strstrip (buf);
3022
3023       /* Line is a comment */
3024       if ((buf[0] == '#') || (buf[0] == '\0'))
3025         continue;
3026
3027       /* Reads first column */
3028       for (p = buf, q = NULL; *p; p++) {
3029         if ((*p == '\t') || (*p == ' ') || (*p == ':')) {
3030           *p = '\0';
3031           q = p+1;
3032           while ((*q == '\t') || (*q == ' ')) {
3033             q++;
3034           }
3035           break;
3036         }
3037       }
3038       /* The line only had one column */
3039       if (!q || *q == '\0')
3040         continue;
3041       
3042       /* Read second column */
3043       for (p = q; *p; p++) {
3044         if ((*p == '\t') || (*p == ' ')) {
3045           *p = '\0';
3046           break;
3047         }
3048       }
3049
3050       /* Add to alias table if necessary */
3051       if (!g_hash_table_lookup (alias_table, buf)) {
3052         g_hash_table_insert (alias_table, g_strdup (buf), g_strdup (q));
3053       }
3054     }
3055   fclose (fp);
3056 }
3057
3058 #endif
3059
3060 static char *
3061 unalias_lang (char *lang)
3062 {
3063 #ifndef G_OS_WIN32
3064   char *p;
3065   int i;
3066
3067   if (!alias_table)
3068     read_aliases ("/usr/share/locale/locale.alias");
3069
3070   i = 0;
3071   while ((p = g_hash_table_lookup (alias_table, lang)) && (strcmp (p, lang) != 0))
3072     {
3073       lang = p;
3074       if (i++ == 30)
3075         {
3076           static gboolean said_before = FALSE;
3077           if (!said_before)
3078             g_warning ("Too many alias levels for a locale, "
3079                        "may indicate a loop");
3080           said_before = TRUE;
3081           return lang;
3082         }
3083     }
3084 #endif
3085   return lang;
3086 }
3087
3088 /* Mask for components of locale spec. The ordering here is from
3089  * least significant to most significant
3090  */
3091 enum
3092 {
3093   COMPONENT_CODESET =   1 << 0,
3094   COMPONENT_TERRITORY = 1 << 1,
3095   COMPONENT_MODIFIER =  1 << 2
3096 };
3097
3098 /* Break an X/Open style locale specification into components
3099  */
3100 static guint
3101 explode_locale (const gchar *locale,
3102                 gchar      **language, 
3103                 gchar      **territory, 
3104                 gchar      **codeset, 
3105                 gchar      **modifier)
3106 {
3107   const gchar *uscore_pos;
3108   const gchar *at_pos;
3109   const gchar *dot_pos;
3110
3111   guint mask = 0;
3112
3113   uscore_pos = strchr (locale, '_');
3114   dot_pos = strchr (uscore_pos ? uscore_pos : locale, '.');
3115   at_pos = strchr (dot_pos ? dot_pos : (uscore_pos ? uscore_pos : locale), '@');
3116
3117   if (at_pos)
3118     {
3119       mask |= COMPONENT_MODIFIER;
3120       *modifier = g_strdup (at_pos);
3121     }
3122   else
3123     at_pos = locale + strlen (locale);
3124
3125   if (dot_pos)
3126     {
3127       mask |= COMPONENT_CODESET;
3128       *codeset = g_strndup (dot_pos, at_pos - dot_pos);
3129     }
3130   else
3131     dot_pos = at_pos;
3132
3133   if (uscore_pos)
3134     {
3135       mask |= COMPONENT_TERRITORY;
3136       *territory = g_strndup (uscore_pos, dot_pos - uscore_pos);
3137     }
3138   else
3139     uscore_pos = dot_pos;
3140
3141   *language = g_strndup (locale, uscore_pos - locale);
3142
3143   return mask;
3144 }
3145
3146 /*
3147  * Compute all interesting variants for a given locale name -
3148  * by stripping off different components of the value.
3149  *
3150  * For simplicity, we assume that the locale is in
3151  * X/Open format: language[_territory][.codeset][@modifier]
3152  *
3153  * TODO: Extend this to handle the CEN format (see the GNUlibc docs)
3154  *       as well. We could just copy the code from glibc wholesale
3155  *       but it is big, ugly, and complicated, so I'm reluctant
3156  *       to do so when this should handle 99% of the time...
3157  */
3158 GSList *
3159 _g_compute_locale_variants (const gchar *locale)
3160 {
3161   GSList *retval = NULL;
3162
3163   gchar *language = NULL;
3164   gchar *territory = NULL;
3165   gchar *codeset = NULL;
3166   gchar *modifier = NULL;
3167
3168   guint mask;
3169   guint i;
3170
3171   g_return_val_if_fail (locale != NULL, NULL);
3172
3173   mask = explode_locale (locale, &language, &territory, &codeset, &modifier);
3174
3175   /* Iterate through all possible combinations, from least attractive
3176    * to most attractive.
3177    */
3178   for (i = 0; i <= mask; i++)
3179     if ((i & ~mask) == 0)
3180       {
3181         gchar *val = g_strconcat (language,
3182                                   (i & COMPONENT_TERRITORY) ? territory : "",
3183                                   (i & COMPONENT_CODESET) ? codeset : "",
3184                                   (i & COMPONENT_MODIFIER) ? modifier : "",
3185                                   NULL);
3186         retval = g_slist_prepend (retval, val);
3187       }
3188
3189   g_free (language);
3190   if (mask & COMPONENT_CODESET)
3191     g_free (codeset);
3192   if (mask & COMPONENT_TERRITORY)
3193     g_free (territory);
3194   if (mask & COMPONENT_MODIFIER)
3195     g_free (modifier);
3196
3197   return retval;
3198 }
3199
3200 /* The following is (partly) taken from the gettext package.
3201    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.  */
3202
3203 static const gchar *
3204 guess_category_value (const gchar *category_name)
3205 {
3206   const gchar *retval;
3207
3208   /* The highest priority value is the `LANGUAGE' environment
3209      variable.  This is a GNU extension.  */
3210   retval = g_getenv ("LANGUAGE");
3211   if ((retval != NULL) && (retval[0] != '\0'))
3212     return retval;
3213
3214   /* `LANGUAGE' is not set.  So we have to proceed with the POSIX
3215      methods of looking to `LC_ALL', `LC_xxx', and `LANG'.  On some
3216      systems this can be done by the `setlocale' function itself.  */
3217
3218   /* Setting of LC_ALL overwrites all other.  */
3219   retval = g_getenv ("LC_ALL");  
3220   if ((retval != NULL) && (retval[0] != '\0'))
3221     return retval;
3222
3223   /* Next comes the name of the desired category.  */
3224   retval = g_getenv (category_name);
3225   if ((retval != NULL) && (retval[0] != '\0'))
3226     return retval;
3227
3228   /* Last possibility is the LANG environment variable.  */
3229   retval = g_getenv ("LANG");
3230   if ((retval != NULL) && (retval[0] != '\0'))
3231     return retval;
3232
3233 #ifdef G_PLATFORM_WIN32
3234   /* g_win32_getlocale() first checks for LC_ALL, LC_MESSAGES and
3235    * LANG, which we already did above. Oh well. The main point of
3236    * calling g_win32_getlocale() is to get the thread's locale as used
3237    * by Windows and the Microsoft C runtime (in the "English_United
3238    * States" format) translated into the Unixish format.
3239    */
3240   {
3241     char *locale = g_win32_getlocale ();
3242     retval = g_intern_string (locale);
3243     g_free (locale);
3244     return retval;
3245   }
3246 #endif  
3247
3248   return NULL;
3249 }
3250
3251 typedef struct _GLanguageNamesCache GLanguageNamesCache;
3252
3253 struct _GLanguageNamesCache {
3254   gchar *languages;
3255   gchar **language_names;
3256 };
3257
3258 static void
3259 language_names_cache_free (gpointer data)
3260 {
3261   GLanguageNamesCache *cache = data;
3262   g_free (cache->languages);
3263   g_strfreev (cache->language_names);
3264   g_free (cache);
3265 }
3266
3267 /**
3268  * g_get_language_names:
3269  * 
3270  * Computes a list of applicable locale names, which can be used to 
3271  * e.g. construct locale-dependent filenames or search paths. The returned 
3272  * list is sorted from most desirable to least desirable and always contains 
3273  * the default locale "C".
3274  *
3275  * For example, if LANGUAGE=de:en_US, then the returned list is
3276  * "de", "en_US", "en", "C".
3277  *
3278  * This function consults the environment variables <envar>LANGUAGE</envar>, 
3279  * <envar>LC_ALL</envar>, <envar>LC_MESSAGES</envar> and <envar>LANG</envar> 
3280  * to find the list of locales specified by the user.
3281  * 
3282  * Return value: a %NULL-terminated array of strings owned by GLib 
3283  *    that must not be modified or freed.
3284  *
3285  * Since: 2.6
3286  **/
3287 G_CONST_RETURN gchar * G_CONST_RETURN * 
3288 g_get_language_names (void)
3289 {
3290   static GStaticPrivate cache_private = G_STATIC_PRIVATE_INIT;
3291   GLanguageNamesCache *cache = g_static_private_get (&cache_private);
3292   const gchar *value;
3293
3294   if (!cache)
3295     {
3296       cache = g_new0 (GLanguageNamesCache, 1);
3297       g_static_private_set (&cache_private, cache, language_names_cache_free);
3298     }
3299
3300   value = guess_category_value ("LC_MESSAGES");
3301   if (!value)
3302     value = "C";
3303
3304   if (!(cache->languages && strcmp (cache->languages, value) == 0))
3305     {
3306       gchar **languages;
3307       gchar **alist, **a;
3308       GSList *list, *l;
3309       gint i;
3310
3311       g_free (cache->languages);
3312       g_strfreev (cache->language_names);
3313       cache->languages = g_strdup (value);
3314
3315       alist = g_strsplit (value, ":", 0);
3316       list = NULL;
3317       for (a = alist; *a; a++)
3318         {
3319           gchar *b = unalias_lang (*a);
3320           list = g_slist_concat (list, _g_compute_locale_variants (b));
3321         }
3322       g_strfreev (alist);
3323       list = g_slist_append (list, g_strdup ("C"));
3324
3325       cache->language_names = languages = g_new (gchar *, g_slist_length (list) + 1);
3326       for (l = list, i = 0; l; l = l->next, i++)
3327         languages[i] = l->data;
3328       languages[i] = NULL;
3329
3330       g_slist_free (list);
3331     }
3332
3333   return (G_CONST_RETURN gchar * G_CONST_RETURN *) cache->language_names;
3334 }
3335
3336 /**
3337  * g_direct_hash:
3338  * @v: a #gpointer key
3339  *
3340  * Converts a gpointer to a hash value.
3341  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3342  * when using pointers as keys in a #GHashTable.
3343  *
3344  * Returns: a hash value corresponding to the key.
3345  */
3346 guint
3347 g_direct_hash (gconstpointer v)
3348 {
3349   return GPOINTER_TO_UINT (v);
3350 }
3351
3352 /**
3353  * g_direct_equal:
3354  * @v1: a key.
3355  * @v2: a key to compare with @v1.
3356  *
3357  * Compares two #gpointer arguments and returns %TRUE if they are equal.
3358  * It can be passed to g_hash_table_new() as the @key_equal_func
3359  * parameter, when using pointers as keys in a #GHashTable.
3360  * 
3361  * Returns: %TRUE if the two keys match.
3362  */
3363 gboolean
3364 g_direct_equal (gconstpointer v1,
3365                 gconstpointer v2)
3366 {
3367   return v1 == v2;
3368 }
3369
3370 /**
3371  * g_int_equal:
3372  * @v1: a pointer to a #gint key.
3373  * @v2: a pointer to a #gint key to compare with @v1.
3374  *
3375  * Compares the two #gint values being pointed to and returns 
3376  * %TRUE if they are equal.
3377  * It can be passed to g_hash_table_new() as the @key_equal_func
3378  * parameter, when using pointers to integers as keys in a #GHashTable.
3379  * 
3380  * Returns: %TRUE if the two keys match.
3381  */
3382 gboolean
3383 g_int_equal (gconstpointer v1,
3384              gconstpointer v2)
3385 {
3386   return *((const gint*) v1) == *((const gint*) v2);
3387 }
3388
3389 /**
3390  * g_int_hash:
3391  * @v: a pointer to a #gint key
3392  *
3393  * Converts a pointer to a #gint to a hash value.
3394  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3395  * when using pointers to integers values as keys in a #GHashTable.
3396  *
3397  * Returns: a hash value corresponding to the key.
3398  */
3399 guint
3400 g_int_hash (gconstpointer v)
3401 {
3402   return *(const gint*) v;
3403 }
3404
3405 /**
3406  * g_int64_equal:
3407  * @v1: a pointer to a #gint64 key.
3408  * @v2: a pointer to a #gint64 key to compare with @v1.
3409  *
3410  * Compares the two #gint64 values being pointed to and returns 
3411  * %TRUE if they are equal.
3412  * It can be passed to g_hash_table_new() as the @key_equal_func
3413  * parameter, when using pointers to 64-bit integers as keys in a #GHashTable.
3414  * 
3415  * Returns: %TRUE if the two keys match.
3416  *
3417  * Since: 2.22
3418  */
3419 gboolean
3420 g_int64_equal (gconstpointer v1,
3421                gconstpointer v2)
3422 {
3423   return *((const gint64*) v1) == *((const gint64*) v2);
3424 }
3425
3426 /**
3427  * g_int64_hash:
3428  * @v: a pointer to a #gint64 key
3429  *
3430  * Converts a pointer to a #gint64 to a hash value.
3431  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3432  * when using pointers to 64-bit integers values as keys in a #GHashTable.
3433  *
3434  * Returns: a hash value corresponding to the key.
3435  *
3436  * Since: 2.22
3437  */
3438 guint
3439 g_int64_hash (gconstpointer v)
3440 {
3441   return (guint) *(const gint64*) v;
3442 }
3443
3444 /**
3445  * g_double_equal:
3446  * @v1: a pointer to a #gdouble key.
3447  * @v2: a pointer to a #gdouble key to compare with @v1.
3448  *
3449  * Compares the two #gdouble values being pointed to and returns 
3450  * %TRUE if they are equal.
3451  * It can be passed to g_hash_table_new() as the @key_equal_func
3452  * parameter, when using pointers to doubles as keys in a #GHashTable.
3453  * 
3454  * Returns: %TRUE if the two keys match.
3455  *
3456  * Since: 2.22
3457  */
3458 gboolean
3459 g_double_equal (gconstpointer v1,
3460                 gconstpointer v2)
3461 {
3462   return *((const gdouble*) v1) == *((const gdouble*) v2);
3463 }
3464
3465 /**
3466  * g_double_hash:
3467  * @v: a pointer to a #gdouble key
3468  *
3469  * Converts a pointer to a #gdouble to a hash value.
3470  * It can be passed to g_hash_table_new() as the @hash_func parameter, 
3471  * when using pointers to doubles as keys in a #GHashTable.
3472  *
3473  * Returns: a hash value corresponding to the key.
3474  *
3475  * Since: 2.22
3476  */
3477 guint
3478 g_double_hash (gconstpointer v)
3479 {
3480   return (guint) *(const gdouble*) v;
3481 }
3482
3483 /**
3484  * g_nullify_pointer:
3485  * @nullify_location: the memory address of the pointer.
3486  * 
3487  * Set the pointer at the specified location to %NULL.
3488  **/
3489 void
3490 g_nullify_pointer (gpointer *nullify_location)
3491 {
3492   g_return_if_fail (nullify_location != NULL);
3493
3494   *nullify_location = NULL;
3495 }
3496
3497 /**
3498  * g_get_codeset:
3499  * 
3500  * Get the codeset for the current locale.
3501  * 
3502  * Return value: a newly allocated string containing the name
3503  * of the codeset. This string must be freed with g_free().
3504  **/
3505 gchar *
3506 g_get_codeset (void)
3507 {
3508   const gchar *charset;
3509
3510   g_get_charset (&charset);
3511
3512   return g_strdup (charset);
3513 }
3514
3515 /* This is called from g_thread_init(). It's used to
3516  * initialize some static data in a threadsafe way.
3517  */
3518 void
3519 _g_utils_thread_init (void)
3520 {
3521   g_get_language_names ();
3522 }
3523
3524 #ifdef G_OS_WIN32
3525
3526 /**
3527  * _glib_get_locale_dir:
3528  *
3529  * Return the path to the share\locale or lib\locale subfolder of the
3530  * GLib installation folder. The path is in the system codepage. We
3531  * have to use system codepage as bindtextdomain() doesn't have a
3532  * UTF-8 interface.
3533  */
3534 static gchar *
3535 _glib_get_locale_dir (void)
3536 {
3537   gchar *install_dir = NULL, *locale_dir;
3538   gchar *retval = NULL;
3539
3540   if (glib_dll != NULL)
3541     install_dir = g_win32_get_package_installation_directory_of_module (glib_dll);
3542
3543   if (install_dir)
3544     {
3545       /*
3546        * Append "/share/locale" or "/lib/locale" depending on whether
3547        * autoconfigury detected GNU gettext or not.
3548        */
3549       const char *p = GLIB_LOCALE_DIR + strlen (GLIB_LOCALE_DIR);
3550       while (*--p != '/')
3551         ;
3552       while (*--p != '/')
3553         ;
3554
3555       locale_dir = g_build_filename (install_dir, p, NULL);
3556
3557       retval = g_win32_locale_filename_from_utf8 (locale_dir);
3558
3559       g_free (install_dir);
3560       g_free (locale_dir);
3561     }
3562
3563   if (retval)
3564     return retval;
3565   else
3566     return g_strdup ("");
3567 }
3568
3569 #undef GLIB_LOCALE_DIR
3570
3571 #endif /* G_OS_WIN32 */
3572
3573 /**
3574  * glib_gettext:
3575  * @str: The string to be translated
3576  *
3577  * Returns the translated string from the glib translations.
3578  * This is an internal function and should only be used by
3579  * the internals of glib (such as libgio).
3580  *
3581  * Returns: the transation of @str to the current locale
3582  */
3583 G_CONST_RETURN gchar *
3584 glib_gettext (const gchar *str)
3585 {
3586   static gboolean _glib_gettext_initialized = FALSE;
3587
3588   if (!_glib_gettext_initialized)
3589     {
3590 #ifdef G_OS_WIN32
3591       gchar *tmp = _glib_get_locale_dir ();
3592       bindtextdomain (GETTEXT_PACKAGE, tmp);
3593       g_free (tmp);
3594 #else
3595       bindtextdomain (GETTEXT_PACKAGE, GLIB_LOCALE_DIR);
3596 #endif
3597 #    ifdef HAVE_BIND_TEXTDOMAIN_CODESET
3598       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
3599 #    endif
3600       _glib_gettext_initialized = TRUE;
3601     }
3602   
3603   return g_dgettext (GETTEXT_PACKAGE, str);
3604 }
3605
3606 #if defined (G_OS_WIN32) && !defined (_WIN64)
3607
3608 /* Binary compatibility versions. Not for newly compiled code. */
3609
3610 #undef g_find_program_in_path
3611
3612 gchar*
3613 g_find_program_in_path (const gchar *program)
3614 {
3615   gchar *utf8_program = g_locale_to_utf8 (program, -1, NULL, NULL, NULL);
3616   gchar *utf8_retval = g_find_program_in_path_utf8 (utf8_program);
3617   gchar *retval;
3618
3619   g_free (utf8_program);
3620   if (utf8_retval == NULL)
3621     return NULL;
3622   retval = g_locale_from_utf8 (utf8_retval, -1, NULL, NULL, NULL);
3623   g_free (utf8_retval);
3624
3625   return retval;
3626 }
3627
3628 #undef g_get_current_dir
3629
3630 gchar*
3631 g_get_current_dir (void)
3632 {
3633   gchar *utf8_dir = g_get_current_dir_utf8 ();
3634   gchar *dir = g_locale_from_utf8 (utf8_dir, -1, NULL, NULL, NULL);
3635   g_free (utf8_dir);
3636   return dir;
3637 }
3638
3639 #undef g_getenv
3640
3641 G_CONST_RETURN gchar*
3642 g_getenv (const gchar *variable)
3643 {
3644   gchar *utf8_variable = g_locale_to_utf8 (variable, -1, NULL, NULL, NULL);
3645   const gchar *utf8_value = g_getenv_utf8 (utf8_variable);
3646   gchar *value;
3647   GQuark quark;
3648
3649   g_free (utf8_variable);
3650   if (!utf8_value)
3651     return NULL;
3652   value = g_locale_from_utf8 (utf8_value, -1, NULL, NULL, NULL);
3653   quark = g_quark_from_string (value);
3654   g_free (value);
3655
3656   return g_quark_to_string (quark);
3657 }
3658
3659 #undef g_setenv
3660
3661 gboolean
3662 g_setenv (const gchar *variable, 
3663           const gchar *value, 
3664           gboolean     overwrite)
3665 {
3666   gchar *utf8_variable = g_locale_to_utf8 (variable, -1, NULL, NULL, NULL);
3667   gchar *utf8_value = g_locale_to_utf8 (value, -1, NULL, NULL, NULL);
3668   gboolean retval = g_setenv_utf8 (utf8_variable, utf8_value, overwrite);
3669
3670   g_free (utf8_variable);
3671   g_free (utf8_value);
3672
3673   return retval;
3674 }
3675
3676 #undef g_unsetenv
3677
3678 void
3679 g_unsetenv (const gchar *variable)
3680 {
3681   gchar *utf8_variable = g_locale_to_utf8 (variable, -1, NULL, NULL, NULL);
3682
3683   g_unsetenv_utf8 (utf8_variable);
3684
3685   g_free (utf8_variable);
3686 }
3687
3688 #undef g_get_user_name
3689
3690 G_CONST_RETURN gchar*
3691 g_get_user_name (void)
3692 {
3693   g_get_any_init_locked ();
3694   return g_user_name_cp;
3695 }
3696
3697 #undef g_get_real_name
3698
3699 G_CONST_RETURN gchar*
3700 g_get_real_name (void)
3701 {
3702   g_get_any_init_locked ();
3703   return g_real_name_cp;
3704 }
3705
3706 #undef g_get_home_dir
3707
3708 G_CONST_RETURN gchar*
3709 g_get_home_dir (void)
3710 {
3711   g_get_any_init_locked ();
3712   return g_home_dir_cp;
3713 }
3714
3715 #undef g_get_tmp_dir
3716
3717 G_CONST_RETURN gchar*
3718 g_get_tmp_dir (void)
3719 {
3720   g_get_any_init_locked ();
3721   return g_tmp_dir_cp;
3722 }
3723
3724 #endif