Skip to content

Latest commit

 

History

History
1447 lines (1179 loc) · 36.1 KB

test_physfs.c

File metadata and controls

1447 lines (1179 loc) · 36.1 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
static int cmd_mount_handle(char *args)
{
return cmd_mount_internal(args, MNTTYPE_HANDLE);
} /* cmd_mount_handle */
Apr 8, 2012
Apr 8, 2012
275
276
277
278
279
280
281
282
283
284
285
static int cmd_getmountpoint(char *args)
{
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
printf("Dir [%s] is mounted at [%s].\n", args, PHYSFS_getMountPoint(args));
return 1;
} /* cmd_getmountpoint */
Aug 30, 2010
Aug 30, 2010
286
Jul 16, 2001
Jul 16, 2001
287
288
static int cmd_removearchive(char *args)
{
Apr 5, 2002
Apr 5, 2002
289
290
291
292
293
294
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Aug 22, 2010
Aug 22, 2010
295
if (PHYSFS_unmount(args))
Jul 16, 2001
Jul 16, 2001
296
297
298
299
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
300
return 1;
Jul 16, 2001
Jul 16, 2001
301
302
303
304
305
} /* cmd_removearchive */
static int cmd_enumerate(char *args)
{
Apr 5, 2002
Apr 5, 2002
306
307
308
309
310
311
312
313
314
char **rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_enumerateFiles(args);
Jul 16, 2001
Jul 16, 2001
315
316
317
318
319
320
321
322
323
324
325
326
327
328
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
329
return 1;
Jul 16, 2001
Jul 16, 2001
330
331
332
333
334
335
} /* cmd_enumerate */
static int cmd_getdirsep(char *args)
{
printf("Directory separator is [%s].\n", PHYSFS_getDirSeparator());
Jan 28, 2010
Jan 28, 2010
336
return 1;
Jul 16, 2001
Jul 16, 2001
337
338
339
340
341
342
} /* cmd_getdirsep */
static int cmd_getlasterror(char *args)
{
printf("last error is [%s].\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
343
return 1;
Jul 16, 2001
Jul 16, 2001
344
345
346
347
348
349
350
351
} /* cmd_getlasterror */
static int cmd_getcdromdirs(char *args)
{
char **rc = PHYSFS_getCdRomDirs();
if (rc == NULL)
Apr 5, 2002
Apr 5, 2002
352
printf("Failure. Reason: [%s].\n", PHYSFS_getLastError());
Jul 16, 2001
Jul 16, 2001
353
354
355
356
357
358
359
360
361
362
363
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
364
return 1;
Jul 16, 2001
Jul 16, 2001
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
} /* 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
385
return 1;
Jul 16, 2001
Jul 16, 2001
386
387
388
389
390
391
} /* cmd_getcdromdirs */
static int cmd_getbasedir(char *args)
{
printf("Base dir is [%s].\n", PHYSFS_getBaseDir());
Jan 28, 2010
Jan 28, 2010
392
return 1;
Jul 16, 2001
Jul 16, 2001
393
394
395
396
397
398
} /* cmd_getbasedir */
static int cmd_getuserdir(char *args)
{
printf("User dir is [%s].\n", PHYSFS_getUserDir());
Jan 28, 2010
Jan 28, 2010
399
return 1;
Jul 16, 2001
Jul 16, 2001
400
401
402
} /* cmd_getuserdir */
Mar 22, 2012
Mar 22, 2012
403
404
405
406
407
408
409
410
411
412
413
414
415
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
416
417
418
static int cmd_getwritedir(char *args)
{
printf("Write dir is [%s].\n", PHYSFS_getWriteDir());
Jan 28, 2010
Jan 28, 2010
419
return 1;
Jul 16, 2001
Jul 16, 2001
420
421
422
423
424
} /* cmd_getwritedir */
static int cmd_setwritedir(char *args)
{
Apr 5, 2002
Apr 5, 2002
425
426
427
428
429
430
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
431
432
433
434
435
if (PHYSFS_setWriteDir(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
436
return 1;
Jul 16, 2001
Jul 16, 2001
437
438
439
440
441
} /* cmd_setwritedir */
static int cmd_permitsyms(char *args)
{
Apr 5, 2002
Apr 5, 2002
442
443
444
445
446
447
448
449
450
int num;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
num = atoi(args);
Jul 16, 2001
Jul 16, 2001
451
452
PHYSFS_permitSymbolicLinks(num);
printf("Symlinks are now %s.\n", num ? "permitted" : "forbidden");
Jan 28, 2010
Jan 28, 2010
453
return 1;
Jul 16, 2001
Jul 16, 2001
454
455
456
} /* cmd_permitsyms */
Dec 1, 2002
Dec 1, 2002
457
458
459
460
461
462
463
464
static int cmd_setbuffer(char *args)
{
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jan 31, 2003
Jan 31, 2003
465
do_buffer_size = (unsigned int) atoi(args);
Dec 1, 2002
Dec 1, 2002
466
467
468
469
470
471
472
473
474
475
476
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
477
return 1;
Dec 1, 2002
Dec 1, 2002
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
} /* 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
496
PHYSFS_File *f;
Dec 1, 2002
Dec 1, 2002
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
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
514
return 1;
Dec 1, 2002
Dec 1, 2002
515
516
517
} /* if */
strcpy(buf, "abcdefghijklmnopqrstuvwxyz0123456789");
Jan 31, 2003
Jan 31, 2003
518
srand((unsigned int) time(NULL));
Dec 1, 2002
Dec 1, 2002
519
520
521
522
523
for (i = 0; i < 10; i++)
{
for (j = 0; j < 10000; j++)
{
Jan 31, 2003
Jan 31, 2003
524
525
PHYSFS_uint32 right = 1 + (PHYSFS_uint32) (35.0 * rand() / (RAND_MAX + 1.0));
PHYSFS_uint32 left = 36 - right;
Aug 21, 2010
Aug 21, 2010
526
if (PHYSFS_writeBytes(f, buf, left) != left)
Dec 1, 2002
Dec 1, 2002
527
{
Aug 21, 2010
Aug 21, 2010
528
printf("PHYSFS_writeBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
529
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
530
return 1;
Dec 1, 2002
Dec 1, 2002
531
532
533
534
535
536
537
538
539
} /* 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
540
return 1;
Dec 1, 2002
Dec 1, 2002
541
542
543
} /* if */
} /* if */
Aug 21, 2010
Aug 21, 2010
544
if (PHYSFS_writeBytes(f, buf + left, right) != right)
Dec 1, 2002
Dec 1, 2002
545
{
Aug 21, 2010
Aug 21, 2010
546
printf("PHYSFS_writeBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
547
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
548
return 1;
Dec 1, 2002
Dec 1, 2002
549
550
551
552
553
554
555
556
557
} /* 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
558
return 1;
Dec 1, 2002
Dec 1, 2002
559
560
561
562
563
564
565
566
} /* if */
} /* if */
} /* for */
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
567
return 1;
Dec 1, 2002
Dec 1, 2002
568
569
570
571
572
573
574
} /* if */
} /* for */
if (!PHYSFS_close(f))
{
printf("PHYSFS_close() failed: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
575
return 1; /* oh well. */
Dec 1, 2002
Dec 1, 2002
576
577
578
579
580
581
582
} /* 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
583
return 1;
Dec 1, 2002
Dec 1, 2002
584
585
586
587
588
589
} /* if */
if (!PHYSFS_setBuffer(f, num))
{
printf("PHYSFS_setBuffer() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
590
return 1;
Dec 1, 2002
Dec 1, 2002
591
592
593
594
595
596
} /* if */
for (i = 0; i < 10; i++)
{
for (j = 0; j < 10000; j++)
{
Jan 31, 2003
Jan 31, 2003
597
598
PHYSFS_uint32 right = 1 + (PHYSFS_uint32) (35.0 * rand() / (RAND_MAX + 1.0));
PHYSFS_uint32 left = 36 - right;
Aug 21, 2010
Aug 21, 2010
599
if (PHYSFS_readBytes(f, buf2, left) != left)
Dec 1, 2002
Dec 1, 2002
600
{
Aug 21, 2010
Aug 21, 2010
601
printf("PHYSFS_readBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
602
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
603
return 1;
Dec 1, 2002
Dec 1, 2002
604
605
606
607
608
609
610
611
612
} /* 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
613
return 1;
Dec 1, 2002
Dec 1, 2002
614
615
616
} /* if */
} /* if */
Aug 21, 2010
Aug 21, 2010
617
if (PHYSFS_readBytes(f, buf2 + left, right) != right)
Dec 1, 2002
Dec 1, 2002
618
{
Aug 21, 2010
Aug 21, 2010
619
printf("PHYSFS_readBytes() failed: %s.\n", PHYSFS_getLastError());
Dec 1, 2002
Dec 1, 2002
620
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
621
return 1;
Dec 1, 2002
Dec 1, 2002
622
623
624
625
626
627
628
629
630
} /* 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
631
return 1;
Dec 1, 2002
Dec 1, 2002
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
} /* 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
648
return 1;
Dec 1, 2002
Dec 1, 2002
649
650
651
652
653
654
655
} /* if */
} /* for */
if (!PHYSFS_flush(f))
{
printf("PHYSFS_flush() failed: %s.\n", PHYSFS_getLastError());
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
656
return 1;
Dec 1, 2002
Dec 1, 2002
657
658
659
660
661
662
663
664
665
666
667
668
} /* 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
669
return 1; /* oh well. */
Dec 1, 2002
Dec 1, 2002
670
671
672
673
674
675
676
} /* if */
PHYSFS_delete("test.txt");
printf("stress test completed successfully.\n");
} /* else */
} /* else */
Jan 28, 2010
Jan 28, 2010
677
return 1;
Dec 1, 2002
Dec 1, 2002
678
679
680
} /* cmd_stressbuffer */
Jul 16, 2001
Jul 16, 2001
681
682
static int cmd_setsaneconfig(char *args)
{
Sep 26, 2001
Sep 26, 2001
683
char *org;
Jul 16, 2001
Jul 16, 2001
684
685
686
687
688
689
690
char *appName;
char *arcExt;
int inclCD;
int arcsFirst;
char *ptr = args;
/* ugly. */
Sep 26, 2001
Sep 26, 2001
691
692
org = ptr;
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; appName = ptr;
Jul 16, 2001
Jul 16, 2001
693
694
695
696
697
698
699
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
700
if (PHYSFS_setSaneConfig(org, appName, arcExt, inclCD, arcsFirst))
Jul 16, 2001
Jul 16, 2001
701
702
703
704
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
705
return 1;
Jul 16, 2001
Jul 16, 2001
706
707
708
} /* cmd_setsaneconfig */
Jul 16, 2001
Jul 16, 2001
709
710
static int cmd_mkdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
711
712
713
714
715
716
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
717
718
719
720
721
if (PHYSFS_mkdir(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
722
return 1;
Jul 16, 2001
Jul 16, 2001
723
724
725
726
727
} /* cmd_mkdir */
static int cmd_delete(char *args)
{
Apr 5, 2002
Apr 5, 2002
728
729
730
731
732
733
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
734
735
736
737
738
if (PHYSFS_delete(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jan 28, 2010
Jan 28, 2010
739
return 1;
Jul 16, 2001
Jul 16, 2001
740
741
742
743
744
} /* cmd_delete */
static int cmd_getrealdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
745
746
747
748
749
750
751
752
753
const char *rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_getRealDir(args);
Jul 16, 2001
Jul 16, 2001
754
755
756
757
758
if (rc)
printf("Found at [%s].\n", rc);
else
printf("Not found.\n");
Jan 28, 2010
Jan 28, 2010
759
return 1;
Jul 16, 2001
Jul 16, 2001
760
761
762
763
764
} /* cmd_getrealdir */
static int cmd_exists(char *args)
{
Apr 5, 2002
Apr 5, 2002
765
766
767
768
769
770
771
772
773
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_exists(args);
Jul 16, 2001
Jul 16, 2001
774
printf("File %sexists.\n", rc ? "" : "does not ");
Jan 28, 2010
Jan 28, 2010
775
return 1;
Jul 16, 2001
Jul 16, 2001
776
777
778
779
780
} /* cmd_exists */
static int cmd_isdir(char *args)
{
Sep 5, 2010
Sep 5, 2010
781
PHYSFS_Stat statbuf;
Apr 5, 2002
Apr 5, 2002
782
783
784
785
786
787
788
789
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Sep 5, 2010
Sep 5, 2010
790
791
792
rc = PHYSFS_stat(args, &statbuf);
if (rc)
rc = (statbuf.filetype == PHYSFS_FILETYPE_DIRECTORY);
Jul 16, 2001
Jul 16, 2001
793
printf("File %s a directory.\n", rc ? "is" : "is NOT");
Jan 28, 2010
Jan 28, 2010
794
return 1;
Jul 16, 2001
Jul 16, 2001
795
796
797
798
799
} /* cmd_isdir */
static int cmd_issymlink(char *args)
{
Sep 5, 2010
Sep 5, 2010
800
PHYSFS_Stat statbuf;
Apr 5, 2002
Apr 5, 2002
801
802
803
804
805
806
807
808
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Sep 5, 2010
Sep 5, 2010
809
810
811
rc = PHYSFS_stat(args, &statbuf);
if (rc)
rc = (statbuf.filetype == PHYSFS_FILETYPE_SYMLINK);
Jul 16, 2001
Jul 16, 2001
812
printf("File %s a symlink.\n", rc ? "is" : "is NOT");
Jan 28, 2010
Jan 28, 2010
813
return 1;
Jul 16, 2001
Jul 16, 2001
814
815
816
} /* cmd_issymlink */
Oct 9, 2001
Oct 9, 2001
817
818
static int cmd_cat(char *args)
{
Sep 26, 2004
Sep 26, 2004
819
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
820
821
822
823
824
825
826
827
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openRead(args);
Oct 9, 2001
Oct 9, 2001
828
829
830
831
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
Dec 1, 2002
Dec 1, 2002
832
833
834
835
836
837
838
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
839
return 1;
Dec 1, 2002
Dec 1, 2002
840
841
842
} /* if */
} /* if */
Oct 9, 2001
Oct 9, 2001
843
844
845
while (1)
{
char buffer[128];
Mar 24, 2002
Mar 24, 2002
846
847
PHYSFS_sint64 rc;
PHYSFS_sint64 i;
Aug 21, 2010
Aug 21, 2010
848
rc = PHYSFS_readBytes(f, buffer, sizeof (buffer));
Oct 9, 2001
Oct 9, 2001
849
850
851
852
853
854
855
856
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
857
858
859
860
{
printf("\n (Error condition in reading. Reason: [%s])\n\n",
PHYSFS_getLastError());
} /* if */
Oct 9, 2001
Oct 9, 2001
861
PHYSFS_close(f);
Jan 28, 2010
Jan 28, 2010
862
return 1;
Oct 9, 2001
Oct 9, 2001
863
864
865
866
} /* if */
} /* while */
} /* else */
Jan 28, 2010
Jan 28, 2010
867
return 1;
Oct 9, 2001
Oct 9, 2001
868
869
870
} /* cmd_cat */
Mar 17, 2010
Mar 17, 2010
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
#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
891
while ((bytesread = PHYSFS_readBytes(f, buffer, CRC32_BUFFERSIZE)) > 0)
Mar 17, 2010
Mar 17, 2010
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
{
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
918
919
static int cmd_filelength(char *args)
{
Sep 26, 2004
Sep 26, 2004
920
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
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
942
return 1;
Apr 5, 2002
Apr 5, 2002
943
944
945
946
947
948
} /* cmd_filelength */
#define WRITESTR "The cat sat on the mat.\n\n"
static int cmd_append(char *args)
{
Sep 26, 2004
Sep 26, 2004
949
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
950
951
952
953
954
955
956
957
958
959
960
961
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
962
963
964
965
966
967
968
969
970
971
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
972
return 1;
Dec 1, 2002
Dec 1, 2002
973
974
975
976
} /* if */
} /* if */
bw = strlen(WRITESTR);
Aug 21, 2010
Aug 21, 2010
977
rc = PHYSFS_writeBytes(f, WRITESTR, bw);
Apr 5, 2002
Apr 5, 2002
978
979
if (rc != bw)
{
Apr 5, 2002
Apr 5, 2002
980
981
printf("Wrote (%d) of (%d) bytes. Reason: [%s].\n",
(int) rc, (int) bw, PHYSFS_getLastError());
Apr 5, 2002
Apr 5, 2002
982
983
984
985
986
987
988
989
990
} /* if */
else
{
printf("Successful.\n");
} /* else */
PHYSFS_close(f);
} /* else */
Jan 28, 2010
Jan 28, 2010
991
return 1;
Apr 5, 2002
Apr 5, 2002
992
993
994
995
996
} /* cmd_append */
static int cmd_write(char *args)
{
Sep 26, 2004
Sep 26, 2004
997
PHYSFS_File *f;
Apr 5, 2002
Apr 5, 2002
998
999
1000
if (*args == '\"')
{