Skip to content

Latest commit

 

History

History
868 lines (694 loc) · 19.6 KB

test_physfs.c

File metadata and controls

868 lines (694 loc) · 19.6 KB
 
Jul 16, 2001
Jul 16, 2001
1
2
3
4
5
6
7
8
/**
* Test program for PhysicsFS. May only work on Unix.
*
* Please see the file LICENSE in the source's root directory.
*
* 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
Apr 2, 2002
Apr 2, 2002
18
#if ((!defined WIN32) && (!defined __MACOS__))
Aug 23, 2001
Aug 23, 2001
19
20
21
22
#define HAVE_READLINE
#endif
#if (defined HAVE_READLINE)
Jul 16, 2001
Jul 16, 2001
23
#include <unistd.h>
Jul 16, 2001
Jul 16, 2001
24
25
#include <readline.h>
#include <history.h>
Aug 23, 2001
Aug 23, 2001
26
27
#endif
28
29
30
31
#include "physfs.h"
#define TEST_VERSION_MAJOR 0
#define TEST_VERSION_MINOR 1
Apr 5, 2002
Apr 5, 2002
32
#define TEST_VERSION_PATCH 1
33
Jul 16, 2001
Jul 16, 2001
34
35
static FILE *history_file = NULL;
Jul 16, 2001
Jul 16, 2001
36
static void output_versions(void)
37
38
39
40
41
42
43
44
45
46
47
{
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
48
49
(int) compiled.major, (int) compiled.minor, (int) compiled.patch,
(int) linked.major, (int) linked.minor, (int) linked.patch);
50
51
52
} /* output_versions */
Jul 16, 2001
Jul 16, 2001
53
static void output_archivers(void)
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
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
70
71
printf("\n");
72
73
74
} /* output_archivers */
Jul 16, 2001
Jul 16, 2001
75
76
77
78
79
80
81
static int cmd_quit(char *args)
{
return(0);
} /* cmd_quit */
static int cmd_init(char *args)
Jul 16, 2001
Jul 16, 2001
82
{
Apr 5, 2002
Apr 5, 2002
83
84
85
86
87
88
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
89
90
91
92
93
if (PHYSFS_init(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
Jul 16, 2001
Jul 16, 2001
94
return(1);
Jul 16, 2001
Jul 16, 2001
95
} /* cmd_init */
Jul 16, 2001
Jul 16, 2001
96
97
Jul 16, 2001
Jul 16, 2001
98
static int cmd_deinit(char *args)
Jul 16, 2001
Jul 16, 2001
99
{
Jul 16, 2001
Jul 16, 2001
100
101
102
103
104
105
106
107
108
109
110
if (PHYSFS_deinit())
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_deinit */
static int cmd_addarchive(char *args)
{
Apr 4, 2002
Apr 4, 2002
111
char *ptr = strrchr(args, ' ');
Jul 16, 2001
Jul 16, 2001
112
113
114
int appending = atoi(ptr + 1);
*ptr = '\0';
Apr 4, 2002
Apr 4, 2002
115
116
117
118
if (*args == '\"')
{
args++;
*(ptr - 1) = '\0';
Apr 5, 2002
Apr 5, 2002
119
} /* if */
Apr 4, 2002
Apr 4, 2002
120
121
122
/*printf("[%s], [%d]\n", args, appending);*/
Jul 16, 2001
Jul 16, 2001
123
124
125
126
127
128
129
130
131
132
133
if (PHYSFS_addToSearchPath(args, appending))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_addarchive */
static int cmd_removearchive(char *args)
{
Apr 5, 2002
Apr 5, 2002
134
135
136
137
138
139
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
140
141
142
143
144
145
146
147
148
149
150
if (PHYSFS_removeFromSearchPath(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_removearchive */
static int cmd_enumerate(char *args)
{
Apr 5, 2002
Apr 5, 2002
151
152
153
154
155
156
157
158
159
char **rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_enumerateFiles(args);
Jul 16, 2001
Jul 16, 2001
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
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 */
return(1);
} /* cmd_enumerate */
static int cmd_getdirsep(char *args)
{
printf("Directory separator is [%s].\n", PHYSFS_getDirSeparator());
return(1);
} /* cmd_getdirsep */
static int cmd_getlasterror(char *args)
{
printf("last error is [%s].\n", PHYSFS_getLastError());
return(1);
} /* cmd_getlasterror */
static int cmd_getcdromdirs(char *args)
{
char **rc = PHYSFS_getCdRomDirs();
if (rc == NULL)
Apr 5, 2002
Apr 5, 2002
197
printf("Failure. Reason: [%s].\n", PHYSFS_getLastError());
Jul 16, 2001
Jul 16, 2001
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
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 */
return(1);
} /* 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 */
return(1);
} /* cmd_getcdromdirs */
static int cmd_getbasedir(char *args)
{
printf("Base dir is [%s].\n", PHYSFS_getBaseDir());
return(1);
} /* cmd_getbasedir */
static int cmd_getuserdir(char *args)
{
printf("User dir is [%s].\n", PHYSFS_getUserDir());
return(1);
} /* cmd_getuserdir */
static int cmd_getwritedir(char *args)
{
printf("Write dir is [%s].\n", PHYSFS_getWriteDir());
return(1);
} /* cmd_getwritedir */
static int cmd_setwritedir(char *args)
{
Apr 5, 2002
Apr 5, 2002
257
258
259
260
261
262
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
263
264
265
266
267
268
269
270
271
272
273
if (PHYSFS_setWriteDir(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_setwritedir */
static int cmd_permitsyms(char *args)
{
Apr 5, 2002
Apr 5, 2002
274
275
276
277
278
279
280
281
282
int num;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
num = atoi(args);
Jul 16, 2001
Jul 16, 2001
283
284
285
286
287
288
289
290
PHYSFS_permitSymbolicLinks(num);
printf("Symlinks are now %s.\n", num ? "permitted" : "forbidden");
return(1);
} /* cmd_permitsyms */
static int cmd_setsaneconfig(char *args)
{
Sep 26, 2001
Sep 26, 2001
291
char *org;
Jul 16, 2001
Jul 16, 2001
292
293
294
295
296
297
298
char *appName;
char *arcExt;
int inclCD;
int arcsFirst;
char *ptr = args;
/* ugly. */
Sep 26, 2001
Sep 26, 2001
299
300
org = ptr;
ptr = strchr(ptr, ' '); *ptr = '\0'; ptr++; appName = ptr;
Jul 16, 2001
Jul 16, 2001
301
302
303
304
305
306
307
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
308
if (PHYSFS_setSaneConfig(org, appName, arcExt, inclCD, arcsFirst))
Jul 16, 2001
Jul 16, 2001
309
310
311
312
313
314
315
316
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_setsaneconfig */
Jul 16, 2001
Jul 16, 2001
317
318
static int cmd_mkdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
319
320
321
322
323
324
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
325
326
327
328
329
330
331
332
333
334
335
if (PHYSFS_mkdir(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_mkdir */
static int cmd_delete(char *args)
{
Apr 5, 2002
Apr 5, 2002
336
337
338
339
340
341
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
Jul 16, 2001
Jul 16, 2001
342
343
344
345
346
347
348
349
350
351
352
if (PHYSFS_delete(args))
printf("Successful.\n");
else
printf("Failure. reason: %s.\n", PHYSFS_getLastError());
return(1);
} /* cmd_delete */
static int cmd_getrealdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
353
354
355
356
357
358
359
360
361
const char *rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_getRealDir(args);
Jul 16, 2001
Jul 16, 2001
362
363
364
365
366
367
368
369
370
371
372
if (rc)
printf("Found at [%s].\n", rc);
else
printf("Not found.\n");
return(1);
} /* cmd_getrealdir */
static int cmd_exists(char *args)
{
Apr 5, 2002
Apr 5, 2002
373
374
375
376
377
378
379
380
381
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_exists(args);
Jul 16, 2001
Jul 16, 2001
382
383
384
385
386
387
388
printf("File %sexists.\n", rc ? "" : "does not ");
return(1);
} /* cmd_exists */
static int cmd_isdir(char *args)
{
Apr 5, 2002
Apr 5, 2002
389
390
391
392
393
394
395
396
397
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_isDirectory(args);
Jul 16, 2001
Jul 16, 2001
398
399
400
401
402
403
404
printf("File %s a directory.\n", rc ? "is" : "is NOT");
return(1);
} /* cmd_isdir */
static int cmd_issymlink(char *args)
{
Apr 5, 2002
Apr 5, 2002
405
406
407
408
409
410
411
412
413
int rc;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
rc = PHYSFS_isSymbolicLink(args);
Jul 16, 2001
Jul 16, 2001
414
415
416
417
418
printf("File %s a symlink.\n", rc ? "is" : "is NOT");
return(1);
} /* cmd_issymlink */
Oct 9, 2001
Oct 9, 2001
419
420
static int cmd_cat(char *args)
{
Apr 5, 2002
Apr 5, 2002
421
422
423
424
425
426
427
428
429
PHYSFS_file *f;
if (*args == '\"')
{
args++;
args[strlen(args) - 1] = '\0';
} /* if */
f = PHYSFS_openRead(args);
Oct 9, 2001
Oct 9, 2001
430
431
432
433
434
435
436
if (f == NULL)
printf("failed to open. Reason: [%s].\n", PHYSFS_getLastError());
else
{
while (1)
{
char buffer[128];
Mar 24, 2002
Mar 24, 2002
437
438
PHYSFS_sint64 rc;
PHYSFS_sint64 i;
Oct 9, 2001
Oct 9, 2001
439
440
441
442
443
444
445
446
447
rc = PHYSFS_read(f, buffer, 1, sizeof (buffer));
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
448
449
450
451
{
printf("\n (Error condition in reading. Reason: [%s])\n\n",
PHYSFS_getLastError());
} /* if */
Oct 9, 2001
Oct 9, 2001
452
453
454
455
456
457
458
459
460
461
PHYSFS_close(f);
return(1);
} /* if */
} /* while */
} /* else */
return(1);
} /* cmd_cat */
Apr 5, 2002
Apr 5, 2002
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
static int cmd_filelength(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_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 */
return(1);
} /* cmd_filelength */
#define WRITESTR "The cat sat on the mat.\n\n"
static int cmd_append(char *args)
{
PHYSFS_file *f;
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
{
size_t bw = strlen(WRITESTR);
PHYSFS_sint64 rc = PHYSFS_write(f, WRITESTR, 1, bw);
if (rc != bw)
{
printf("Wrote (%d) of (%d) bytes. Reason: [%s].\n", rc, bw,
PHYSFS_getLastError());
} /* if */
else
{
printf("Successful.\n");
} /* else */
PHYSFS_close(f);
} /* else */
return(1);
} /* cmd_append */
static int cmd_write(char *args)
{
PHYSFS_file *f;
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
{
size_t bw = strlen(WRITESTR);
PHYSFS_sint64 rc = PHYSFS_write(f, WRITESTR, 1, bw);
if (rc != bw)
{
printf("Wrote (%d) of (%d) bytes. Reason: [%s].\n", rc, bw,
PHYSFS_getLastError());
} /* if */
else
{
printf("Successful.\n");
} /* else */
PHYSFS_close(f);
} /* else */
return(1);
} /* cmd_write */
Jul 16, 2001
Jul 16, 2001
560
561
562
563
/* must have spaces trimmed prior to this call. */
static int count_args(const char *str)
{
int retval = 0;
Apr 4, 2002
Apr 4, 2002
564
int in_quotes = 0;
Jul 16, 2001
Jul 16, 2001
565
566
567
568
569
if (str != NULL)
{
for (; *str != '\0'; str++)
{
Apr 4, 2002
Apr 4, 2002
570
571
572
if (*str == '\"')
in_quotes = !in_quotes;
else if ((*str == ' ') && (!in_quotes))
Jul 16, 2001
Jul 16, 2001
573
574
575
576
577
578
579
retval++;
} /* for */
retval++;
} /* if */
return(retval);
} /* count_args */
Jul 16, 2001
Jul 16, 2001
580
581
Jul 16, 2001
Jul 16, 2001
582
583
static int cmd_help(char *args);
Jul 16, 2001
Jul 16, 2001
584
585
586
typedef struct
{
const char *cmd;
Jul 16, 2001
Jul 16, 2001
587
588
589
int (*func)(char *args);
int argcount;
const char *usage;
Jul 16, 2001
Jul 16, 2001
590
591
} command_info;
Jul 16, 2001
Jul 16, 2001
592
static const command_info commands[] =
Jul 16, 2001
Jul 16, 2001
593
{
Jul 16, 2001
Jul 16, 2001
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
{ "quit", cmd_quit, 0, NULL },
{ "q", cmd_quit, 0, NULL },
{ "help", cmd_help, 0, NULL },
{ "init", cmd_init, 1, "<argv0>" },
{ "deinit", cmd_deinit, 0, NULL },
{ "addarchive", cmd_addarchive, 2, "<archiveLocation> <append>" },
{ "removearchive", cmd_removearchive, 1, "<archiveLocation>" },
{ "enumerate", cmd_enumerate, 1, "<dirToEnumerate>" },
{ "getlasterror", cmd_getlasterror, 0, NULL },
{ "getdirsep", cmd_getdirsep, 0, NULL },
{ "getcdromdirs", cmd_getcdromdirs, 0, NULL },
{ "getsearchpath", cmd_getsearchpath, 0, NULL },
{ "getbasedir", cmd_getbasedir, 0, NULL },
{ "getuserdir", cmd_getuserdir, 0, NULL },
{ "getwritedir", cmd_getwritedir, 0, NULL },
{ "setwritedir", cmd_setwritedir, 1, "<newWriteDir>" },
{ "permitsymlinks", cmd_permitsyms, 1, "<1or0>" },
{ "setsaneconfig", cmd_setsaneconfig, 4, "<appName> <arcExt> <includeCdRoms> <archivesFirst>" },
Jul 16, 2001
Jul 16, 2001
612
613
614
615
616
617
{ "mkdir", cmd_mkdir, 1, "<dirToMk>" },
{ "delete", cmd_delete, 1, "<dirToDelete>" },
{ "getrealdir", cmd_getrealdir, 1, "<fileToFind>" },
{ "exists", cmd_exists, 1, "<fileToCheck>" },
{ "isdir", cmd_isdir, 1, "<fileToCheck>" },
{ "issymlink", cmd_issymlink, 1, "<fileToCheck>" },
Oct 9, 2001
Oct 9, 2001
618
{ "cat", cmd_cat, 1, "<fileToCat>" },
Apr 5, 2002
Apr 5, 2002
619
620
621
{ "filelength", cmd_filelength, 1, "<fileToCheck>" },
{ "append", cmd_append, 1, "<fileToAppend>" },
{ "write", cmd_write, 1, "<fileToCreateOrTrash>" },
Jul 16, 2001
Jul 16, 2001
622
{ NULL, NULL, -1, NULL }
Jul 16, 2001
Jul 16, 2001
623
624
};
Jul 16, 2001
Jul 16, 2001
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
static void output_usage(const char *intro, const command_info *cmdinfo)
{
if (cmdinfo->argcount == 0)
printf("%s \"%s\" (no arguments)\n", intro, cmdinfo->cmd);
else
printf("%s \"%s %s\"\n", intro, cmdinfo->cmd, cmdinfo->usage);
} /* output_usage */
static int cmd_help(char *args)
{
const command_info *i;
printf("Commands:\n");
for (i = commands; i->cmd != NULL; i++)
output_usage(" -", i);
return(1);
} /* output_cmd_help */
static void trim_command(const char *orig, char *copy)
{
const char *i;
char *writeptr = copy;
int spacecount = 0;
int have_first = 0;
for (i = orig; *i != '\0'; i++)
{
if (*i == ' ')
{
if ((*(i + 1) != ' ') && (*(i + 1) != '\0'))
{
if ((have_first) && (!spacecount))
{
spacecount++;
*writeptr = ' ';
writeptr++;
} /* if */
} /* if */
} /* if */
else
{
have_first = 1;
spacecount = 0;
*writeptr = *i;
writeptr++;
} /* else */
} /* for */
*writeptr = '\0';
/*
printf("\n command is [%s].\n", copy);
*/
} /* trim_command */
Jul 16, 2001
Jul 16, 2001
683
684
685
static int process_command(char *complete_cmd)
{
Jul 16, 2001
Jul 16, 2001
686
687
688
const command_info *i;
char *cmd_copy = malloc(strlen(complete_cmd) + 1);
char *args;
Jul 16, 2001
Jul 16, 2001
689
690
int rc = 1;
Jul 16, 2001
Jul 16, 2001
691
if (cmd_copy == NULL)
Jul 16, 2001
Jul 16, 2001
692
{
Jul 16, 2001
Jul 16, 2001
693
694
printf("\n\n\nOUT OF MEMORY!\n\n\n");
return(0);
Jul 16, 2001
Jul 16, 2001
695
} /* if */
Jul 16, 2001
Jul 16, 2001
696
697
698
699
trim_command(complete_cmd, cmd_copy);
args = strchr(cmd_copy, ' ');
if (args != NULL)
Jul 16, 2001
Jul 16, 2001
700
{
Jul 16, 2001
Jul 16, 2001
701
702
*args = '\0';
args++;
Jul 16, 2001
Jul 16, 2001
703
704
} /* else */
Jul 16, 2001
Jul 16, 2001
705
if (cmd_copy[0] != '\0')
Jul 16, 2001
Jul 16, 2001
706
{
Jul 16, 2001
Jul 16, 2001
707
for (i = commands; i->cmd != NULL; i++)
Jul 16, 2001
Jul 16, 2001
708
{
Jul 16, 2001
Jul 16, 2001
709
710
711
712
713
714
715
716
717
if (strcmp(i->cmd, cmd_copy) == 0)
{
if ((i->argcount >= 0) && (count_args(args) != i->argcount))
output_usage("usage:", i);
else
rc = i->func(args);
break;
} /* if */
} /* for */
Jul 16, 2001
Jul 16, 2001
718
Jul 16, 2001
Jul 16, 2001
719
720
if (i->cmd == NULL)
printf("Unknown command. Enter \"help\" for instructions.\n");
Jul 16, 2001
Jul 16, 2001
721
Aug 23, 2001
Aug 23, 2001
722
#if (defined HAVE_READLINE)
Jul 16, 2001
Jul 16, 2001
723
724
725
726
727
728
add_history(complete_cmd);
if (history_file)
{
fprintf(history_file, "%s\n", complete_cmd);
fflush(history_file);
} /* if */
Aug 23, 2001
Aug 23, 2001
729
730
#endif
Jul 16, 2001
Jul 16, 2001
731
732
733
} /* if */
free(cmd_copy);
Jul 16, 2001
Jul 16, 2001
734
735
736
737
return(rc);
} /* process_command */
Jul 16, 2001
Jul 16, 2001
738
739
static void open_history_file(void)
{
Aug 23, 2001
Aug 23, 2001
740
#if (defined HAVE_READLINE)
Jul 16, 2001
Jul 16, 2001
741
#if 0
Jul 16, 2001
Jul 16, 2001
742
743
744
const char *envr = getenv("TESTPHYSFS_HISTORY");
if (!envr)
return;
Jul 16, 2001
Jul 16, 2001
745
746
747
748
749
#else
char envr[256];
strcpy(envr, PHYSFS_getUserDir());
strcat(envr, ".testphys_history");
#endif
Jul 16, 2001
Jul 16, 2001
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
if (access(envr, F_OK) == 0)
{
char buf[512];
FILE *f = fopen(envr, "r");
if (!f)
{
printf("\n\n"
"Could not open history file [%s] for reading!\n"
" Will not have past history available.\n\n",
envr);
return;
} /* if */
do
{
fgets(buf, sizeof (buf), f);
if (buf[strlen(buf) - 1] == '\n')
buf[strlen(buf) - 1] = '\0';
add_history(buf);
} while (!feof(f));
fclose(f);
} /* if */
history_file = fopen(envr, "ab");
if (!history_file)
{
printf("\n\n"
"Could not open history file [%s] for appending!\n"
" Will not be able to record this session's history.\n\n",
envr);
} /* if */
Aug 23, 2001
Aug 23, 2001
783
#endif
Jul 16, 2001
Jul 16, 2001
784
785
786
} /* open_history_file */
787
788
int main(int argc, char **argv)
{
Jul 16, 2001
Jul 16, 2001
789
790
791
char *buf = NULL;
int rc = 0;
Apr 3, 2002
Apr 3, 2002
792
793
794
795
796
797
798
799
#if (defined __MWERKS__)
extern tSIOUXSettings SIOUXSettings;
SIOUXSettings.asktosaveonclose = 0;
SIOUXSettings.autocloseonquit = 1;
SIOUXSettings.rows = 40;
SIOUXSettings.columns = 120;
#endif
Jul 16, 2001
Jul 16, 2001
800
801
printf("\n");
802
803
if (!PHYSFS_init(argv[0]))
{
Jul 16, 2001
Jul 16, 2001
804
printf("PHYSFS_init() failed!\n reason: %s.\n", PHYSFS_getLastError());
805
806
807
808
809
810
return(1);
} /* if */
output_versions();
output_archivers();
Jul 16, 2001
Jul 16, 2001
811
812
open_history_file();
Jul 16, 2001
Jul 16, 2001
813
814
815
816
printf("Enter commands. Enter \"help\" for instructions.\n");
do
{
Aug 23, 2001
Aug 23, 2001
817
#if (defined HAVE_READLINE)
Jul 16, 2001
Jul 16, 2001
818
buf = readline("> ");
Aug 23, 2001
Aug 23, 2001
819
#else
Aug 23, 2001
Aug 23, 2001
820
int i;
Aug 23, 2001
Aug 23, 2001
821
822
buf = malloc(512);
memset(buf, '\0', 512);
Aug 23, 2001
Aug 23, 2001
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
printf("> ");
for (i = 0; i < 511; i++)
{
int ch = fgetc(stdin);
if (ch == EOF)
{
strcpy(buf, "quit");
break;
} /* if */
else if ((ch == '\n') || (ch == '\r'))
{
buf[i] = '\0';
break;
} /* else if */
else if (ch == '\b')
{
if (i > 0)
i--;
} /* else if */
else
{
buf[i] = (char) ch;
} /* else */
} /* for */
Aug 23, 2001
Aug 23, 2001
847
#endif
Aug 23, 2001
Aug 23, 2001
848
Jul 16, 2001
Jul 16, 2001
849
850
851
852
rc = process_command(buf);
free(buf);
} while (rc);
Jul 16, 2001
Jul 16, 2001
853
854
855
856
857
858
859
860
861
862
863
if (!PHYSFS_deinit())
printf("PHYSFS_deinit() failed!\n reason: %s.\n", PHYSFS_getLastError());
if (history_file)
fclose(history_file);
/*
printf("\n\ntest_physfs written by ryan c. gordon.\n");
printf(" it makes you shoot teh railgun bettar.\n");
*/
864
865
866
867
return(0);
} /* main */
/* end of test_physfs.c ... */