Skip to content

Latest commit

 

History

History
344 lines (270 loc) · 9.92 KB

dir.c

File metadata and controls

344 lines (270 loc) · 9.92 KB
 
Jul 7, 2001
Jul 7, 2001
1
2
3
4
5
6
7
8
/*
* Standard directory I/O support routines for PhysicsFS.
*
* Please see the file LICENSE in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
May 10, 2002
May 10, 2002
9
10
11
12
#if HAVE_CONFIG_H
# include <config.h>
#endif
Jul 7, 2001
Jul 7, 2001
13
14
#include <stdio.h>
#include <stdlib.h>
Jul 8, 2001
Jul 8, 2001
15
16
17
#include <string.h>
#include <errno.h>
#include <fcntl.h>
Jul 8, 2001
Jul 8, 2001
18
#include "physfs.h"
Jul 7, 2001
Jul 7, 2001
19
20
21
22
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Mar 24, 2002
Mar 24, 2002
23
24
25
26
static PHYSFS_sint64 DIR_read(FileHandle *handle, void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount);
static PHYSFS_sint64 DIR_write(FileHandle *handle, const void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount);
Sep 2, 2001
Sep 2, 2001
27
static int DIR_eof(FileHandle *handle);
Mar 24, 2002
Mar 24, 2002
28
29
30
static PHYSFS_sint64 DIR_tell(FileHandle *handle);
static int DIR_seek(FileHandle *handle, PHYSFS_uint64 offset);
static PHYSFS_sint64 DIR_fileLength(FileHandle *handle);
Sep 2, 2001
Sep 2, 2001
31
32
33
34
35
36
37
38
39
40
static int DIR_fileClose(FileHandle *handle);
static int DIR_isArchive(const char *filename, int forWriting);
static DirHandle *DIR_openArchive(const char *name, int forWriting);
static LinkedStringList *DIR_enumerateFiles(DirHandle *h,
const char *dname,
int omitSymLinks);
static int DIR_exists(DirHandle *h, const char *name);
static int DIR_isDirectory(DirHandle *h, const char *name);
static int DIR_isSymLink(DirHandle *h, const char *name);
static FileHandle *DIR_openRead(DirHandle *h, const char *filename);
May 25, 2002
May 25, 2002
41
static PHYSFS_sint64 DIR_getLastModTime(DirHandle *h, const char *name);
Sep 2, 2001
Sep 2, 2001
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
static FileHandle *DIR_openWrite(DirHandle *h, const char *filename);
static FileHandle *DIR_openAppend(DirHandle *h, const char *filename);
static int DIR_remove(DirHandle *h, const char *name);
static int DIR_mkdir(DirHandle *h, const char *name);
static void DIR_dirClose(DirHandle *h);
static const FileFunctions __PHYSFS_FileFunctions_DIR =
{
DIR_read, /* read() method */
NULL, /* write() method */
DIR_eof, /* eof() method */
DIR_tell, /* tell() method */
DIR_seek, /* seek() method */
DIR_fileLength, /* fileLength() method */
DIR_fileClose /* fileClose() method */
};
static const FileFunctions __PHYSFS_FileFunctions_DIRW =
{
NULL, /* read() method */
DIR_write, /* write() method */
DIR_eof, /* eof() method */
DIR_tell, /* tell() method */
DIR_seek, /* seek() method */
DIR_fileLength, /* fileLength() method */
DIR_fileClose /* fileClose() method */
};
const DirFunctions __PHYSFS_DirFunctions_DIR =
{
DIR_isArchive, /* isArchive() method */
DIR_openArchive, /* openArchive() method */
DIR_enumerateFiles, /* enumerateFiles() method */
DIR_exists, /* exists() method */
DIR_isDirectory, /* isDirectory() method */
DIR_isSymLink, /* isSymLink() method */
May 25, 2002
May 25, 2002
81
DIR_getLastModTime, /* getLastModTime() method */
Sep 2, 2001
Sep 2, 2001
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
DIR_openRead, /* openRead() method */
DIR_openWrite, /* openWrite() method */
DIR_openAppend, /* openAppend() method */
DIR_remove, /* remove() method */
DIR_mkdir, /* mkdir() method */
DIR_dirClose /* dirClose() method */
};
/* This doesn't get listed, since it's technically not an archive... */
#if 0
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_DIR =
{
"DIR",
"non-archive directory I/O",
Sep 14, 2001
Sep 14, 2001
97
"Ryan C. Gordon <icculus@clutteredmind.org>",
Sep 2, 2001
Sep 2, 2001
98
99
100
101
"http://www.icculus.org/physfs/",
};
#endif
Jul 8, 2001
Jul 8, 2001
102
Mar 24, 2002
Mar 24, 2002
103
104
static PHYSFS_sint64 DIR_read(FileHandle *handle, void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
Jul 8, 2001
Jul 8, 2001
105
{
Mar 25, 2002
Mar 25, 2002
106
107
108
PHYSFS_sint64 retval;
retval = __PHYSFS_platformRead(handle->opaque, buffer, objSize, objCount);
return(retval);
Jul 8, 2001
Jul 8, 2001
109
110
111
} /* DIR_read */
Mar 24, 2002
Mar 24, 2002
112
113
static PHYSFS_sint64 DIR_write(FileHandle *handle, const void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
Jul 8, 2001
Jul 8, 2001
114
{
Mar 25, 2002
Mar 25, 2002
115
116
117
PHYSFS_sint64 retval;
retval = __PHYSFS_platformWrite(handle->opaque, buffer, objSize, objCount);
return(retval);
Jul 8, 2001
Jul 8, 2001
118
119
120
121
122
} /* DIR_write */
static int DIR_eof(FileHandle *handle)
{
Mar 25, 2002
Mar 25, 2002
123
return(__PHYSFS_platformEOF(handle->opaque));
Jul 8, 2001
Jul 8, 2001
124
125
126
} /* DIR_eof */
Mar 24, 2002
Mar 24, 2002
127
static PHYSFS_sint64 DIR_tell(FileHandle *handle)
Jul 8, 2001
Jul 8, 2001
128
{
Mar 25, 2002
Mar 25, 2002
129
return(__PHYSFS_platformTell(handle->opaque));
Jul 8, 2001
Jul 8, 2001
130
131
132
} /* DIR_tell */
Mar 24, 2002
Mar 24, 2002
133
static int DIR_seek(FileHandle *handle, PHYSFS_uint64 offset)
Jul 8, 2001
Jul 8, 2001
134
{
Mar 25, 2002
Mar 25, 2002
135
return(__PHYSFS_platformSeek(handle->opaque, offset));
Jul 8, 2001
Jul 8, 2001
136
137
138
} /* DIR_seek */
Mar 24, 2002
Mar 24, 2002
139
static PHYSFS_sint64 DIR_fileLength(FileHandle *handle)
Jul 9, 2001
Jul 9, 2001
140
{
Mar 25, 2002
Mar 25, 2002
141
return(__PHYSFS_platformFileLength(handle->opaque));
Jul 9, 2001
Jul 9, 2001
142
143
144
} /* DIR_fileLength */
Jul 8, 2001
Jul 8, 2001
145
146
147
static int DIR_fileClose(FileHandle *handle)
{
/*
Mar 25, 2002
Mar 25, 2002
148
* we manually flush the buffer, since that's the place a close will
Jul 8, 2001
Jul 8, 2001
149
* most likely fail, but that will leave the file handle in an undefined
Mar 25, 2002
Mar 25, 2002
150
* state if it fails. Flush failures we can recover from.
Jul 8, 2001
Jul 8, 2001
151
*/
Mar 25, 2002
Mar 25, 2002
152
153
BAIL_IF_MACRO(!__PHYSFS_platformFlush(handle->opaque), NULL, 0);
BAIL_IF_MACRO(!__PHYSFS_platformClose(handle->opaque), NULL, 0);
Jul 8, 2001
Jul 8, 2001
154
155
156
157
158
159
160
161
162
163
164
165
166
167
free(handle);
return(1);
} /* DIR_fileClose */
static int DIR_isArchive(const char *filename, int forWriting)
{
/* directories ARE archives in this driver... */
return(__PHYSFS_platformIsDirectory(filename));
} /* DIR_isArchive */
static DirHandle *DIR_openArchive(const char *name, int forWriting)
{
Jul 8, 2001
Jul 8, 2001
168
const char *dirsep = PHYSFS_getDirSeparator();
Jul 8, 2001
Jul 8, 2001
169
DirHandle *retval = NULL;
Sep 2, 2001
Sep 2, 2001
170
171
size_t namelen = strlen(name);
size_t seplen = strlen(dirsep);
Jul 8, 2001
Jul 8, 2001
172
Jul 8, 2001
Jul 8, 2001
173
174
BAIL_IF_MACRO(!DIR_isArchive(name, forWriting),
ERR_UNSUPPORTED_ARCHIVE, NULL);
Jul 8, 2001
Jul 8, 2001
175
Oct 9, 2001
Oct 9, 2001
176
retval = (DirHandle *) malloc(sizeof (DirHandle));
Jul 8, 2001
Jul 8, 2001
177
178
179
180
181
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
retval->opaque = malloc(namelen + seplen + 1);
if (retval->opaque == NULL)
{
free(retval);
Oct 9, 2001
Oct 9, 2001
182
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
Jul 8, 2001
Jul 8, 2001
183
184
185
186
187
188
189
} /* if */
/* make sure there's a dir separator at the end of the string */
strcpy((char *) (retval->opaque), name);
if (strcmp((name + namelen) - seplen, dirsep) != 0)
strcat((char *) (retval->opaque), dirsep);
Oct 9, 2001
Oct 9, 2001
190
191
retval->funcs = &__PHYSFS_DirFunctions_DIR;
Jul 8, 2001
Jul 8, 2001
192
193
194
195
return(retval);
} /* DIR_openArchive */
Jul 16, 2001
Jul 16, 2001
196
197
198
static LinkedStringList *DIR_enumerateFiles(DirHandle *h,
const char *dname,
int omitSymLinks)
Jul 8, 2001
Jul 8, 2001
199
200
201
202
203
{
char *d = __PHYSFS_platformCvtToDependent((char *)(h->opaque),dname,NULL);
LinkedStringList *retval;
BAIL_IF_MACRO(d == NULL, NULL, NULL);
Jul 16, 2001
Jul 16, 2001
204
retval = __PHYSFS_platformEnumerateFiles(d, omitSymLinks);
Jul 8, 2001
Jul 8, 2001
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
free(d);
return(retval);
} /* DIR_enumerateFiles */
static int DIR_exists(DirHandle *h, const char *name)
{
char *f = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
int retval;
BAIL_IF_MACRO(f == NULL, NULL, 0);
retval = __PHYSFS_platformExists(f);
free(f);
return(retval);
} /* DIR_exists */
static int DIR_isDirectory(DirHandle *h, const char *name)
{
char *d = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
int retval;
BAIL_IF_MACRO(d == NULL, NULL, 0);
retval = __PHYSFS_platformIsDirectory(d);
free(d);
return(retval);
} /* DIR_isDirectory */
static int DIR_isSymLink(DirHandle *h, const char *name)
{
char *f = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
int retval;
May 21, 2002
May 21, 2002
239
BAIL_IF_MACRO(f == NULL, NULL, 0);
Jul 8, 2001
Jul 8, 2001
240
241
242
243
244
245
retval = __PHYSFS_platformIsSymLink(f);
free(f);
return(retval);
} /* DIR_isSymLink */
May 25, 2002
May 25, 2002
246
247
248
249
250
251
static PHYSFS_sint64 DIR_getLastModTime(DirHandle *h, const char *name)
{
char *d = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
PHYSFS_sint64 retval;
BAIL_IF_MACRO(d == NULL, NULL, 0);
May 25, 2002
May 25, 2002
252
retval = __PHYSFS_platformGetLastModTime(d);
May 25, 2002
May 25, 2002
253
254
255
256
257
free(d);
return(retval);
} /* DIR_getLastModTime */
Mar 25, 2002
Mar 25, 2002
258
259
260
static FileHandle *doOpen(DirHandle *h, const char *name,
void *(*openFunc)(const char *filename),
const FileFunctions *fileFuncs)
Jul 8, 2001
Jul 8, 2001
261
262
{
char *f = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
Mar 25, 2002
Mar 25, 2002
263
void *rc;
Jul 8, 2001
Jul 8, 2001
264
265
266
267
268
269
270
271
FileHandle *retval;
BAIL_IF_MACRO(f == NULL, NULL, NULL);
retval = (FileHandle *) malloc(sizeof (FileHandle));
if (!retval)
{
free(f);
Mar 25, 2002
Mar 25, 2002
272
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
Jul 8, 2001
Jul 8, 2001
273
274
} /* if */
Mar 25, 2002
Mar 25, 2002
275
rc = openFunc(f);
Jul 8, 2001
Jul 8, 2001
276
277
278
279
280
free(f);
if (!rc)
{
free(retval);
Mar 25, 2002
Mar 25, 2002
281
return(NULL);
Jul 8, 2001
Jul 8, 2001
282
283
284
285
} /* if */
retval->opaque = (void *) rc;
retval->dirHandle = h;
Mar 25, 2002
Mar 25, 2002
286
287
retval->funcs = fileFuncs;
Jul 8, 2001
Jul 8, 2001
288
289
290
291
292
293
return(retval);
} /* doOpen */
static FileHandle *DIR_openRead(DirHandle *h, const char *filename)
{
Mar 25, 2002
Mar 25, 2002
294
295
return(doOpen(h, filename, __PHYSFS_platformOpenRead,
&__PHYSFS_FileFunctions_DIR));
Jul 8, 2001
Jul 8, 2001
296
297
298
299
300
} /* DIR_openRead */
static FileHandle *DIR_openWrite(DirHandle *h, const char *filename)
{
Mar 25, 2002
Mar 25, 2002
301
302
return(doOpen(h, filename, __PHYSFS_platformOpenWrite,
&__PHYSFS_FileFunctions_DIRW));
Jul 8, 2001
Jul 8, 2001
303
304
305
306
307
} /* DIR_openWrite */
static FileHandle *DIR_openAppend(DirHandle *h, const char *filename)
{
Mar 25, 2002
Mar 25, 2002
308
309
return(doOpen(h, filename, __PHYSFS_platformOpenAppend,
&__PHYSFS_FileFunctions_DIRW));
Jul 8, 2001
Jul 8, 2001
310
311
312
313
314
315
316
317
318
} /* DIR_openAppend */
static int DIR_remove(DirHandle *h, const char *name)
{
char *f = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
int retval;
BAIL_IF_MACRO(f == NULL, NULL, 0);
Mar 25, 2002
Mar 25, 2002
319
retval = __PHYSFS_platformDelete(f);
Jul 8, 2001
Jul 8, 2001
320
321
322
323
324
325
326
327
328
329
330
free(f);
return(retval);
} /* DIR_remove */
static int DIR_mkdir(DirHandle *h, const char *name)
{
char *f = __PHYSFS_platformCvtToDependent((char *)(h->opaque), name, NULL);
int retval;
BAIL_IF_MACRO(f == NULL, NULL, 0);
Aug 23, 2001
Aug 23, 2001
331
retval = __PHYSFS_platformMkDir(f);
Jul 8, 2001
Jul 8, 2001
332
333
334
335
336
337
338
339
340
341
342
free(f);
return(retval);
} /* DIR_mkdir */
static void DIR_dirClose(DirHandle *h)
{
free(h->opaque);
free(h);
} /* DIR_dirClose */
Jul 7, 2001
Jul 7, 2001
343
/* end of dir.c ... */