2010-05-06 Jonathan Chambers <joncham@gmail.com>
[mono.git] / eglib / src / gfile-win32.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 <errno.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <fcntl.h>
36 #include <sys/types.h>
37 #include <sys/stat.h>
38
39 #ifdef G_OS_WIN32
40 #include <io.h>
41 #define open _open
42 #define S_ISREG(x) ((x &  _S_IFMT) == _S_IFREG)
43 #define S_ISDIR(x) ((x &  _S_IFMT) == _S_IFDIR)
44 #endif
45
46 int mkstemp (char *tmp_template)
47 {
48         int fd;
49         gunichar2* utf16_template;
50
51         utf16_template  = u8to16 (tmp_template);
52
53         fd = -1;
54         utf16_template = _wmktemp( utf16_template);
55         if (utf16_template && *utf16_template) {
56                 /* FIXME: _O_TEMPORARY causes file to disappear on close causing a test to fail */
57                 fd = _wopen( utf16_template, _O_BINARY | _O_CREAT /*| _O_TEMPORARY*/ | _O_EXCL, _S_IREAD | _S_IWRITE);
58         }
59
60         sprintf (tmp_template + strlen (tmp_template) - 6, "%S", utf16_template + wcslen (utf16_template) - 6);
61
62         g_free (utf16_template);
63         return fd;
64 }
65
66 #ifdef _MSC_VER
67 #pragma warning(disable:4701)
68 #endif
69
70 gboolean
71 g_file_test (const gchar *filename, GFileTest test)
72 {
73         struct __stat64 stat;
74         int ret = 0;
75         gunichar2* utf16_filename = NULL;
76
77         if (filename == NULL || test == 0)
78                 return FALSE;
79
80         utf16_filename = u8to16 (filename);
81         ret = _wstati64 (utf16_filename, &stat);
82         g_free (utf16_filename);
83
84         if ((test & G_FILE_TEST_EXISTS) != 0) {
85                 if (ret == 0)
86                         return TRUE;
87         }
88
89         if (ret != 0)
90                 return FALSE;
91
92         if ((test & G_FILE_TEST_IS_EXECUTABLE) != 0) {
93                 if (stat.st_mode & _S_IEXEC)
94                         return TRUE;
95         }
96
97         if ((test & G_FILE_TEST_IS_REGULAR) != 0) {
98                 if (stat.st_mode & _S_IFREG)
99                         return TRUE;
100         }
101
102         if ((test & G_FILE_TEST_IS_DIR) != 0) {
103                 if (stat.st_mode & _S_IFDIR)
104                         return TRUE;
105         }
106
107         /* make this last in case it is OR'd with something else */
108         if ((test & G_FILE_TEST_IS_SYMLINK) != 0) {
109                 return FALSE;
110         }
111
112         return FALSE;
113 }