Skip to content

Latest commit

 

History

History
1429 lines (1163 loc) · 35.7 KB

test_physfs.c

File metadata and controls

1429 lines (1163 loc) · 35.7 KB
 
Jul 16, 2001
Jul 16, 2001
1
2
3
/**
* Test program for PhysicsFS. May only work on Unix.
*
Mar 11, 2007
Mar 11, 2007
4
* Please see the file LICENSE.txt in the source's root directory.
Jul 16, 2001
Jul 16, 2001
5
6
7
8
*
* This file written by Ryan C. Gordon.
*/
9
#include <stdio.h>
Jul 16, 2001
Jul 16, 2001
10
#include <stdlib.h>
Jul 16, 2001
Jul 16, 2001
11
#include <errno.h>
Aug 23, 2001
Aug 23, 2001
12
13
#include <string.h>
Apr 3, 2002
Apr 3, 2002
14
15
16
17
#if (defined __MWERKS__)
#include <SIOUX.h>
#endif
May 10, 2002
May 10, 2002
18
#if (defined PHYSFS_HAVE_READLINE)
Jul 16, 2001
Jul 16, 2001
19
#include <unistd.h>
May 10, 2002
May 10, 2002
20
21
#include <readline/readline.h>
#include <readline/history.h>
Aug 23, 2001
Aug 23, 2001
22
23
#endif
May 25, 2002
May 25, 2002
24
25
#include <time.h>
Mar 22, 2012
Mar 22, 2012
26
27
28
/* Define this, so the compiler doesn't complain about using old APIs. */
#define PHYSFS_DEPRECATED
29
30
#include "physfs.h"
Mar 23, 2009
Mar 23, 2009
31
#define TEST_VERSION_MAJOR 2
Apr 13, 2009
Apr 13, 2009
32
#define TEST_VERSION_MINOR 1
Mar 23, 2009
Mar 23, 2009
33
#define TEST_VERSION_PATCH 0
34
Jul 16, 2001
Jul 16, 2001
35
static FILE *history_file = NULL;
Dec 1, 2002
Dec 1, 2002
36
static PHYSFS_uint32 do_buffer_size = 0;
Jul 16, 2001
Jul 16, 2001
37
Jul 16, 2001
Jul 16, 2001
38
static void output_versions(void)
39
40
41
42
43
44
45
46
47
48
49
{
PHYSFS_Version compiled;
PHYSFS_Version linked;
PHYSFS_VERSION(&compiled);
PHYSFS_getLinkedVersion(&linked);
printf("test_physfs version %d.%d.%d.\n"
" Compiled against PhysicsFS version %d.%d.%d,\n"
" and linked against %d.%d.%d.\n\n",
TEST_VERSION_MAJOR, TEST_VERSION_MINOR, TEST_VERSION_PATCH,
Mar 24, 2002
Mar 24, 2002
50
51
(int) compiled.major, (int) compiled.minor, (int) compiled.patch,
(int) linked.major, (int) linked.minor, (int) linked.patch);
52
53
54
} /* output_versions */
Jul 16, 2001
Jul 16, 2001
55
static void output_archivers(void)
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
const PHYSFS_ArchiveInfo **rc = PHYSFS_supportedArchiveTypes();
const PHYSFS_ArchiveInfo **i;
printf("Supported archive types:\n");
if (*rc == NULL)
printf(" * Apparently, NONE!\n");
else
{
for (i = rc; *i != NULL; i++)
{
printf(" * %s: %s\n Written by %s.\n %s\n",
(*i)->extension, (*i)->description,
(*i)->author, (*i)->url);
} /* for */
} /* else */
Jul 16, 2001
Jul 16, 2001
72
73
printf("\n");
74
75
76
} /* output_archivers */
Jul 16, 2001
Jul 16, 2001
77
78
static int cmd_quit(char *args)
{
Jan 28, 2010
Jan 28, 2010
79
return 0;
Jul 16, 2001
Jul 16, 2001
80
81
82
83
} /* cmd_quit */
static int cmd_init(char *args)
Jul 16, 2001
Jul 16, 2001
84
{
Apr 5, 2002
Apr 5, 2002
85
86
87
88
89
90
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
91
92
93
94
95
if (PHYSFS_init(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
96
return 1;
Jul 16, 2001
Jul 16, 2001
97
} /* cmd_init */
Jul 16, 2001
Jul 16, 2001
98
99
Jul 16, 2001
Jul 16, 2001
100
static int cmd_deinit(char *args)
Jul 16, 2001
Jul 16, 2001
101
{
Jul 16, 2001
Jul 16, 2001
102
103
104
105
106
if (PHYSFS_deinit())
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
107
return 1;
Jul 16, 2001
Jul 16, 2001
108
109
110
111
112
} /* cmd_deinit */
static int cmd_addarchive(char *args)
{
Apr 4, 2002
Apr 4, 2002
113
char *ptr = strrchr(args, ' ');
Jul 16, 2001
Jul 16, 2001
114
115
116
int appending = atoi(ptr + 1);
*ptr = '\0';
Apr 4, 2002
Apr 4, 2002
117
118
119
120
if (*args == '\"')
{
args++;
*(ptr - 1) = '\0';
Apr 5, 2002
Apr 5, 2002
121
} /* if */
Apr 4, 2002
Apr 4, 2002
122
123
124
/*printf("[%s], [%d]\n", args, appending);*/
Aug 22, 2010
Aug 22, 2010
125
if (PHYSFS_mount(args, NULL, appending))
Jul 16, 2001
Jul 16, 2001
126
127
128
129
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
130
return 1;
Jul 16, 2001
Jul 16, 2001
131
132
133
} /* cmd_addarchive */
Aug 30, 2010
Aug 30, 2010
134
135
136
137
138
139
/* wrap free() to avoid calling convention wankery. */
static void freeBuf(void *buf)
{
free(buf);
} /* freeBuf */
Aug 30, 2010
Aug 30, 2010
140
141
142
143
144
145
typedef enum
{
MNTTYPE_PATH,
MNTTYPE_MEMORY,
MNTTYPE_HANDLE
} MountType;
Aug 30, 2010
Aug 30, 2010
146
Aug 30, 2010
Aug 30, 2010
147
static int cmd_mount_internal(char *args, const MountType mnttype)
Mar 13, 2005
Mar 13, 2005
148
149
150
151
{
char *ptr;
char *mntpoint = NULL;
int appending = 0;
Aug 30, 2010
Aug 30, 2010
152
int rc = 0;
Mar 13, 2005
Mar 13, 2005
153
154
155
156
157
158
159
160
if (*args == '\"')
{
args++;
ptr = strchr(args, '\"');
if (ptr == NULL)
{
printf("missing string terminator in argument.\n");
Jan 28, 2010
Jan 28, 2010
161
return 1;
Mar 13, 2005
Mar 13, 2005
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
} /* if */
*(ptr) = '\0';
} /* if */
else
{
ptr = strchr(args, ' ');
*ptr = '\0';
} /* else */
mntpoint = ptr + 1;
if (*mntpoint == '\"')
{
mntpoint++;
ptr = strchr(mntpoint, '\"');
if (ptr == NULL)
{
printf("missing string terminator in argument.\n");
Jan 28, 2010
Jan 28, 2010
179
return 1;
Mar 13, 2005
Mar 13, 2005
180
181
182
183
184
185
186
187
188
189
} /* if */
*(ptr) = '\0';
} /* if */
else
{
ptr = strchr(mntpoint, ' ');
*(ptr) = '\0';
} /* else */
appending = atoi(ptr + 1);
Mar 14, 2005
Mar 14, 2005
190
/*printf("[%s], [%s], [%d]\n", args, mntpoint, appending);*/
Mar 13, 2005
Mar 13, 2005
191
Aug 30, 2010
Aug 30, 2010
192
if (mnttype == MNTTYPE_PATH)
Aug 30, 2010
Aug 30, 2010
193
rc = PHYSFS_mount(args, mntpoint, appending);
Aug 30, 2010
Aug 30, 2010
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
else if (mnttype == MNTTYPE_HANDLE)
{
PHYSFS_File *f = PHYSFS_openRead(args);
if (f == NULL)
{
printf("PHYSFS_openRead('%s') failed. reason: %s.\n", args, PHYSFS_getLastError());
return 1;
} /* if */
rc = PHYSFS_mountHandle(f, args, mntpoint, appending);
if (!rc)
PHYSFS_close(f);
} /* else if */
else if (mnttype == MNTTYPE_MEMORY)
Aug 30, 2010
Aug 30, 2010
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
{
FILE *in = fopen(args, "rb");
void *buf = NULL;
long len = 0;
if (in == NULL)
{
printf("Failed to open %s to read into memory: %s.\n", args, strerror(errno));
return 1;
} /* if */
if ( (fseek(in, 0, SEEK_END) != 0) || ((len = ftell(in)) < 0) )
{
printf("Failed to find size of %s to read into memory: %s.\n", args, strerror(errno));
fclose(in);
return 1;
} /* if */
buf = malloc(len);
if (buf == NULL)
{
printf("Failed to allocate space to read %s into memory: %s.\n", args, strerror(errno));
fclose(in);
return 1;
} /* if */
if ((fseek(in, 0, SEEK_SET) != 0) || (fread(buf, len, 1, in) != 1))
{
printf("Failed to read %s into memory: %s.\n", args, strerror(errno));
fclose(in);
free(buf);
return 1;
} /* if */
fclose(in);
rc = PHYSFS_mountMemory(buf, len, freeBuf, args, mntpoint, appending);
} /* else */
if (rc)
Mar 13, 2005
Mar 13, 2005
250
251
252
253
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
254
return 1;
Aug 30, 2010
Aug 30, 2010
255
256
257
258
259
} /* cmd_mount_internal */
static int cmd_mount(char *args)
{
Aug 30, 2010
Aug 30, 2010
260
return cmd_mount_internal(args, MNTTYPE_PATH);
Mar 13, 2005
Mar 13, 2005
261
262
263
} /* cmd_mount */
Aug 30, 2010
Aug 30, 2010
264
265
static int cmd_mount_mem(char *args)
{
Aug 30, 2010
Aug 30, 2010
266
return cmd_mount_internal(args, MNTTYPE_MEMORY);
Aug 30, 2010
Aug 30, 2010
267
268
269
} /* cmd_mount_mem */
Aug 30, 2010
Aug 30, 2010
270
271
272
273
274
275
static int cmd_mount_handle(char *args)
{
return cmd_mount_internal(args, MNTTYPE_HANDLE);
} /* cmd_mount_handle */
Jul 16, 2001
Jul 16, 2001
276
277
static int cmd_removearchive(char *args)
{
Apr 5, 2002
Apr 5, 2002
278
279
280
281
282
283
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Aug 22, 2010
Aug 22, 2010
284
if (PHYSFS_unmount(args))
Jul 16, 2001
Jul 16, 2001
285
286
287
288
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
289
return 1;
Jul 16, 2001
Jul 16, 2001
290
291
292
293
294
} /* cmd_removearchive */
static int cmd_enumerate(char *args)
{
Apr 5, 2002
Apr 5, 2002
295
296
297
298
299
300
301
302
303
char **rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_enumerateFiles(args);
Jul 16, 2001
Jul 16, 2001
304
305
306
307
308
309
310
311
312
313
314
315
316
317
if (rc == NULL)
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
else
{
int file_count;
char **i;
for (i = rc, file_count = 0; *i != NULL; i++, file_count++)
printf("%s\n", *i);
printf("\n total (%d) files.\n", file_count);
PHYSFS_freeList(rc);
} /* else */
Jan 28, 2010
Jan 28, 2010
318
return 1;
Jul 16, 2001
Jul 16, 2001
319
320
321
322
323
324
} /* cmd_enumerate */
static int cmd_getdirsep(char *args)
{
printf("Directory separator is [%s].\n", PHYSFS_getDirSeparator());
Jan 28, 2010
Jan 28, 2010
325
return 1;
Jul 16, 2001
Jul 16, 2001
326
327
328
329
330
331
} /* cmd_getdirsep */
static int cmd_getlasterror(char *args)
{
printf("last error is [%s].\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
332
return 1;
Jul 16, 2001
Jul 16, 2001
333
334
335
336
337
338
339
340
} /* cmd_getlasterror */
static int cmd_getcdromdirs(char *args)
{
char **rc = PHYSFS_getCdRomDirs();
if (rc == NULL)
Apr 5, 2002
Apr 5, 2002
341
printf("Failure. Reason: [%s].\n", PHYSFS_getLastError());
Jul 16, 2001
Jul 16, 2001
342
343
344
345
346
347
348
349
350
351
352
else
{
int dir_count;
char **i;
for (i = rc, dir_count = 0; *i != NULL; i++, dir_count++)
printf("%s\n", *i);
printf("\n total (%d) drives.\n", dir_count);
PHYSFS_freeList(rc);
} /* else */
Jan 28, 2010
Jan 28, 2010
353
return 1;
Jul 16, 2001
Jul 16, 2001
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
} /* cmd_getcdromdirs */
static int cmd_getsearchpath(char *args)
{
char **rc = PHYSFS_getSearchPath();
if (rc == NULL)
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
else
{
int dir_count;
char **i;
for (i = rc, dir_count = 0; *i != NULL; i++, dir_count++)
printf("%s\n", *i);
printf("\n total (%d) directories.\n", dir_count);
PHYSFS_freeList(rc);
} /* else */
Jan 28, 2010
Jan 28, 2010
374
return 1;
Jul 16, 2001
Jul 16, 2001
375
376
377
378
379
380
} /* cmd_getcdromdirs */
static int cmd_getbasedir(char *args)
{
printf("Base dir is [%s].\n", PHYSFS_getBaseDir());
Jan 28, 2010
Jan 28, 2010
381
return 1;
Jul 16, 2001
Jul 16, 2001
382
383
384
385
386
387
} /* cmd_getbasedir */
static int cmd_getuserdir(char *args)
{
printf("User dir is [%s].\n", PHYSFS_getUserDir());
Jan 28, 2010
Jan 28, 2010
388
return 1;
Jul 16, 2001
Jul 16, 2001
389
390
391
} /* cmd_getuserdir */
Mar 22, 2012
Mar 22, 2012
392
393
394
395
396
397
398
399
400
401
402
403
404
static int cmd_getprefdir(char *args)
{
char *org;
char *appName;
char *ptr = args;
org = ptr;
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; appName = ptr;
printf("Pref dir is [%s].\n", PHYSFS_getPrefDir(org, appName));
return 1;
} /* cmd_getprefdir */
Jul 16, 2001
Jul 16, 2001
405
406
407
static int cmd_getwritedir(char *args)
{
printf("Write dir is [%s].\n", PHYSFS_getWriteDir());
Jan 28, 2010
Jan 28, 2010
408
return 1;
Jul 16, 2001
Jul 16, 2001
409
410
411
412
413
} /* cmd_getwritedir */
static int cmd_setwritedir(char *args)
{
Apr 5, 2002
Apr 5, 2002
414
415
416
417
418
419
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
420
421
422
423
424
if (PHYSFS_setWriteDir(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
425
return 1;
Jul 16, 2001
Jul 16, 2001
426
427
428
429
430
} /* cmd_setwritedir */
static int cmd_permitsyms(char *args)
{
Apr 5, 2002
Apr 5, 2002
431
432
433
434
435
436
437
438
439
int num;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
num = atoi(args);
Jul 16, 2001
Jul 16, 2001
440
441
PHYSFS_permitSymbolicLinks(num);
printf("Symlinks are now %s.\n", num ? "permitted" : "forbidden");
Jan 28, 2010
Jan 28, 2010
442
return 1;
Jul 16, 2001
Jul 16, 2001
443
444
445
} /* cmd_permitsyms */
Dec 1, 2002
Dec 1, 2002
446
447
448
449
450
451
452
453
static int cmd_setbuffer(char *args)
{
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jan 31, 2003
Jan 31, 2003
454
do_buffer_size = (unsigned int) atoi(args);
Dec 1, 2002
Dec 1, 2002
455
456
457
458
459
460
461
462
463
464
465
if (do_buffer_size)
{
printf("Further tests will set a (%lu) size buffer.\n",
(unsigned long) do_buffer_size);
} /* if */
else
{
printf("Further tests will NOT use a buffer.\n");
} /* else */
Jan 28, 2010
Jan 28, 2010
466
return 1;
Dec 1, 2002
Dec 1, 2002
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
} /* cmd_setbuffer */
static int cmd_stressbuffer(char *args)
{
int num;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
num = atoi(args);
if (num < 0)
printf("buffer must be greater than or equal to zero.\n");
else
{
Sep 26, 2004
Sep 26, 2004
485
PHYSFS_File *f;
Dec 1, 2002
Dec 1, 2002
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
int rndnum;
printf("Stress testing with (%d) byte buffer...\n", num);
f = PHYSFS_openWrite("test.txt");
if (f == NULL)
printf("Couldn't open test.txt for writing: %s.\n", PHYSFS_getLastError());
else
{
int i, j;
char buf[37];
char buf2[37];
if (!PHYSFS_setBuffer(f, num))
{
printf("PHYSFS_setBuffer() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
PHYSFS_delete("test.txt");
Jan 28, 2010
Jan 28, 2010
503
return 1;
Dec 1, 2002
Dec 1, 2002
504
505
506
} /* if */
strcpy(buf, "abcdefghijklmnopqrstuvwxyz0123456789");
Jan 31, 2003
Jan 31, 2003
507
srand((unsigned int) time(NULL));
Dec 1, 2002
Dec 1, 2002
508
509
510
511
512
for (i = 0; i < 10; i++)
{
for (j = 0; j < 10000; j++)
{
Jan 31, 2003
Jan 31, 2003
513
514
PHYSFS_uint32 right = 1 + (PHYSFS_uint32) (35.0 * rand() / (RAND_MAX + 1.0));
PHYSFS_uint32 left = 36 - right;
Aug 21, 2010
Aug 21, 2010
515
if (PHYSFS_writeBytes(f, buf, left) != left)
Dec 1, 2002
Dec 1, 2002
516
{
Aug 21, 2010
Aug 21, 2010
517
printf("PHYSFS_writeBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
518
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
519
return 1;
Dec 1, 2002
Dec 1, 2002
520
521
522
523
524
525
526
527
528
} /* if */
rndnum = 1 + (int) (1000.0 * rand() / (RAND_MAX + 1.0));
if (rndnum == 42)
{
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
529
return 1;
Dec 1, 2002
Dec 1, 2002
530
531
532
} /* if */
} /* if */
Aug 21, 2010
Aug 21, 2010
533
if (PHYSFS_writeBytes(f, buf + left, right) != right)
Dec 1, 2002
Dec 1, 2002
534
{
Aug 21, 2010
Aug 21, 2010
535
printf("PHYSFS_writeBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
536
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
537
return 1;
Dec 1, 2002
Dec 1, 2002
538
539
540
541
542
543
544
545
546
} /* if */
rndnum = 1 + (int) (1000.0 * rand() / (RAND_MAX + 1.0));
if (rndnum == 42)
{
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
547
return 1;
Dec 1, 2002
Dec 1, 2002
548
549
550
551
552
553
554
555
} /* if */
} /* if */
} /* for */
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
556
return 1;
Dec 1, 2002
Dec 1, 2002
557
558
559
560
561
562
563
} /* if */
} /* for */
if (!PHYSFS_close(f))
{
printf("PHYSFS_close() failed: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
564
return 1; /* oh well. */
Dec 1, 2002
Dec 1, 2002
565
566
567
568
569
570
571
} /* if */
printf(" ... test file written ...\n");
f = PHYSFS_openRead("test.txt");
if (f == NULL)
{
printf("Failed to reopen stress file for reading: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
572
return 1;
Dec 1, 2002
Dec 1, 2002
573
574
575
576
577
578
} /* if */
if (!PHYSFS_setBuffer(f, num))
{
printf("PHYSFS_setBuffer() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
579
return 1;
Dec 1, 2002
Dec 1, 2002
580
581
582
583
584
585
} /* if */
for (i = 0; i < 10; i++)
{
for (j = 0; j < 10000; j++)
{
Jan 31, 2003
Jan 31, 2003
586
587
PHYSFS_uint32 right = 1 + (PHYSFS_uint32) (35.0 * rand() / (RAND_MAX + 1.0));
PHYSFS_uint32 left = 36 - right;
Aug 21, 2010
Aug 21, 2010
588
if (PHYSFS_readBytes(f, buf2, left) != left)
Dec 1, 2002
Dec 1, 2002
589
{
Aug 21, 2010
Aug 21, 2010
590
printf("PHYSFS_readBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
591
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
592
return 1;
Dec 1, 2002
Dec 1, 2002
593
594
595
596
597
598
599
600
601
} /* if */
rndnum = 1 + (int) (1000.0 * rand() / (RAND_MAX + 1.0));
if (rndnum == 42)
{
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
602
return 1;
Dec 1, 2002
Dec 1, 2002
603
604
605
} /* if */
} /* if */
Aug 21, 2010
Aug 21, 2010
606
if (PHYSFS_readBytes(f, buf2 + left, right) != right)
Dec 1, 2002
Dec 1, 2002
607
{
Aug 21, 2010
Aug 21, 2010
608
printf("PHYSFS_readBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
609
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
610
return 1;
Dec 1, 2002
Dec 1, 2002
611
612
613
614
615
616
617
618
619
} /* if */
rndnum = 1 + (int) (1000.0 * rand() / (RAND_MAX + 1.0));
if (rndnum == 42)
{
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
620
return 1;
Dec 1, 2002
Dec 1, 2002
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
} /* if */
} /* if */
if (memcmp(buf, buf2, 36) != 0)
{
printf("readback is mismatched on iterations (%d, %d).\n", i, j);
printf("wanted: [");
for (i = 0; i < 36; i++)
printf("%c", buf[i]);
printf("]\n");
printf(" got: [");
for (i = 0; i < 36; i++)
printf("%c", buf2[i]);
printf("]\n");
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
637
return 1;
Dec 1, 2002
Dec 1, 2002
638
639
640
641
642
643
644
} /* if */
} /* for */
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
645
return 1;
Dec 1, 2002
Dec 1, 2002
646
647
648
649
650
651
652
653
654
655
656
657
} /* if */
} /* for */
printf(" ... test file read ...\n");
if (!PHYSFS_eof(f))
printf("PHYSFS_eof() returned true! That's wrong.\n");
if (!PHYSFS_close(f))
{
printf("PHYSFS_close() failed: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
658
return 1; /* oh well. */
Dec 1, 2002
Dec 1, 2002
659
660
661
662
663
664
665
} /* if */
PHYSFS_delete("test.txt");
printf("stress test completed successfully.\n");
} /* else */
} /* else */
Jan 28, 2010
Jan 28, 2010
666
return 1;
Dec 1, 2002
Dec 1, 2002
667
668
669
} /* cmd_stressbuffer */
Jul 16, 2001
Jul 16, 2001
670
671
static int cmd_setsaneconfig(char *args)
{
Sep 26, 2001
Sep 26, 2001
672
char *org;
Jul 16, 2001
Jul 16, 2001
673
674
675
676
677
678
679
char *appName;
char *arcExt;
int inclCD;
int arcsFirst;
char *ptr = args;
/* ugly. */
Sep 26, 2001
Sep 26, 2001
680
681
org = ptr;
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; appName = ptr;
Jul 16, 2001
Jul 16, 2001
682
683
684
685
686
687
688
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; arcExt = ptr;
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; inclCD = atoi(arcExt);
arcsFirst = atoi(ptr);
if (strcmp(arcExt, "!") == 0)
arcExt = NULL;
Sep 26, 2001
Sep 26, 2001
689
if (PHYSFS_setSaneConfig(org, appName, arcExt, inclCD, arcsFirst))
Jul 16, 2001
Jul 16, 2001
690
691
692
693
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
694
return 1;
Jul 16, 2001
Jul 16, 2001
695
696
697
} /* cmd_setsaneconfig */
Jul 16, 2001
Jul 16, 2001
698
699
static int cmd_mkdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
700
701
702
703
704
705
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
706
707
708
709
710
if (PHYSFS_mkdir(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
711
return 1;
Jul 16, 2001
Jul 16, 2001
712
713
714
715
716
} /* cmd_mkdir */
static int cmd_delete(char *args)
{
Apr 5, 2002
Apr 5, 2002
717
718
719
720
721
722
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
723
724
725
726
727
if (PHYSFS_delete(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
728
return 1;
Jul 16, 2001
Jul 16, 2001
729
730
731
732
733
} /* cmd_delete */
static int cmd_getrealdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
734
735
736
737
738
739
740
741
742
const char *rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_getRealDir(args);
Jul 16, 2001
Jul 16, 2001
743
744
745
746
747
if (rc)
printf("Found at [%s].\n", rc);
else
printf("Not found.\n");
Jan 28, 2010
Jan 28, 2010
748
return 1;
Jul 16, 2001
Jul 16, 2001
749
750
751
752
753
} /* cmd_getrealdir */
static int cmd_exists(char *args)
{
Apr 5, 2002
Apr 5, 2002
754
755
756
757
758
759
760
761
762
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_exists(args);
Jul 16, 2001
Jul 16, 2001
763
printf("File %sexists.\n", rc ? "" : "does not ");
Jan 28, 2010
Jan 28, 2010
764
return 1;
Jul 16, 2001
Jul 16, 2001
765
766
767
768
769
} /* cmd_exists */
static int cmd_isdir(char *args)
{
Sep 5, 2010
Sep 5, 2010
770
PHYSFS_Stat statbuf;
Apr 5, 2002
Apr 5, 2002
771
772
773
774
775
776
777
778
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Sep 5, 2010
Sep 5, 2010
779
780
781
rc = PHYSFS_stat(args, &statbuf);
if (rc)
rc = (statbuf.filetype == PHYSFS_FILETYPE_DIRECTORY);
Jul 16, 2001
Jul 16, 2001
782
printf("File %s a directory.\n", rc ? "is" : "is NOT");
Jan 28, 2010
Jan 28, 2010
783
return 1;
Jul 16, 2001
Jul 16, 2001
784
785
786
787
788
} /* cmd_isdir */
static int cmd_issymlink(char *args)
{
Sep 5, 2010
Sep 5, 2010
789
PHYSFS_Stat statbuf;
Apr 5, 2002
Apr 5, 2002
790
791
792
793
794
795
796
797
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Sep 5, 2010
Sep 5, 2010
798
799
800
rc = PHYSFS_stat(args, &statbuf);
if (rc)
rc = (statbuf.filetype == PHYSFS_FILETYPE_SYMLINK);
Jul 16, 2001
Jul 16, 2001
801
printf("File %s a symlink.\n", rc ? "is" : "is NOT");
Jan 28, 2010
Jan 28, 2010
802
return 1;
Jul 16, 2001
Jul 16, 2001
803
804
805
} /* cmd_issymlink */
Oct 9, 2001
Oct 9, 2001
806
807
static int cmd_cat(char *args)
{
Sep 26, 2004
Sep 26, 2004
808
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
809
810
811
812
813
814
815
816
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openRead(args);
Oct 9, 2001
Oct 9, 2001
817
818
819
820
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
Dec 1, 2002
Dec 1, 2002
821
822
823
824
825
826
827
if (do_buffer_size)
{
if (!PHYSFS_setBuffer(f, do_buffer_size))
{
printf("failed to set file buffer. Reason: [%s].\n",
PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
828
return 1;
Dec 1, 2002
Dec 1, 2002
829
830
831
} /* if */
} /* if */
Oct 9, 2001
Oct 9, 2001
832
833
834
while (1)
{
char buffer[128];
Mar 24, 2002
Mar 24, 2002
835
836
PHYSFS_sint64 rc;
PHYSFS_sint64 i;
Aug 21, 2010
Aug 21, 2010
837
rc = PHYSFS_readBytes(f, buffer, sizeof (buffer));
Oct 9, 2001
Oct 9, 2001
838
839
840
841
842
843
844
845
for (i = 0; i < rc; i++)
fputc((int) buffer[i], stdout);
if (rc < sizeof (buffer))
{
printf("\n\n");
if (!PHYSFS_eof(f))
Mar 24, 2002
Mar 24, 2002
846
847
848
849
{
printf("\n (Error condition in reading. Reason: [%s])\n\n",
PHYSFS_getLastError());
} /* if */
Oct 9, 2001
Oct 9, 2001
850
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
851
return 1;
Oct 9, 2001
Oct 9, 2001
852
853
854
855
} /* if */
} /* while */
} /* else */
Jan 28, 2010
Jan 28, 2010
856
return 1;
Oct 9, 2001
Oct 9, 2001
857
858
859
} /* cmd_cat */
Mar 17, 2010
Mar 17, 2010
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
#define CRC32_BUFFERSIZE 512
static int cmd_crc32(char *args)
{
PHYSFS_File *f;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openRead(args);
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
PHYSFS_uint8 buffer[CRC32_BUFFERSIZE];
PHYSFS_uint32 crc = -1;
PHYSFS_sint64 bytesread;
Aug 21, 2010
Aug 21, 2010
880
while ((bytesread = PHYSFS_readBytes(f, buffer, CRC32_BUFFERSIZE)) > 0)
Mar 17, 2010
Mar 17, 2010
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
{
PHYSFS_uint32 i, bit;
for (i = 0; i < bytesread; i++)
{
for (bit = 0; bit < 8; bit++, buffer[i] >>= 1)
crc = (crc >> 1) ^ (((crc ^ buffer[i]) & 1) ? 0xEDB88320 : 0);
} /* for */
} /* while */
if (bytesread < 0)
{
printf("error while reading. Reason: [%s].\n",
PHYSFS_getLastError());
return 1;
} /* if */
PHYSFS_close(f);
crc ^= -1;
printf("CRC32 for %s: 0x%08X\n", args, crc);
} /* else */
return 1;
} /* cmd_crc32 */
Apr 5, 2002
Apr 5, 2002
907
908
static int cmd_filelength(char *args)
{
Sep 26, 2004
Sep 26, 2004
909
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openRead(args);
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
PHYSFS_sint64 len = PHYSFS_fileLength(f);
if (len == -1)
printf("failed to determine length. Reason: [%s].\n", PHYSFS_getLastError());
else
printf(" (cast to int) %d bytes.\n", (int) len);
PHYSFS_close(f);
} /* else */
Jan 28, 2010
Jan 28, 2010
931
return 1;
Apr 5, 2002
Apr 5, 2002
932
933
934
935
936
937
} /* cmd_filelength */
#define WRITESTR "The cat sat on the mat.\n\n"
static int cmd_append(char *args)
{
Sep 26, 2004
Sep 26, 2004
938
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
939
940
941
942
943
944
945
946
947
948
949
950
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openAppend(args);
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
Dec 1, 2002
Dec 1, 2002
951
952
953
954
955
956
957
958
959
960
size_t bw;
PHYSFS_sint64 rc;
if (do_buffer_size)
{
if (!PHYSFS_setBuffer(f, do_buffer_size))
{
printf("failed to set file buffer. Reason: [%s].\n",
PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
961
return 1;
Dec 1, 2002
Dec 1, 2002
962
963
964
965
} /* if */
} /* if */
bw = strlen(WRITESTR);
Aug 21, 2010
Aug 21, 2010
966
rc = PHYSFS_writeBytes(f, WRITESTR, bw);
Apr 5, 2002
Apr 5, 2002
967
968
if (rc != bw)
{
Apr 5, 2002
Apr 5, 2002
969
970
printf("Wrote (%d) of (%d) bytes. Reason: [%s].\n",
(int) rc, (int) bw, PHYSFS_getLastError());
Apr 5, 2002
Apr 5, 2002
971
972
973
974
975
976
977
978
979
} /* if */
else
{
printf("Successful.\n");
} /* else */
PHYSFS_close(f);
} /* else */
Jan 28, 2010
Jan 28, 2010
980
return 1;
Apr 5, 2002
Apr 5, 2002
981
982
983
984
985
} /* cmd_append */
static int cmd_write(char *args)
{
Sep 26, 2004
Sep 26, 2004
986
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
987
988
989
990
991
992
993
994
995
996
997
998
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openWrite(args);
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
Dec 1, 2002
Dec 1, 2002
999
1000
size_t bw;
PHYSFS_sint64 rc;