1 | /* $Id: mscfakes.h 2204 2009-01-06 21:40:08Z bird $ */
|
---|
2 | /** @file
|
---|
3 | * Unix fakes for MSC.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (c) 2005-2008 knut st. osmundsen <[email protected]>
|
---|
8 | *
|
---|
9 | * This file is part of kBuild.
|
---|
10 | *
|
---|
11 | * kBuild is free software; you can redistribute it and/or modify
|
---|
12 | * it under the terms of the GNU General Public License as published by
|
---|
13 | * the Free Software Foundation; either version 3 of the License, or
|
---|
14 | * (at your option) any later version.
|
---|
15 | *
|
---|
16 | * kBuild is distributed in the hope that it will be useful,
|
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | * GNU General Public License for more details.
|
---|
20 | *
|
---|
21 | * You should have received a copy of the GNU General Public License
|
---|
22 | * along with kBuild. If not, see <http://www.gnu.org/licenses/>
|
---|
23 | *
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___mscfakes_h
|
---|
27 | #define ___mscfakes_h
|
---|
28 | #ifdef _MSC_VER
|
---|
29 |
|
---|
30 | #include <io.h>
|
---|
31 | #include <direct.h>
|
---|
32 | #include <time.h>
|
---|
33 | #include <stdarg.h>
|
---|
34 | #include <malloc.h>
|
---|
35 | #include "getopt.h"
|
---|
36 |
|
---|
37 | #if defined(MSC_DO_64_BIT_IO) && _MSC_VER >= 1400 /* We want 64-bit file lengths here when possible. */
|
---|
38 | # define off_t __int64
|
---|
39 | # define stat _stat64
|
---|
40 | # define fstat _fstat64
|
---|
41 | # define lseek _lseeki64
|
---|
42 | #else
|
---|
43 | # undef stat
|
---|
44 | # define stat(_path, _st) my_other_stat(_path, _st)
|
---|
45 | extern int my_other_stat(const char *, struct stat *);
|
---|
46 | #endif
|
---|
47 |
|
---|
48 |
|
---|
49 |
|
---|
50 | #ifndef S_ISDIR
|
---|
51 | # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
|
---|
52 | #endif
|
---|
53 | #ifndef S_ISREG
|
---|
54 | # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
|
---|
55 | #endif
|
---|
56 | #define S_ISLNK(m) 0
|
---|
57 | #define S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC)
|
---|
58 | #define S_IXUSR _S_IEXEC
|
---|
59 | #define S_IWUSR _S_IWRITE
|
---|
60 | #define S_IRUSR _S_IREAD
|
---|
61 | #define S_IRWXG 0000070
|
---|
62 | #define S_IRGRP 0000040
|
---|
63 | #define S_IWGRP 0000020
|
---|
64 | #define S_IXGRP 0000010
|
---|
65 | #define S_IRWXO 0000007
|
---|
66 | #define S_IROTH 0000004
|
---|
67 | #define S_IWOTH 0000002
|
---|
68 | #define S_IXOTH 0000001
|
---|
69 | #define S_ISUID 0004000
|
---|
70 | #define S_ISGID 0002000
|
---|
71 | #define ALLPERMS 0000777
|
---|
72 |
|
---|
73 | #undef PATH_MAX
|
---|
74 | #define PATH_MAX _MAX_PATH
|
---|
75 | #undef MAXPATHLEN
|
---|
76 | #define MAXPATHLEN _MAX_PATH
|
---|
77 |
|
---|
78 | #define EX_OK 0
|
---|
79 | #define EX_OSERR 1
|
---|
80 | #define EX_NOUSER 1
|
---|
81 | #define EX_USAGE 1
|
---|
82 |
|
---|
83 | #define STDIN_FILENO 0
|
---|
84 | #define STDOUT_FILENO 1
|
---|
85 | #define STDERR_FILENO 2
|
---|
86 |
|
---|
87 | #define F_OK 0
|
---|
88 | #define X_OK 1
|
---|
89 | #define W_OK 2
|
---|
90 | #define R_OK 4
|
---|
91 |
|
---|
92 | #define EFTYPE EINVAL
|
---|
93 |
|
---|
94 | #define _PATH_DEVNULL "/dev/null"
|
---|
95 |
|
---|
96 | #ifndef MAX
|
---|
97 | # define MAX(a,b) ((a) >= (b) ? (a) : (b))
|
---|
98 | #endif
|
---|
99 |
|
---|
100 | typedef int mode_t;
|
---|
101 | typedef unsigned short nlink_t;
|
---|
102 | #if 0 /* found in config.h */
|
---|
103 | typedef unsigned short uid_t;
|
---|
104 | typedef unsigned short gid_t;
|
---|
105 | #endif
|
---|
106 | typedef long ssize_t;
|
---|
107 | typedef unsigned long u_long;
|
---|
108 | typedef unsigned int u_int;
|
---|
109 | typedef unsigned short u_short;
|
---|
110 |
|
---|
111 | #ifndef timerisset
|
---|
112 | struct timeval
|
---|
113 | {
|
---|
114 | long tv_sec;
|
---|
115 | long tv_usec;
|
---|
116 | };
|
---|
117 | #endif
|
---|
118 |
|
---|
119 | struct iovec
|
---|
120 | {
|
---|
121 | char *iov_base;
|
---|
122 | size_t iov_len;
|
---|
123 | };
|
---|
124 |
|
---|
125 | typedef __int64 intmax_t;
|
---|
126 | #if 0 /* found in config.h */
|
---|
127 | typedef unsigned __int64 uintmax_t;
|
---|
128 | #endif
|
---|
129 |
|
---|
130 | #define chown(path, uid, gid) 0 /** @todo implement fchmod! */
|
---|
131 | char *dirname(char *path);
|
---|
132 | #define fsync(fd) 0
|
---|
133 | #define fchown(fd,uid,gid) 0
|
---|
134 | #define fchmod(fd, mode) 0 /** @todo implement fchmod! */
|
---|
135 | #define geteuid() 0
|
---|
136 | #define getegid() 0
|
---|
137 | #define lstat(path, s) stat(path, s)
|
---|
138 | int lchmod(const char *path, mode_t mode);
|
---|
139 | int msc_chmod(const char *path, mode_t mode);
|
---|
140 | #define chmod msc_chmod
|
---|
141 | #define lchown(path, uid, gid) chown(path, uid, gid)
|
---|
142 | #define lutimes(path, tvs) utimes(path, tvs)
|
---|
143 | int link(const char *pszDst, const char *pszLink);
|
---|
144 | int mkdir_msc(const char *path, mode_t mode);
|
---|
145 | #define mkdir(path, mode) mkdir_msc(path, mode)
|
---|
146 | #define mkfifo(path, mode) -1
|
---|
147 | #define mknod(path, mode, devno) -1
|
---|
148 | int mkstemp(char *temp);
|
---|
149 | #define readlink(link, buf, size) -1
|
---|
150 | #define reallocf(old, size) realloc(old, size)
|
---|
151 | int rmdir_msc(const char *path);
|
---|
152 | #define rmdir(path) rmdir_msc(path)
|
---|
153 | intmax_t strtoimax(const char *nptr, char **endptr, int base);
|
---|
154 | uintmax_t strtoumax(const char *nptr, char **endptr, int base);
|
---|
155 | #define strtoll(a,b,c) strtoimax(a,b,c)
|
---|
156 | #define strtoull(a,b,c) strtoumax(a,b,c)
|
---|
157 | int asprintf(char **strp, const char *fmt, ...);
|
---|
158 | int vasprintf(char **strp, const char *fmt, va_list ap);
|
---|
159 | #if _MSC_VER < 1400
|
---|
160 | int snprintf(char *buf, size_t size, const char *fmt, ...);
|
---|
161 | #else
|
---|
162 | #define snprintf _snprintf
|
---|
163 | #endif
|
---|
164 | int symlink(const char *pszDst, const char *pszLink);
|
---|
165 | int utimes(const char *pszPath, const struct timeval *paTimes);
|
---|
166 | int writev(int fd, const struct iovec *vector, int count);
|
---|
167 |
|
---|
168 | #endif /* _MSC_VER */
|
---|
169 | #endif
|
---|
170 |
|
---|