OSDN Git Service

Redo the filters based on assumptions discussed in mingw-dvlpr list.
[mingw/mingw-org-wsl.git] / include / sys / stat.h
1 /**
2  * @file stat.h
3  * @copy 2012 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _STAT_H_
25 #define _STAT_H_
26 #pragma GCC system_header
27 #include <_mingw.h>
28
29 #define __need_size_t
30 #define __need_wchar_t
31 #ifndef RC_INVOKED
32 #include <stddef.h>
33 #endif /* Not RC_INVOKED */
34
35 #include <sys/types.h>
36
37 /*
38  * Constants for the stat st_mode member.
39  */
40 #define _S_IFIFO        0x1000  /* FIFO */
41 #define _S_IFCHR        0x2000  /* Character */
42 #define _S_IFBLK        0x3000  /* Block: Is this ever set under w32? */
43 #define _S_IFDIR        0x4000  /* Directory */
44 #define _S_IFREG        0x8000  /* Regular */
45
46 #define _S_IFMT         0xF000  /* File type mask */
47
48 #define _S_IEXEC        0x0040
49 #define _S_IWRITE       0x0080
50 #define _S_IREAD        0x0100
51
52 #define _S_IRWXU        (_S_IREAD | _S_IWRITE | _S_IEXEC)
53 #define _S_IXUSR        _S_IEXEC
54 #define _S_IWUSR        _S_IWRITE
55 #define _S_IRUSR        _S_IREAD
56
57 #define _S_ISDIR(m)     (((m) & _S_IFMT) == _S_IFDIR)
58 #define _S_ISFIFO(m)    (((m) & _S_IFMT) == _S_IFIFO)
59 #define _S_ISCHR(m)     (((m) & _S_IFMT) == _S_IFCHR)
60 #define _S_ISBLK(m)     (((m) & _S_IFMT) == _S_IFBLK)
61 #define _S_ISREG(m)     (((m) & _S_IFMT) == _S_IFREG)
62
63 #ifndef _NO_OLDNAMES
64
65 #define S_IFIFO         _S_IFIFO
66 #define S_IFCHR         _S_IFCHR
67 #define S_IFBLK         _S_IFBLK
68 #define S_IFDIR         _S_IFDIR
69 #define S_IFREG         _S_IFREG
70 #define S_IFMT          _S_IFMT
71 #define S_IEXEC         _S_IEXEC
72 #define S_IWRITE        _S_IWRITE
73 #define S_IREAD         _S_IREAD
74 #define S_IRWXU         _S_IRWXU
75 #define S_IXUSR         _S_IXUSR
76 #define S_IWUSR         _S_IWUSR
77 #define S_IRUSR         _S_IRUSR
78
79 #define S_ISDIR(m)      (((m) & S_IFMT) == S_IFDIR)
80 #define S_ISFIFO(m)     (((m) & S_IFMT) == S_IFIFO)
81 #define S_ISCHR(m)      (((m) & S_IFMT) == S_IFCHR)
82 #define S_ISBLK(m)      (((m) & S_IFMT) == S_IFBLK)
83 #define S_ISREG(m)      (((m) & S_IFMT) == S_IFREG)
84
85 #endif  /* Not _NO_OLDNAMES */
86
87 #ifndef RC_INVOKED
88
89 #ifndef _STAT_DEFINED
90 /*
91  * The structure manipulated and returned by stat and fstat.
92  *
93  * NOTE: If called on a directory the values in the time fields are not only
94  * invalid, they will cause localtime et. al. to return NULL. And calling
95  * asctime with a NULL pointer causes an Invalid Page Fault. So watch it!
96  */
97 struct _stat
98 {
99         _dev_t  st_dev;         /* Equivalent to drive number 0=A 1=B ... */
100         _ino_t  st_ino;         /* Always zero ? */
101         _mode_t st_mode;        /* See above constants */
102         short   st_nlink;       /* Number of links. */
103         short   st_uid;         /* User: Maybe significant on NT ? */
104         short   st_gid;         /* Group: Ditto */
105         _dev_t  st_rdev;        /* Seems useless (not even filled in) */
106         _off_t  st_size;        /* File size in bytes */
107         time_t  st_atime;       /* Accessed date (always 00:00 hrs local
108                                  * on FAT) */
109         time_t  st_mtime;       /* Modified time */
110         time_t  st_ctime;       /* Creation time */
111 };
112
113 #ifndef _NO_OLDNAMES
114 /* NOTE: Must be the same as _stat above. */
115 struct stat
116 {
117         dev_t   st_dev;         /* Equivalent to drive number 0=A 1=B ... */
118         ino_t   st_ino;         /* Always zero ? */
119         mode_t  st_mode;        /* See above constants */
120         short   st_nlink;       /* Number of links. */
121         short   st_uid;         /* User: Maybe significant on NT ? */
122         short   st_gid;         /* Group: Ditto */
123         dev_t   st_rdev;        /* Seems useless (not even filled in) */
124         off_t   st_size;        /* File size in bytes */
125         time_t  st_atime;       /* Accessed date (always 00:00 hrs local
126                                  * on FAT) */
127         time_t  st_mtime;       /* Modified time */
128         time_t  st_ctime;       /* Creation time */
129 };
130 #endif /* _NO_OLDNAMES */
131
132 struct _stati64 {
133     _dev_t st_dev;
134     _ino_t st_ino;
135     _mode_t st_mode;
136     short st_nlink;
137     short st_uid;
138     short st_gid;
139     _dev_t st_rdev;
140     __int64 st_size;
141     time_t st_atime;
142     time_t st_mtime;
143     time_t st_ctime;
144 };
145 #if __MSVCRT_VERSION__ >= 0x0601
146 struct __stat64
147 {
148     _dev_t st_dev;
149     _ino_t st_ino;
150     _mode_t st_mode;
151     short st_nlink;
152     short st_uid;
153     short st_gid;
154     _dev_t st_rdev;
155     __int64 st_size;
156     __time64_t st_atime;
157     __time64_t st_mtime;
158     __time64_t st_ctime;
159 };
160 #endif /* __MSVCRT_VERSION__ >= 0x0601 */
161 #if __MSVCRT_VERSION__ >= 0x0800
162 struct __stat32
163 {
164         _dev_t          st_dev;
165         _ino_t          st_ino;
166         _mode_t         st_mode;
167         short           st_nlink;
168         short           st_uid;
169         short           st_gid;
170         _dev_t          st_rdev;
171         __int32         st_size;
172         __time32_t      st_atime;
173         __time32_t      st_mtime;
174         __time32_t      st_ctime;
175 };
176 struct _stat32i64 {
177         _dev_t          st_dev;
178         _ino_t          st_ino;
179         _mode_t         st_mode;
180         short           st_nlink;
181         short           st_uid;
182         short           st_gid;
183         _dev_t          st_rdev;
184         __int64         st_size;
185         __time32_t      st_atime;
186         __time32_t      st_mtime;
187         __time32_t      st_ctime;
188 };
189 struct _stat64i32 {
190         _dev_t          st_dev;
191         _ino_t          st_ino;
192         _mode_t         st_mode;
193         short           st_nlink;
194         short           st_uid;
195         short           st_gid;
196         _dev_t          st_rdev;
197         __int32         st_size;
198         __time64_t      st_atime;
199         __time64_t      st_mtime;
200         __time64_t      st_ctime;
201 };
202 #endif /* __MSVCRT_VERSION__ >= 0x0800 */
203 #define _STAT_DEFINED
204 #endif /* _STAT_DEFINED */
205
206 #ifdef  __cplusplus
207 extern "C" {
208 #endif
209
210 #if __MSVCRT_VERSION__ < 0x0800
211 _CRTIMP int __cdecl __MINGW_NOTHROW     _fstat (int, struct _stat*);
212 #endif
213 _CRTIMP int __cdecl __MINGW_NOTHROW     _chmod (const char*, int);
214 #if __MSVCRT_VERSION__ < 0x0800
215 _CRTIMP int __cdecl __MINGW_NOTHROW     _stat (const char*, struct _stat*);
216 #endif
217
218 #ifndef _NO_OLDNAMES
219 /* FIXME for __MSVCRT_VERSION__ >= 0x0800 */
220 /* These functions live in liboldnames.a. */
221 _CRTIMP int __cdecl __MINGW_NOTHROW     fstat (int, struct stat*);
222 _CRTIMP int __cdecl __MINGW_NOTHROW     chmod (const char*, int);
223 _CRTIMP int __cdecl __MINGW_NOTHROW     stat (const char*, struct stat*);
224
225 #endif  /* Not _NO_OLDNAMES */
226
227 #if __MSVCRT_VERSION__ < 0x0800
228 _CRTIMP int __cdecl __MINGW_NOTHROW  _fstati64(int, struct _stati64 *);
229 _CRTIMP int __cdecl __MINGW_NOTHROW  _stati64(const char *, struct _stati64 *);
230 #endif
231 /* These require newer versions of msvcrt.dll (6.10 or higher).  */ 
232 #if __MSVCRT_VERSION__ >= 0x0601
233 _CRTIMP int __cdecl __MINGW_NOTHROW _fstat64 (int, struct __stat64*);
234 _CRTIMP int __cdecl __MINGW_NOTHROW _stat64 (const char*, struct __stat64*);
235 #endif /* __MSVCRT_VERSION__ >= 0x0601 */
236 #if __MSVCRT_VERSION__ >= 0x0800
237 _CRTIMP int __cdecl __MINGW_NOTHROW     _fstat32 (int, struct __stat32*);
238 _CRTIMP int __cdecl __MINGW_NOTHROW     _stat32 (const char*, struct __stat32*);
239 _CRTIMP int __cdecl __MINGW_NOTHROW     _fstat32i64 (int, struct _stat32i64*);
240 _CRTIMP int __cdecl __MINGW_NOTHROW     _fstat64i32 (int, struct _stat64i32*);
241 _CRTIMP int __cdecl __MINGW_NOTHROW     _stat32i64 (const char*, struct _stat32i64*);
242 _CRTIMP int __cdecl __MINGW_NOTHROW     _stat64i32 (const char*, struct _stat64i32*);
243 #ifndef _USE_32BIT_TIME_T
244 _CRTALIAS int __cdecl __MINGW_NOTHROW   _fstat (int _v1, struct _stat* _v2)              { return(_fstat64i32 (_v1,(struct _stat64i32*)_v2)); }
245 _CRTALIAS int __cdecl __MINGW_NOTHROW   _stat (const char* _v1, struct _stat* _v2)       { return(_stat64i32  (_v1,(struct _stat64i32*)_v2)); }
246 _CRTALIAS int __cdecl __MINGW_NOTHROW   _fstati64 (int _v1, struct _stati64* _v2)        { return(_fstat64 (_v1,(struct __stat64*)_v2)); }
247 _CRTALIAS int __cdecl __MINGW_NOTHROW   _stati64 (const char* _v1, struct _stati64* _v2) { return(_stat64  (_v1,(struct __stat64*)_v2)); }
248 #else
249 _CRTALIAS int __cdecl __MINGW_NOTHROW   _fstat (int _v1, struct _stat* _v2)              { return(_fstat32 (_v1,(struct __stat32*)_v2)); }
250 _CRTALIAS int __cdecl __MINGW_NOTHROW   _stat (const char* _v1, struct _stat* _v2)       { return(_stat32  (_v1,(struct __stat32*)_v2)); }
251 _CRTALIAS int __cdecl __MINGW_NOTHROW   _fstati64 (int _v1, struct _stati64* _v2)        { return(_fstat32i64 (_v1,(struct _stat32i64*)_v2)); }
252 _CRTALIAS int __cdecl __MINGW_NOTHROW   _stati64 (const char* _v1, struct _stati64* _v2) { return(_stat32i64  (_v1,(struct _stat32i64*)_v2)); }
253 #endif /* !_USE_32BIT_TIME_T */
254 #endif /* __MSVCRT_VERSION__ >= 0x0800 */
255
256
257 #if !defined ( _WSTAT_DEFINED) /* also declared in wchar.h */
258 #if __MSVCRT_VERSION__ < 0x0800
259 _CRTIMP int __cdecl __MINGW_NOTHROW     _wstat(const wchar_t*, struct _stat*);
260 _CRTIMP int __cdecl __MINGW_NOTHROW     _wstati64 (const wchar_t*, struct _stati64*);
261 #endif
262 #if __MSVCRT_VERSION__ >= 0x0601
263 _CRTIMP int __cdecl __MINGW_NOTHROW _wstat64 (const wchar_t*, struct __stat64*);
264 #endif /* __MSVCRT_VERSION__ >= 0x0601 */
265 #if __MSVCRT_VERSION__ >= 0x0800
266 _CRTIMP int __cdecl __MINGW_NOTHROW     _wstat32 (const wchar_t*, struct __stat32*);
267 _CRTIMP int __cdecl __MINGW_NOTHROW     _wstat32i64 (const wchar_t*, struct _stat32i64*);
268 _CRTIMP int __cdecl __MINGW_NOTHROW     _wstat64i32 (const wchar_t*, struct _stat64i32*);
269 #ifndef _USE_32BIT_TIME_T
270 _CRTALIAS int __cdecl __MINGW_NOTHROW   _wstat (const wchar_t* _v1, struct _stat* _v2)       { return(_wstat64i32 (_v1,(struct _stat64i32*)_v2)); }
271 _CRTALIAS int __cdecl __MINGW_NOTHROW   _wstati64 (const wchar_t* _v1, struct _stati64* _v2) { return(_wstat64 (_v1,(struct __stat64*)_v2)); }
272 #else
273 _CRTALIAS int __cdecl __MINGW_NOTHROW   _wstat (const wchar_t* _v1, struct _stat* _v2)       { return(_wstat32 (_v1,(struct __stat32*)_v2)); }
274 _CRTALIAS int __cdecl __MINGW_NOTHROW   _wstati64 (const wchar_t* _v1, struct _stati64* _v2) { return(_wstat32i64 (_v1,(struct _stat32i64*)_v2)); }
275 #endif /* !_USE_32BIT_TIME_T */
276 #endif /* __MSVCRT_VERSION__ >= 0x0800 */
277 #define _WSTAT_DEFINED
278 #endif /* _WSTAT_DEFIND */
279
280 #ifdef  __cplusplus
281 }
282 #endif
283
284 #endif  /* Not RC_INVOKED */
285
286 #endif  /* Not _STAT_H_ */