forked from TheGLander/tworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileio.c
505 lines (453 loc) · 10.8 KB
/
fileio.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
/* fileio.c: Simple file/directory access functions with error-handling.
*
* Copyright (C) 2001-2017 by Brian Raiter and Eric Schmidt, under the
* GNU General Public License. No warranty. See COPYING for details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "err.h"
#include "fileio.h"
/* Determine the proper directory delimiter and mkdir() arguments.
*/
#ifdef WIN32
#define DIRSEP_CHAR '\\'
#define createdir(name) (mkdir(name) == 0)
#else
#define DIRSEP_CHAR '/'
#define createdir(name) (mkdir(name, 0755) == 0)
#endif
/* Determine a compile-time number to use as the maximum length of a
* path. Use a value of 1023 if we can't get anything usable from the
* header files.
*/
#include <limits.h>
#if !defined(PATH_MAX) || PATH_MAX <= 0
# if defined(MAXPATHLEN) && MAXPATHLEN > 0
# define PATH_MAX MAXPATHLEN
# else
# include <sys/param.h>
# if !defined(PATH_MAX) || PATH_MAX <= 0
# if defined(MAXPATHLEN) && MAXPATHLEN > 0
# define PATH_MAX MAXPATHLEN
# else
# define PATH_MAX 1023
# endif
# endif
# endif
#endif
/* The function used to display error messages relating to file I/O.
*/
int fileerr_(char const *cfile, unsigned long lineno,
fileinfo *file, char const *msg)
{
if (msg) {
err_cfile_ = cfile;
err_lineno_ = lineno;
errmsg_(file->name ? file->name : "file error",
errno ? strerror(errno) : msg);
}
return FALSE;
}
/*
* File-handling functions.
*/
/* Clear the fields of the fileinfo struct.
*/
void clearfileinfo(fileinfo *file)
{
file->name = NULL;
file->fp = NULL;
file->alloc = FALSE;
}
/* The 'x' modifier (C11) in fopen() is not widely supported as of 2020.
* This hack enables its use regardless of the underlying libc.
*/
static FILE *FOPEN(char const *name, char const *mode)
{
FILE * file = NULL;
if (!strcmp(mode, "wx")) {
int fd = open(name, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
if (fd != -1)
file = fdopen(fd, "w");
}
else
file = fopen(name, mode);
return file;
}
/* Open a file. If the fileinfo structure does not already have a
* filename assigned to it, use name (after making an independent
* copy).
*/
int fileopen(fileinfo *file, char const *name, char const *mode,
char const *msg)
{
int n;
if (!file->name) {
n = strlen(name) + 1;
if ((file->name = malloc(n))) {
memcpy(file->name, name, n);
file->alloc = TRUE;
} else {
file->name = (char*)name;
file->alloc = FALSE;
}
}
errno = 0;
file->fp = FOPEN(name, mode);
if (file->fp)
return TRUE;
return fileerr(file, msg);
}
/* Close the file, clear the file pointer, and free the name buffer if
* necessary.
*/
void fileclose(fileinfo *file, char const *msg)
{
errno = 0;
if (file->fp) {
if (fclose(file->fp) == EOF)
fileerr(file, msg);
file->fp = NULL;
}
if (file->alloc) {
free(file->name);
file->name = NULL;
file->alloc = FALSE;
}
}
/* rewind().
*/
int filerewind(fileinfo *file, char const *msg)
{
(void)msg;
rewind(file->fp);
return TRUE;
}
/* fseek().
*/
int fileskip(fileinfo *file, int offset, char const *msg)
{
errno = 0;
if (!fseek(file->fp, offset, SEEK_CUR))
return TRUE;
return fileerr(file, msg);
}
/* feof().
*/
int filetestend(fileinfo *file)
{
int ch;
if (feof(file->fp))
return TRUE;
ch = fgetc(file->fp);
if (ch == EOF)
return TRUE;
ungetc(ch, file->fp);
return FALSE;
}
/* read().
*/
int fileread(fileinfo *file, void *data, unsigned long size, char const *msg)
{
if (!size)
return TRUE;
errno = 0;
if (fread(data, size, 1, file->fp) == 1)
return TRUE;
return fileerr(file, msg);
}
/* Read size bytes from the given file into a newly allocated buffer.
*/
void *filereadbuf(fileinfo *file, unsigned long size, char const *msg)
{
void *buf;
if (size == 0) {
return NULL;
}
if (!(buf = malloc(size))) {
fileerr(file, msg);
return NULL;
}
errno = 0;
if (fread(buf, size, 1, file->fp) != 1) {
fileerr(file, msg);
free(buf);
return NULL;
}
return buf;
}
/* Read one full line from fp and store the first len characters,
* including any trailing newline.
*/
int filegetline(fileinfo *file, char *buf, int *len, char const *msg)
{
int n, ch;
if (!*len) {
*buf = '\0';
return TRUE;
}
errno = 0;
if (!fgets(buf, *len, file->fp))
return fileerr(file, msg);
n = strlen(buf);
if (n == *len - 1 && buf[n] != '\n') {
do
ch = fgetc(file->fp);
while (ch != EOF && ch != '\n');
} else
buf[n--] = '\0';
*len = n;
return TRUE;
}
/* write().
*/
int filewrite(fileinfo *file, void const *data, unsigned long size,
char const *msg)
{
if (!size)
return TRUE;
errno = 0;
if (fwrite(data, size, 1, file->fp) == 1)
return TRUE;
return fileerr(file, msg);
}
/* Read one byte as an unsigned integer value.
*/
int filereadint8(fileinfo *file, unsigned char *val8, char const *msg)
{
int byte;
errno = 0;
if ((byte = fgetc(file->fp)) == EOF)
return fileerr(file, msg);
*val8 = (unsigned char)byte;
return TRUE;
}
/* Write one byte as an unsigned integer value.
*/
int filewriteint8(fileinfo *file, unsigned char val8, char const *msg)
{
errno = 0;
if (fputc(val8, file->fp) != EOF)
return TRUE;
return fileerr(file, msg);
}
/* Read two bytes as an unsigned integer value stored in little-endian.
*/
int filereadint16(fileinfo *file, unsigned short *val16, char const *msg)
{
int byte;
errno = 0;
if ((byte = fgetc(file->fp)) != EOF) {
*val16 = (unsigned char)byte;
if ((byte = fgetc(file->fp)) != EOF) {
*val16 |= (unsigned char)byte << 8;
return TRUE;
}
}
return fileerr(file, msg);
}
/* Write two bytes as an unsigned integer value in little-endian.
*/
int filewriteint16(fileinfo *file, unsigned short val16, char const *msg)
{
errno = 0;
if (fputc(val16 & 0xFF, file->fp) != EOF
&& fputc((val16 >> 8) & 0xFF, file->fp) != EOF)
return TRUE;
return fileerr(file, msg);
}
/* Read four bytes as an unsigned integer value stored in little-endian.
*/
int filereadint32(fileinfo *file, unsigned long *val32, char const *msg)
{
int byte;
errno = 0;
if ((byte = fgetc(file->fp)) != EOF) {
*val32 = (unsigned int)byte;
if ((byte = fgetc(file->fp)) != EOF) {
*val32 |= (unsigned int)byte << 8;
if ((byte = fgetc(file->fp)) != EOF) {
*val32 |= (unsigned int)byte << 16;
if ((byte = fgetc(file->fp)) != EOF) {
*val32 |= (unsigned int)byte << 24;
return TRUE;
}
}
}
}
return fileerr(file, msg);
}
/* Write four bytes as an unsigned integer value in little-endian.
*/
int filewriteint32(fileinfo *file, unsigned long val32, char const *msg)
{
errno = 0;
if (fputc(val32 & 0xFF, file->fp) != EOF
&& fputc((val32 >> 8) & 0xFF, file->fp) != EOF
&& fputc((val32 >> 16) & 0xFF, file->fp) != EOF
&& fputc((val32 >> 24) & 0xFF, file->fp) != EOF)
return TRUE;
return fileerr(file, msg);
}
/*
* Directory-handling functions.
*/
/* Return the size of a buffer big enough to hold a pathname.
*/
int getpathbufferlen(void)
{
return PATH_MAX;
}
/* Return a buffer big enough to hold a pathname.
*/
char *getpathbuffer(void)
{
char *buf;
if (!(buf = calloc(PATH_MAX + 1, 1)))
memerrexit();
return buf;
}
/* Return TRUE if name contains a path but is not a directory itself.
*/
int haspathname(char const *name)
{
struct stat st;
if (!strchr(name, DIRSEP_CHAR))
return FALSE;
if (stat(name, &st) || S_ISDIR(st.st_mode))
return FALSE;
return TRUE;
}
/* Return a pointer to the filename, skipping over any directories in
* the front.
*/
char *skippathname(char const *name)
{
char const *p;
p = strrchr(name, DIRSEP_CHAR);
return (char*)(p ? p + 1 : name);
}
/* Append the path and/or file contained in path to dir. If path is
* an absolute path, the contents of dir are ignored.
*/
int combinepath(char *dest, char const *dir, char const *path)
{
int m, n;
if (path[0] == DIRSEP_CHAR) {
n = strlen(path);
if (n > PATH_MAX) {
errno = ENAMETOOLONG;
return FALSE;
}
strcpy(dest, path);
return TRUE;
}
n = strlen(dir);
if (n >= PATH_MAX) {
errno = ENAMETOOLONG;
return FALSE;
}
if (dest != dir)
memcpy(dest, dir, n);
if (dest[n - 1] != DIRSEP_CHAR)
dest[n++] = DIRSEP_CHAR;
m = strlen(path);
if (m + n + 1 > PATH_MAX) {
errno = ENAMETOOLONG;
return FALSE;
}
memcpy(dest + n, path, m + 1);
return TRUE;
}
/* Create the directory dir if it doesn't already exist.
*/
int finddir(char const *dir)
{
struct stat st;
return stat(dir, &st) ? createdir(dir) : S_ISDIR(st.st_mode);
}
/* Return the pathname for a directory and/or filename, using the
* same algorithm to construct the path as openfileindir().
*/
char *getpathforfileindir(char const *dir, char const *filename)
{
char *path;
int m, n;
m = strlen(filename);
if (!dir || !*dir || strchr(filename, DIRSEP_CHAR)) {
if (m > PATH_MAX) {
errno = ENAMETOOLONG;
return NULL;
}
path = getpathbuffer();
strcpy(path, filename);
} else {
n = strlen(dir);
if (m + n + 1 > PATH_MAX) {
errno = ENAMETOOLONG;
return NULL;
}
path = getpathbuffer();
memcpy(path, dir, n);
path[n++] = DIRSEP_CHAR;
memcpy(path + n, filename, m + 1);
}
return path;
}
/* Open a file, using dir as the directory if filename is not a path.
*/
int openfileindir(fileinfo *file, char const *dir, char const *filename,
char const *mode, char const *msg)
{
char buf[PATH_MAX + 1];
int m, n;
if (!dir || !*dir || strchr(filename, DIRSEP_CHAR))
return fileopen(file, filename, mode, msg);
n = strlen(dir);
m = strlen(filename);
if (m + n + 1 > PATH_MAX) {
errno = ENAMETOOLONG;
return fileerr(file, NULL);
}
memcpy(buf, dir, n);
buf[n++] = DIRSEP_CHAR;
memcpy(buf + n, filename, m + 1);
return fileopen(file, buf, mode, msg);
}
/* Read the given directory and call filecallback once for each file
* contained in it.
*/
int findfiles(char const *dir, void *data,
int (*filecallback)(char const*, void*))
{
char *filename = NULL;
DIR *dp;
struct dirent *dent;
int r;
if (!(dp = opendir(dir))) {
fileinfo tmp;
tmp.name = (char*)dir;
return fileerr(&tmp, "couldn't access directory");
}
while ((dent = readdir(dp))) {
if (dent->d_name[0] == '.')
continue;
x_alloc(filename, strlen(dent->d_name) + 1);
strcpy(filename, dent->d_name);
r = (*filecallback)(filename, data);
if (r < 0)
break;
else if (r > 0)
filename = NULL;
}
if (filename)
free(filename);
closedir(dp);
return TRUE;
}