author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 23 Mar 2012 00:55:56 -0400 | |
changeset 1259 | b01150541cfd |
parent 1248 | 632895970ed6 |
child 1270 | f8d3f58561b1 |
permissions | -rw-r--r-- |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* Standard directory I/O support routines for PhysicsFS. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* |
809
116b8fe30371
Renamed LICENSE to LICENSE.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
808
diff
changeset
|
4 |
* Please see the file LICENSE.txt in the source's root directory. |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
6 |
* This file written by Ryan C. Gordon. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
7 |
*/ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
|
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
#define __PHYSICSFS_INTERNAL__ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
10 |
#include "physfs_internal.h" |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
11 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
12 |
/* There's no PHYSFS_Io interface here. Use __PHYSFS_createNativeIo(). */ |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
13 |
|
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
14 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
15 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
16 |
static char *cvtToDependent(const char *prepend, const char *path, char *buf) |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
17 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
18 |
BAIL_IF_MACRO(buf == NULL, PHYSFS_ERR_OUT_OF_MEMORY, NULL); |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
19 |
sprintf(buf, "%s%s", prepend ? prepend : "", path); |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
20 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
21 |
if (__PHYSFS_platformDirSeparator != '/') |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
22 |
{ |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
23 |
char *p; |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
24 |
for (p = strchr(buf, '/'); p != NULL; p = strchr(p + 1, '/')) |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
25 |
*p = __PHYSFS_platformDirSeparator; |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
26 |
} /* if */ |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
27 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
28 |
return buf; |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
29 |
} /* cvtToDependent */ |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
30 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
31 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
32 |
#define CVT_TO_DEPENDENT(buf, pre, dir) { \ |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
33 |
const size_t len = ((pre) ? strlen((char *) pre) : 0) + strlen(dir) + 1; \ |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
34 |
buf = cvtToDependent((char*)pre,dir,(char*)__PHYSFS_smallAlloc(len)); \ |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
35 |
} |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
36 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
37 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
38 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
39 |
static void *DIR_openArchive(PHYSFS_Io *io, const char *name, int forWriting) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
40 |
{ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
41 |
PHYSFS_Stat st; |
1225
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
42 |
const char dirsep = __PHYSFS_platformDirSeparator; |
648
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
504
diff
changeset
|
43 |
char *retval = NULL; |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
44 |
const size_t namelen = strlen(name); |
1225
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
45 |
const size_t seplen = 1; |
1125
bcff76dbd9fd
Removed isDirectory, isSymLink and exists methods from internal code.
Ryan C. Gordon <icculus@icculus.org>
parents:
1118
diff
changeset
|
46 |
int exists = 0; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
47 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
48 |
assert(io == NULL); /* shouldn't create an Io for these. */ |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
49 |
BAIL_IF_MACRO(!__PHYSFS_platformStat(name, &exists, &st), ERRPASS, NULL); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
50 |
if (st.filetype != PHYSFS_FILETYPE_DIRECTORY) |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
51 |
BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
52 |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
53 |
retval = allocator.Malloc(namelen + seplen + 1); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
54 |
BAIL_IF_MACRO(retval == NULL, PHYSFS_ERR_OUT_OF_MEMORY, NULL); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
55 |
|
1225
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
56 |
strcpy(retval, name); |
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
57 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
58 |
/* make sure there's a dir separator at the end of the string */ |
1225
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
59 |
if (retval[namelen - 1] != dirsep) |
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
60 |
{ |
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
61 |
retval[namelen] = dirsep; |
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
62 |
retval[namelen + 1] = '\0'; |
671d4ea47c13
Make __PHYSFS_platformDirSeparator into a single char.
Ryan C. Gordon <icculus@icculus.org>
parents:
1219
diff
changeset
|
63 |
} /* if */ |
110
203bd958330d
The DirHandle->funcs pointer wasn't getting set?!
Ryan C. Gordon <icculus@icculus.org>
parents:
106
diff
changeset
|
64 |
|
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
65 |
return retval; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
66 |
} /* DIR_openArchive */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
67 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
68 |
|
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
69 |
static void DIR_enumerateFiles(dvoid *opaque, const char *dname, |
754
e7cd7411eadf
API BREAKAGE: Changed PHYSFS_enumerateFilesCallback() to pass the originally
Ryan C. Gordon <icculus@icculus.org>
parents:
691
diff
changeset
|
70 |
int omitSymLinks, PHYSFS_EnumFilesCallback cb, |
e7cd7411eadf
API BREAKAGE: Changed PHYSFS_enumerateFilesCallback() to pass the originally
Ryan C. Gordon <icculus@icculus.org>
parents:
691
diff
changeset
|
71 |
const char *origdir, void *callbackdata) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
72 |
{ |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
73 |
char *d; |
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
74 |
|
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
75 |
CVT_TO_DEPENDENT(d, opaque, dname); |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
76 |
if (d != NULL) |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
77 |
{ |
754
e7cd7411eadf
API BREAKAGE: Changed PHYSFS_enumerateFilesCallback() to pass the originally
Ryan C. Gordon <icculus@icculus.org>
parents:
691
diff
changeset
|
78 |
__PHYSFS_platformEnumerateFiles(d, omitSymLinks, cb, |
e7cd7411eadf
API BREAKAGE: Changed PHYSFS_enumerateFilesCallback() to pass the originally
Ryan C. Gordon <icculus@icculus.org>
parents:
691
diff
changeset
|
79 |
origdir, callbackdata); |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
80 |
__PHYSFS_smallFree(d); |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
650
diff
changeset
|
81 |
} /* if */ |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
82 |
} /* DIR_enumerateFiles */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
83 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
84 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
85 |
static PHYSFS_Io *doOpen(dvoid *opaque, const char *name, |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
86 |
const int mode, int *fileExists) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
87 |
{ |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
88 |
char *f; |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
89 |
PHYSFS_Io *io = NULL; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
90 |
int existtmp = 0; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
91 |
|
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
92 |
CVT_TO_DEPENDENT(f, opaque, name); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
93 |
BAIL_IF_MACRO(!f, ERRPASS, NULL); |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
94 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
95 |
if (fileExists == NULL) |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
96 |
fileExists = &existtmp; |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
97 |
|
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
98 |
io = __PHYSFS_createNativeIo(f, mode); |
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
99 |
if (io == NULL) |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
427
diff
changeset
|
100 |
{ |
1248
632895970ed6
Cleaned up some FIXMEs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1241
diff
changeset
|
101 |
const PHYSFS_ErrorCode err = PHYSFS_getLastErrorCode(); |
632895970ed6
Cleaned up some FIXMEs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1241
diff
changeset
|
102 |
PHYSFS_Stat statbuf; |
1125
bcff76dbd9fd
Removed isDirectory, isSymLink and exists methods from internal code.
Ryan C. Gordon <icculus@icculus.org>
parents:
1118
diff
changeset
|
103 |
__PHYSFS_platformStat(f, fileExists, &statbuf); |
1248
632895970ed6
Cleaned up some FIXMEs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1241
diff
changeset
|
104 |
__PHYSFS_setError(err); |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
427
diff
changeset
|
105 |
} /* if */ |
1219
f479c6b1e7f7
Fixed dereference of free()'d memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1199
diff
changeset
|
106 |
else |
f479c6b1e7f7
Fixed dereference of free()'d memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1199
diff
changeset
|
107 |
{ |
f479c6b1e7f7
Fixed dereference of free()'d memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1199
diff
changeset
|
108 |
*fileExists = 1; |
f479c6b1e7f7
Fixed dereference of free()'d memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1199
diff
changeset
|
109 |
} /* else */ |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
427
diff
changeset
|
110 |
|
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
111 |
__PHYSFS_smallFree(f); |
1219
f479c6b1e7f7
Fixed dereference of free()'d memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1199
diff
changeset
|
112 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
113 |
return io; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
114 |
} /* doOpen */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
115 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
116 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
117 |
static PHYSFS_Io *DIR_openRead(dvoid *opaque, const char *fnm, int *exist) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
118 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
119 |
return doOpen(opaque, fnm, 'r', exist); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
120 |
} /* DIR_openRead */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
121 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
122 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
123 |
static PHYSFS_Io *DIR_openWrite(dvoid *opaque, const char *filename) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
124 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
125 |
return doOpen(opaque, filename, 'w', NULL); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
126 |
} /* DIR_openWrite */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
127 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
128 |
|
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
129 |
static PHYSFS_Io *DIR_openAppend(dvoid *opaque, const char *filename) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
130 |
{ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
131 |
return doOpen(opaque, filename, 'a', NULL); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
132 |
} /* DIR_openAppend */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
133 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
134 |
|
650
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
135 |
static int DIR_remove(dvoid *opaque, const char *name) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
136 |
{ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
137 |
int retval; |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
138 |
char *f; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
139 |
|
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
140 |
CVT_TO_DEPENDENT(f, opaque, name); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
141 |
BAIL_IF_MACRO(!f, ERRPASS, 0); |
137
66bddb94b6e0
Abstracted file deletion, so we don't rely on C library for it anymore.
Ryan C. Gordon <icculus@icculus.org>
parents:
135
diff
changeset
|
142 |
retval = __PHYSFS_platformDelete(f); |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
143 |
__PHYSFS_smallFree(f); |
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
144 |
return retval; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
145 |
} /* DIR_remove */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
146 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
147 |
|
650
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
148 |
static int DIR_mkdir(dvoid *opaque, const char *name) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
149 |
{ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
150 |
int retval; |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
151 |
char *f; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
152 |
|
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
153 |
CVT_TO_DEPENDENT(f, opaque, name); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
154 |
BAIL_IF_MACRO(!f, ERRPASS, 0); |
69
546a95cc5591
Updates, corrections and enhancements to get this ported to win32.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
155 |
retval = __PHYSFS_platformMkDir(f); |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
156 |
__PHYSFS_smallFree(f); |
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
157 |
return retval; |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
158 |
} /* DIR_mkdir */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
159 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
160 |
|
650
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
161 |
static void DIR_dirClose(dvoid *opaque) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
162 |
{ |
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
163 |
allocator.Free(opaque); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
164 |
} /* DIR_dirClose */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
165 |
|
658
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
166 |
|
1108
b63e39d5be04
Fixed details of PHYSFS_Archiver's stat method.
Ryan C. Gordon <icculus@icculus.org>
parents:
1098
diff
changeset
|
167 |
static int DIR_stat(dvoid *opaque, const char *name, int *exists, |
1054
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
168 |
PHYSFS_Stat *stat) |
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
169 |
{ |
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
170 |
int retval = 0; |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
171 |
char *d; |
1054
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
172 |
|
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
173 |
CVT_TO_DEPENDENT(d, opaque, name); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1226
diff
changeset
|
174 |
BAIL_IF_MACRO(!d, ERRPASS, 0); |
1054
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
175 |
retval = __PHYSFS_platformStat(d, exists, stat); |
1226
3ea51c799aba
Removed __PHYSFS_platformCvtToDependent().
Ryan C. Gordon <icculus@icculus.org>
parents:
1225
diff
changeset
|
176 |
__PHYSFS_smallFree(d); |
1054
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
177 |
return retval; |
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
178 |
} /* DIR_stat */ |
57f4af811ffb
THIS is Christoph's PHYSFS_stat() work.
Ryan C. Gordon <icculus@icculus.org>
parents:
1053
diff
changeset
|
179 |
|
658
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
180 |
|
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
181 |
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_DIR = |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
182 |
{ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
183 |
"", |
1259
b01150541cfd
Removed archive description macros, moved those strings inline.
Ryan C. Gordon <icculus@icculus.org>
parents:
1248
diff
changeset
|
184 |
"Non-archive, direct filesystem I/O", |
767
db29bf06d171
Changed my email address.
Ryan C. Gordon <icculus@icculus.org>
parents:
754
diff
changeset
|
185 |
"Ryan C. Gordon <icculus@icculus.org>", |
658
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
186 |
"http://icculus.org/physfs/", |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
187 |
}; |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
188 |
|
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
189 |
|
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
190 |
const PHYSFS_Archiver __PHYSFS_Archiver_DIR = |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
191 |
{ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
192 |
&__PHYSFS_ArchiveInfo_DIR, |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
193 |
DIR_openArchive, /* openArchive() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
194 |
DIR_enumerateFiles, /* enumerateFiles() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
195 |
DIR_openRead, /* openRead() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
196 |
DIR_openWrite, /* openWrite() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
197 |
DIR_openAppend, /* openAppend() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
198 |
DIR_remove, /* remove() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
199 |
DIR_mkdir, /* mkdir() method */ |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
200 |
DIR_dirClose, /* dirClose() method */ |
1118
2e09fc635fdd
Abstracted file i/o into PHYSFS_Io interface.
Ryan C. Gordon <icculus@icculus.org>
parents:
1113
diff
changeset
|
201 |
DIR_stat /* stat() method */ |
658
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
202 |
}; |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
203 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
204 |
/* end of dir.c ... */ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
205 |