Skip to content

Latest commit

 

History

History
1603 lines (1317 loc) · 40.4 KB

test_physfs.c

File metadata and controls

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