2010-07-20 Zoltan Varga <vargaz@gmail.com>
[mono.git] / eglib / src / gmisc-unix.c
1 /*
2  * gmisc.c: Misc functions with no place to go (right now)
3  *
4  * Author:
5  *   Aaron Bockover (abockover@novell.com)
6  *
7  * (C) 2006 Novell, Inc.
8  *
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:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
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.
27  */
28
29 #include <config.h>
30 #include <stdlib.h>
31 #include <glib.h>
32 #include <pthread.h>
33
34 #ifdef HAVE_PWD_H
35 #include <pwd.h>
36 #endif
37
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41
42
43 const gchar *
44 g_getenv(const gchar *variable)
45 {
46         return getenv(variable);
47 }
48
49 gboolean
50 g_setenv(const gchar *variable, const gchar *value, gboolean overwrite)
51 {
52         return setenv(variable, value, overwrite) == 0;
53 }
54
55 void
56 g_unsetenv(const gchar *variable)
57 {
58         unsetenv(variable);
59 }
60
61 gchar*
62 g_win32_getlocale(void)
63 {
64         return NULL;
65 }
66
67 gboolean
68 g_path_is_absolute (const char *filename)
69 {
70         g_return_val_if_fail (filename != NULL, FALSE);
71
72         return (*filename == '/');
73 }
74
75 static pthread_mutex_t home_lock = PTHREAD_MUTEX_INITIALIZER;
76 static const gchar *home_dir;
77
78 /* Give preference to /etc/passwd than HOME */
79 const gchar *
80 g_get_home_dir (void)
81 {
82         if (home_dir == NULL){
83                 pthread_mutex_lock (&home_lock);
84                 if (home_dir == NULL){
85 #ifdef HAVE_GETPWUID_R
86                         struct passwd pw;
87                         struct passwd *result;
88                         char buf [4096];
89
90                         if (getpwuid_r (getuid (), &pw, buf, 4096, &result) == 0)
91                                 home_dir = g_strdup (pw.pw_dir);
92 #endif
93                         if (home_dir == NULL)
94                                 home_dir = g_getenv ("HOME");
95                 }
96                 pthread_mutex_unlock (&home_lock);
97         }
98         return home_dir;
99 }
100
101 const char *
102 g_get_user_name (void)
103 {
104         const char *retName = g_getenv ("USER");
105         if (!retName)
106                 retName = "somebody";
107         return retName;
108 }
109
110 static const char *tmp_dir;
111
112 static pthread_mutex_t tmp_lock = PTHREAD_MUTEX_INITIALIZER;
113
114 const gchar *
115 g_get_tmp_dir (void)
116 {
117         if (tmp_dir == NULL){
118                 pthread_mutex_lock (&tmp_lock);
119                 if (tmp_dir == NULL){
120                         tmp_dir = g_getenv ("TMPDIR");
121                         if (tmp_dir == NULL){
122                                 tmp_dir = g_getenv ("TMP");
123                                 if (tmp_dir == NULL){
124                                         tmp_dir = g_getenv ("TEMP");
125                                         if (tmp_dir == NULL)
126                                                 tmp_dir = "/tmp";
127                                 }
128                         }
129                 }
130                 pthread_mutex_unlock (&tmp_lock);
131         }
132         return tmp_dir;
133 }
134