author | Ryan C. Gordon <icculus@icculus.org> |
Tue, 28 Jan 2003 18:29:10 +0000 | |
changeset 534 | 2aeee045f27e |
parent 504 | 3420d82f9b01 |
child 558 | a62e8e26dfc9 |
permissions | -rw-r--r-- |
235 | 1 |
/* |
2 |
* Posix-esque support routines for PhysicsFS. |
|
3 |
* |
|
4 |
* Please see the file LICENSE in the source's root directory. |
|
5 |
* |
|
6 |
* This file written by Ryan C. Gordon. |
|
7 |
*/ |
|
8 |
||
9 |
#if HAVE_CONFIG_H |
|
10 |
# include <config.h> |
|
11 |
#endif |
|
12 |
||
310
f8bca4a93fd5
Patched to compile on Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
292
diff
changeset
|
13 |
#if (!defined WIN32) |
f8bca4a93fd5
Patched to compile on Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
292
diff
changeset
|
14 |
|
235 | 15 |
#if (defined __STRICT_ANSI__) |
16 |
#define __PHYSFS_DOING_STRICT_ANSI__ |
|
17 |
#endif |
|
18 |
||
19 |
/* |
|
20 |
* We cheat a little: I want the symlink version of stat() (lstat), and |
|
21 |
* GCC/Linux will not declare it if compiled with the -ansi flag. |
|
22 |
* If you are really lacking symlink support on your platform, |
|
23 |
* you should #define __PHYSFS_NO_SYMLINKS__ before compiling this |
|
24 |
* file. That will open a security hole, though, if you really DO have |
|
25 |
* symlinks on your platform; it renders PHYSFS_permitSymbolicLinks(0) |
|
26 |
* useless, since every symlink will be reported as a regular file/dir. |
|
27 |
*/ |
|
28 |
#if (defined __PHYSFS_DOING_STRICT_ANSI__) |
|
29 |
#undef __STRICT_ANSI__ |
|
30 |
#endif |
|
31 |
#include <stdio.h> |
|
32 |
#if (defined __PHYSFS_DOING_STRICT_ANSI__) |
|
33 |
#define __STRICT_ANSI__ |
|
34 |
#endif |
|
35 |
||
36 |
#include <stdlib.h> |
|
37 |
#include <string.h> |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
38 |
#include <unistd.h> |
235 | 39 |
#include <ctype.h> |
40 |
#include <sys/types.h> |
|
41 |
#include <sys/stat.h> |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
42 |
#include <pwd.h> |
235 | 43 |
#include <dirent.h> |
44 |
#include <errno.h> |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
45 |
#include <fcntl.h> |
235 | 46 |
|
259
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
47 |
#ifdef PHYSFS_HAVE_LLSEEK |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
48 |
#include <linux/unistd.h> |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
49 |
#endif |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
50 |
|
235 | 51 |
#define __PHYSICSFS_INTERNAL__ |
52 |
#include "physfs_internal.h" |
|
53 |
||
54 |
||
55 |
char *__PHYSFS_platformCopyEnvironmentVariable(const char *varname) |
|
56 |
{ |
|
57 |
const char *envr = getenv(varname); |
|
58 |
char *retval = NULL; |
|
59 |
||
60 |
if (envr != NULL) |
|
61 |
{ |
|
249
fed886543e40
Added a bunch of explicit casts when using malloc().
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
62 |
retval = (char *) malloc(strlen(envr) + 1); |
235 | 63 |
if (retval != NULL) |
64 |
strcpy(retval, envr); |
|
65 |
} /* if */ |
|
66 |
||
67 |
return(retval); |
|
68 |
} /* __PHYSFS_platformCopyEnvironmentVariable */ |
|
69 |
||
70 |
||
71 |
static char *getUserNameByUID(void) |
|
72 |
{ |
|
73 |
uid_t uid = getuid(); |
|
74 |
struct passwd *pw; |
|
75 |
char *retval = NULL; |
|
76 |
||
77 |
pw = getpwuid(uid); |
|
78 |
if ((pw != NULL) && (pw->pw_name != NULL)) |
|
79 |
{ |
|
249
fed886543e40
Added a bunch of explicit casts when using malloc().
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
80 |
retval = (char *) malloc(strlen(pw->pw_name) + 1); |
235 | 81 |
if (retval != NULL) |
82 |
strcpy(retval, pw->pw_name); |
|
83 |
} /* if */ |
|
84 |
||
85 |
return(retval); |
|
86 |
} /* getUserNameByUID */ |
|
87 |
||
88 |
||
89 |
static char *getUserDirByUID(void) |
|
90 |
{ |
|
91 |
uid_t uid = getuid(); |
|
92 |
struct passwd *pw; |
|
93 |
char *retval = NULL; |
|
94 |
||
95 |
pw = getpwuid(uid); |
|
96 |
if ((pw != NULL) && (pw->pw_dir != NULL)) |
|
97 |
{ |
|
249
fed886543e40
Added a bunch of explicit casts when using malloc().
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
98 |
retval = (char *) malloc(strlen(pw->pw_dir) + 1); |
235 | 99 |
if (retval != NULL) |
100 |
strcpy(retval, pw->pw_dir); |
|
101 |
} /* if */ |
|
102 |
||
103 |
return(retval); |
|
104 |
} /* getUserDirByUID */ |
|
105 |
||
106 |
||
107 |
char *__PHYSFS_platformGetUserName(void) |
|
108 |
{ |
|
109 |
char *retval = getUserNameByUID(); |
|
110 |
if (retval == NULL) |
|
111 |
retval = __PHYSFS_platformCopyEnvironmentVariable("USER"); |
|
112 |
return(retval); |
|
113 |
} /* __PHYSFS_platformGetUserName */ |
|
114 |
||
115 |
||
116 |
char *__PHYSFS_platformGetUserDir(void) |
|
117 |
{ |
|
118 |
char *retval = __PHYSFS_platformCopyEnvironmentVariable("HOME"); |
|
119 |
if (retval == NULL) |
|
120 |
retval = getUserDirByUID(); |
|
121 |
return(retval); |
|
122 |
} /* __PHYSFS_platformGetUserDir */ |
|
123 |
||
124 |
||
125 |
/* -ansi and -pedantic flags prevent use of strcasecmp() on Linux. */ |
|
126 |
int __PHYSFS_platformStricmp(const char *x, const char *y) |
|
127 |
{ |
|
128 |
int ux, uy; |
|
129 |
||
130 |
do |
|
131 |
{ |
|
132 |
ux = toupper((int) *x); |
|
133 |
uy = toupper((int) *y); |
|
134 |
if (ux > uy) |
|
135 |
return(1); |
|
136 |
else if (ux < uy) |
|
137 |
return(-1); |
|
138 |
x++; |
|
139 |
y++; |
|
140 |
} while ((ux) && (uy)); |
|
141 |
||
142 |
return(0); |
|
143 |
} /* __PHYSFS_platformStricmp */ |
|
144 |
||
145 |
||
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
146 |
#if (defined __PHYSFS_NO_SYMLINKS__) |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
147 |
#define doStat stat |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
148 |
#else |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
149 |
#define doStat lstat |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
150 |
#endif |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
151 |
|
235 | 152 |
int __PHYSFS_platformExists(const char *fname) |
153 |
{ |
|
154 |
struct stat statbuf; |
|
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
155 |
BAIL_IF_MACRO(doStat(fname, &statbuf) == -1, strerror(errno), 0); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
156 |
return(1); |
235 | 157 |
} /* __PHYSFS_platformExists */ |
158 |
||
159 |
||
160 |
int __PHYSFS_platformIsSymLink(const char *fname) |
|
161 |
{ |
|
162 |
#if (defined __PHYSFS_NO_SYMLINKS__) |
|
163 |
return(0); |
|
164 |
#else |
|
165 |
struct stat statbuf; |
|
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
166 |
BAIL_IF_MACRO(lstat(fname, &statbuf) == -1, strerror(errno), 0); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
167 |
return( (S_ISLNK(statbuf.st_mode)) ? 1 : 0 ); |
235 | 168 |
#endif |
169 |
} /* __PHYSFS_platformIsSymlink */ |
|
170 |
||
171 |
||
172 |
int __PHYSFS_platformIsDirectory(const char *fname) |
|
173 |
{ |
|
174 |
struct stat statbuf; |
|
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
175 |
BAIL_IF_MACRO(stat(fname, &statbuf) == -1, strerror(errno), 0); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
176 |
return( (S_ISDIR(statbuf.st_mode)) ? 1 : 0 ); |
235 | 177 |
} /* __PHYSFS_platformIsDirectory */ |
178 |
||
179 |
||
180 |
char *__PHYSFS_platformCvtToDependent(const char *prepend, |
|
181 |
const char *dirName, |
|
182 |
const char *append) |
|
183 |
{ |
|
184 |
int len = ((prepend) ? strlen(prepend) : 0) + |
|
185 |
((append) ? strlen(append) : 0) + |
|
186 |
strlen(dirName) + 1; |
|
249
fed886543e40
Added a bunch of explicit casts when using malloc().
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
187 |
char *retval = (char *) malloc(len); |
235 | 188 |
|
189 |
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL); |
|
190 |
||
191 |
/* platform-independent notation is Unix-style already. :) */ |
|
192 |
||
193 |
if (prepend) |
|
194 |
strcpy(retval, prepend); |
|
195 |
else |
|
196 |
retval[0] = '\0'; |
|
197 |
||
198 |
strcat(retval, dirName); |
|
199 |
||
200 |
if (append) |
|
201 |
strcat(retval, append); |
|
202 |
||
203 |
return(retval); |
|
204 |
} /* __PHYSFS_platformCvtToDependent */ |
|
205 |
||
206 |
||
207 |
||
208 |
LinkedStringList *__PHYSFS_platformEnumerateFiles(const char *dirname, |
|
209 |
int omitSymLinks) |
|
210 |
{ |
|
362
ac8c846a0a66
Changed enumeration code to use __PHYSFS_addToLinkedStringList().
Ryan C. Gordon <icculus@icculus.org>
parents:
310
diff
changeset
|
211 |
LinkedStringList *retval = NULL, *p = NULL; |
235 | 212 |
DIR *dir; |
213 |
struct dirent *ent; |
|
214 |
int bufsize = 0; |
|
215 |
char *buf = NULL; |
|
216 |
int dlen = 0; |
|
217 |
||
218 |
if (omitSymLinks) |
|
219 |
{ |
|
220 |
dlen = strlen(dirname); |
|
221 |
bufsize = dlen + 256; |
|
249
fed886543e40
Added a bunch of explicit casts when using malloc().
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
222 |
buf = (char *) malloc(bufsize); |
235 | 223 |
BAIL_IF_MACRO(buf == NULL, ERR_OUT_OF_MEMORY, NULL); |
224 |
strcpy(buf, dirname); |
|
225 |
if (buf[dlen - 1] != '/') |
|
226 |
{ |
|
227 |
buf[dlen++] = '/'; |
|
228 |
buf[dlen] = '\0'; |
|
229 |
} /* if */ |
|
230 |
} /* if */ |
|
231 |
||
232 |
errno = 0; |
|
233 |
dir = opendir(dirname); |
|
234 |
if (dir == NULL) |
|
235 |
{ |
|
236 |
if (buf != NULL) |
|
237 |
free(buf); |
|
238 |
BAIL_IF_MACRO(1, strerror(errno), NULL); |
|
239 |
} /* if */ |
|
240 |
||
362
ac8c846a0a66
Changed enumeration code to use __PHYSFS_addToLinkedStringList().
Ryan C. Gordon <icculus@icculus.org>
parents:
310
diff
changeset
|
241 |
while ((ent = readdir(dir)) != NULL) |
235 | 242 |
{ |
243 |
if (strcmp(ent->d_name, ".") == 0) |
|
244 |
continue; |
|
245 |
||
246 |
if (strcmp(ent->d_name, "..") == 0) |
|
247 |
continue; |
|
248 |
||
249 |
if (omitSymLinks) |
|
250 |
{ |
|
251 |
char *p; |
|
252 |
int len = strlen(ent->d_name) + dlen + 1; |
|
253 |
if (len > bufsize) |
|
254 |
{ |
|
255 |
p = realloc(buf, len); |
|
256 |
if (p == NULL) |
|
257 |
continue; |
|
258 |
buf = p; |
|
259 |
bufsize = len; |
|
260 |
} /* if */ |
|
261 |
||
262 |
strcpy(buf + dlen, ent->d_name); |
|
263 |
if (__PHYSFS_platformIsSymLink(buf)) |
|
264 |
continue; |
|
265 |
} /* if */ |
|
266 |
||
362
ac8c846a0a66
Changed enumeration code to use __PHYSFS_addToLinkedStringList().
Ryan C. Gordon <icculus@icculus.org>
parents:
310
diff
changeset
|
267 |
retval = __PHYSFS_addToLinkedStringList(retval, &p, ent->d_name, -1); |
235 | 268 |
} /* while */ |
269 |
||
270 |
if (buf != NULL) |
|
271 |
free(buf); |
|
272 |
||
273 |
closedir(dir); |
|
274 |
return(retval); |
|
275 |
} /* __PHYSFS_platformEnumerateFiles */ |
|
276 |
||
277 |
||
278 |
char *__PHYSFS_platformCurrentDir(void) |
|
279 |
{ |
|
280 |
int allocSize = 0; |
|
281 |
char *retval = NULL; |
|
282 |
char *ptr; |
|
283 |
||
284 |
do |
|
285 |
{ |
|
286 |
allocSize += 100; |
|
287 |
ptr = (char *) realloc(retval, allocSize); |
|
288 |
if (ptr == NULL) |
|
289 |
{ |
|
290 |
if (retval != NULL) |
|
291 |
free(retval); |
|
292 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
|
293 |
} /* if */ |
|
294 |
||
295 |
retval = ptr; |
|
296 |
ptr = getcwd(retval, allocSize); |
|
297 |
} while (ptr == NULL && errno == ERANGE); |
|
298 |
||
299 |
if (ptr == NULL && errno) |
|
300 |
{ |
|
301 |
/* |
|
302 |
* getcwd() failed for some reason, for example current |
|
303 |
* directory not existing. |
|
304 |
*/ |
|
305 |
if (retval != NULL) |
|
306 |
free(retval); |
|
307 |
BAIL_MACRO(ERR_NO_SUCH_FILE, NULL); |
|
308 |
} /* if */ |
|
309 |
||
310 |
return(retval); |
|
311 |
} /* __PHYSFS_platformCurrentDir */ |
|
312 |
||
313 |
||
314 |
||
315 |
int __PHYSFS_platformMkDir(const char *path) |
|
316 |
{ |
|
317 |
int rc; |
|
318 |
errno = 0; |
|
319 |
rc = mkdir(path, S_IRWXU); |
|
320 |
BAIL_IF_MACRO(rc == -1, strerror(errno), 0); |
|
321 |
return(1); |
|
322 |
} /* __PHYSFS_platformMkDir */ |
|
323 |
||
324 |
||
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
325 |
static void *doOpen(const char *filename, int mode) |
235 | 326 |
{ |
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
327 |
int fd; |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
328 |
int *retval; |
235 | 329 |
errno = 0; |
330 |
||
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
331 |
fd = open(filename, mode, S_IRUSR | S_IWUSR); |
292
99bf6ef5639a
Patched a bug where doOpen() reported success when the file couldn't be
Ryan C. Gordon <icculus@icculus.org>
parents:
259
diff
changeset
|
332 |
BAIL_IF_MACRO(fd < 0, strerror(errno), NULL); |
235 | 333 |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
334 |
retval = (int *) malloc(sizeof (int)); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
335 |
if (retval == NULL) |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
336 |
{ |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
337 |
close(fd); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
338 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
339 |
} /* if */ |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
340 |
|
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
341 |
*retval = fd; |
235 | 342 |
return((void *) retval); |
343 |
} /* doOpen */ |
|
344 |
||
345 |
||
346 |
void *__PHYSFS_platformOpenRead(const char *filename) |
|
347 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
348 |
return(doOpen(filename, O_RDONLY)); |
235 | 349 |
} /* __PHYSFS_platformOpenRead */ |
350 |
||
351 |
||
352 |
void *__PHYSFS_platformOpenWrite(const char *filename) |
|
353 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
354 |
return(doOpen(filename, O_WRONLY | O_CREAT | O_TRUNC)); |
235 | 355 |
} /* __PHYSFS_platformOpenWrite */ |
356 |
||
357 |
||
358 |
void *__PHYSFS_platformOpenAppend(const char *filename) |
|
359 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
360 |
return(doOpen(filename, O_WRONLY | O_CREAT | O_APPEND)); |
235 | 361 |
} /* __PHYSFS_platformOpenAppend */ |
362 |
||
363 |
||
364 |
PHYSFS_sint64 __PHYSFS_platformRead(void *opaque, void *buffer, |
|
365 |
PHYSFS_uint32 size, PHYSFS_uint32 count) |
|
366 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
367 |
int fd = *((int *) opaque); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
368 |
int max = size * count; |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
369 |
int rc = read(fd, buffer, max); |
235 | 370 |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
371 |
BAIL_IF_MACRO(rc == -1, strerror(errno), rc); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
372 |
assert(rc <= max); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
373 |
|
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
374 |
if ((rc < max) && (size > 1)) |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
375 |
lseek(fd, -(rc % size), SEEK_CUR); /* rollback to object boundary. */ |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
376 |
|
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
377 |
return(rc / size); |
235 | 378 |
} /* __PHYSFS_platformRead */ |
379 |
||
380 |
||
381 |
PHYSFS_sint64 __PHYSFS_platformWrite(void *opaque, const void *buffer, |
|
382 |
PHYSFS_uint32 size, PHYSFS_uint32 count) |
|
383 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
384 |
int fd = *((int *) opaque); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
385 |
int max = size * count; |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
386 |
int rc = write(fd, (void *) buffer, max); |
235 | 387 |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
388 |
BAIL_IF_MACRO(rc == -1, strerror(errno), rc); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
389 |
assert(rc <= max); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
390 |
|
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
391 |
if ((rc < max) && (size > 1)) |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
392 |
lseek(fd, -(rc % size), SEEK_CUR); /* rollback to object boundary. */ |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
393 |
|
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
394 |
return(rc / size); |
235 | 395 |
} /* __PHYSFS_platformWrite */ |
396 |
||
397 |
||
398 |
int __PHYSFS_platformSeek(void *opaque, PHYSFS_uint64 pos) |
|
399 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
400 |
int fd = *((int *) opaque); |
235 | 401 |
|
259
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
402 |
#ifdef PHYSFS_HAVE_LLSEEK |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
403 |
unsigned long offset_high = ((pos >> 32) & 0xFFFFFFFF); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
404 |
unsigned long offset_low = (pos & 0xFFFFFFFF); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
405 |
loff_t retoffset; |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
406 |
int rc = llseek(fd, offset_high, offset_low, &retoffset, SEEK_SET); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
407 |
BAIL_IF_MACRO(rc == -1, strerror(errno), 0); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
408 |
#else |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
409 |
BAIL_IF_MACRO(lseek(fd, (int) pos, SEEK_SET) == -1, strerror(errno), 0); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
410 |
#endif |
235 | 411 |
|
412 |
return(1); |
|
413 |
} /* __PHYSFS_platformSeek */ |
|
414 |
||
415 |
||
416 |
PHYSFS_sint64 __PHYSFS_platformTell(void *opaque) |
|
417 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
418 |
int fd = *((int *) opaque); |
259
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
419 |
PHYSFS_sint64 retval; |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
420 |
|
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
421 |
#ifdef PHYSFS_HAVE_LLSEEK |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
422 |
loff_t retoffset; |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
423 |
int rc = llseek(fd, 0, &retoffset, SEEK_CUR); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
424 |
BAIL_IF_MACRO(rc == -1, strerror(errno), -1); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
425 |
retval = (PHYSFS_sint64) retoffset; |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
426 |
#else |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
427 |
retval = (PHYSFS_sint64) lseek(fd, 0, SEEK_CUR); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
428 |
BAIL_IF_MACRO(retval == -1, strerror(errno), -1); |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
429 |
#endif |
bd65a0d74e9a
64-bit _llseek() support for the future.
Ryan C. Gordon <icculus@icculus.org>
parents:
255
diff
changeset
|
430 |
|
235 | 431 |
return(retval); |
432 |
} /* __PHYSFS_platformTell */ |
|
433 |
||
434 |
||
435 |
PHYSFS_sint64 __PHYSFS_platformFileLength(void *opaque) |
|
436 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
437 |
int fd = *((int *) opaque); |
235 | 438 |
struct stat statbuf; |
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
439 |
BAIL_IF_MACRO(fstat(fd, &statbuf) == -1, strerror(errno), -1); |
235 | 440 |
return((PHYSFS_sint64) statbuf.st_size); |
441 |
} /* __PHYSFS_platformFileLength */ |
|
442 |
||
443 |
||
444 |
int __PHYSFS_platformEOF(void *opaque) |
|
445 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
446 |
PHYSFS_sint64 pos = __PHYSFS_platformTell(opaque); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
447 |
PHYSFS_sint64 len = __PHYSFS_platformFileLength(opaque); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
448 |
return(pos >= len); |
235 | 449 |
} /* __PHYSFS_platformEOF */ |
450 |
||
451 |
||
452 |
int __PHYSFS_platformFlush(void *opaque) |
|
453 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
454 |
int fd = *((int *) opaque); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
455 |
BAIL_IF_MACRO(fsync(fd) == -1, strerror(errno), 0); |
235 | 456 |
return(1); |
457 |
} /* __PHYSFS_platformFlush */ |
|
458 |
||
459 |
||
460 |
int __PHYSFS_platformClose(void *opaque) |
|
461 |
{ |
|
251
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
462 |
int fd = *((int *) opaque); |
0f4615263e32
Actual POSIX calls to replace ANSI stdio routines.
Ryan C. Gordon <icculus@icculus.org>
parents:
249
diff
changeset
|
463 |
BAIL_IF_MACRO(close(fd) == -1, strerror(errno), 0); |
429
72ca216c756a
Patched memory leaks (thanks, Valgrind!)
Ryan C. Gordon <icculus@icculus.org>
parents:
362
diff
changeset
|
464 |
free(opaque); |
235 | 465 |
return(1); |
466 |
} /* __PHYSFS_platformClose */ |
|
467 |
||
468 |
||
469 |
int __PHYSFS_platformDelete(const char *path) |
|
470 |
{ |
|
471 |
BAIL_IF_MACRO(remove(path) == -1, strerror(errno), 0); |
|
472 |
return(1); |
|
473 |
} /* __PHYSFS_platformDelete */ |
|
474 |
||
240
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
475 |
|
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
476 |
PHYSFS_sint64 __PHYSFS_platformGetLastModTime(const char *fname) |
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
477 |
{ |
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
478 |
struct stat statbuf; |
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
479 |
BAIL_IF_MACRO(stat(fname, &statbuf) < 0, strerror(errno), -1); |
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
480 |
return statbuf.st_mtime; |
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
481 |
} /* __PHYSFS_platformGetLastModTime */ |
052041af9001
Added PHYSFS_getLastModTime() API. (Thanks, John Hall!)
Ryan C. Gordon <icculus@icculus.org>
parents:
235
diff
changeset
|
482 |
|
310
f8bca4a93fd5
Patched to compile on Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
292
diff
changeset
|
483 |
#endif /* !defined WIN32 */ |
f8bca4a93fd5
Patched to compile on Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
292
diff
changeset
|
484 |
|
235 | 485 |
/* end of posix.c ... */ |
486 |