2 * gmisc.c: Misc functions with no place to go (right now)
5 * Aaron Bockover (abockover@novell.com)
7 * (C) 2006 Novell, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining
10 * a copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37 g_getenv(const gchar
*variable
)
39 gunichar2
*var
, *buffer
;
41 gint32 buffer_size
= 1024;
43 var
= u8to16(variable
);
44 buffer
= g_malloc(buffer_size
*sizeof(gunichar2
));
45 retval
= GetEnvironmentVariable (var
, buffer
, buffer_size
);
47 if (retval
> buffer_size
) {
50 buffer
= g_malloc(buffer_size
*sizeof(gunichar2
));
51 retval
= GetEnvironmentVariable (var
, buffer
, buffer_size
);
53 val
= u16to8 (buffer
);
61 g_setenv(const gchar
*variable
, const gchar
*value
, gboolean overwrite
)
65 var
= u8to16(variable
);
67 result
= (SetEnvironmentVariable(var
, val
) != 0) ? TRUE
: FALSE
;
74 g_unsetenv(const gchar
*variable
)
77 var
= u8to16(variable
);
78 SetEnvironmentVariable(var
, TEXT(""));
83 g_win32_getlocale(void)
85 /* FIXME: Use GetThreadLocale
86 * and convert LCID to standard
87 * string form, "en_US" */
88 return strdup ("en_US");
92 g_path_is_absolute (const char *filename
)
94 g_return_val_if_fail (filename
!= NULL
, FALSE
);
96 if (filename
[0] != '\0' && filename
[1] != '\0')
97 if (filename
[1] == ':' && filename
[2] != '\0' &&
98 (filename
[2] == '\\' || filename
[2] == '/'))
101 else if (filename
[0] == '\\' && filename
[1] == '\\' &&
109 g_get_home_dir (void)
112 const gchar
*drive
= g_getenv ("HOMEDRIVE");
113 const gchar
*path
= g_getenv ("HOMEPATH");
114 gchar
*home_dir
= NULL
;
117 home_dir
= g_malloc(strlen(drive
) + strlen(path
) +1);
119 sprintf(home_dir
, "%s%s", drive
, path
);
127 g_get_user_name (void)
129 const char * retName
= g_getenv ("USER");
131 retName
= g_getenv ("USERNAME");
135 static const char *tmp_dir
;
140 if (tmp_dir
== NULL
){
141 if (tmp_dir
== NULL
){
142 tmp_dir
= g_getenv ("TMPDIR");
143 if (tmp_dir
== NULL
){
144 tmp_dir
= g_getenv ("TMP");
145 if (tmp_dir
== NULL
){
146 tmp_dir
= g_getenv ("TEMP");
148 tmp_dir
= "C:\\temp";