Merge pull request #3936 from kumpera/monoclass_reorg2
[mono.git] / eglib / src / gfile-unix.c
1 /*
2  * File utility functions.
3  *
4  * Author:
5  *   Gonzalo Paniagua Javier (gonzalo@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 #include <config.h>
29 #include <glib.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <errno.h>
35 #include <fcntl.h>
36
37 #ifdef HAVE_UNISTD_H
38 #include <unistd.h>
39 #endif
40
41 gboolean
42 g_file_test (const gchar *filename, GFileTest test)
43 {
44         struct stat st;
45         gboolean have_stat;
46
47         if (filename == NULL || test == 0)
48                 return FALSE;
49
50         have_stat = FALSE;
51
52         if ((test & G_FILE_TEST_EXISTS) != 0) {
53                 if (access (filename, F_OK) == 0)
54                         return TRUE;
55         }
56
57         if ((test & G_FILE_TEST_IS_EXECUTABLE) != 0) {
58                 if (access (filename, X_OK) == 0)
59                         return TRUE;
60         }
61         if ((test & G_FILE_TEST_IS_SYMLINK) != 0) {
62                 have_stat = (lstat (filename, &st) == 0);
63                 if (have_stat && S_ISLNK (st.st_mode))
64                         return TRUE;
65         }
66
67         if ((test & G_FILE_TEST_IS_REGULAR) != 0) {
68                 if (!have_stat)
69                         have_stat = (stat (filename, &st) == 0);
70                 if (have_stat && S_ISREG (st.st_mode))
71                         return TRUE;
72         }
73         if ((test & G_FILE_TEST_IS_DIR) != 0) {
74                 if (!have_stat)
75                         have_stat = (stat (filename, &st) == 0);
76                 if (have_stat && S_ISDIR (st.st_mode))
77                         return TRUE;
78         }
79         return FALSE;
80 }
81
82 gchar *
83 g_mkdtemp (char *tmp_template)
84 {
85         char *template_copy = g_strdup (tmp_template);
86
87         return mkdtemp (template_copy);
88 }