-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsiFilesys.c
1280 lines (1172 loc) · 38.2 KB
/
jsiFilesys.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
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
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
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
924
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef JSI_AMALGAMATION
#include "jsiInt.h"
#endif
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <assert.h>
#include <dirent.h>
#ifndef __WIN32
#include <pwd.h>
#include <unistd.h>
#else
#include <windef.h>
#endif
#include <limits.h>
static Jsi_Filesystem *cwdFsPtr = NULL;
static Jsi_DString pwdStr = {};
static char *jsi_pwd = NULL;
#ifndef JSI_LITE_ONLY
#define _JSI_GETFP(ch) (ch && ch->fp ? ch->fp : stdin)
static Jsi_CmdSpec filesysCmds[];
static char* jsi_FSRealPathProc(Jsi_Interp *interp, Jsi_Value *path, char *newPath);
typedef struct FileObj {
#ifdef JSI_HAS_SIG
jsi_Sig sig;
#endif
Jsi_Interp *interp;
Jsi_Channel chan;
Jsi_Value *fname;
char *filename;
char *mode;
Jsi_Obj *fobj;
int objId;
} FileObj;
static void fileObjErase(FileObj *fo);
static int fileObjFree(Jsi_Interp *interp, void *data);
static int fileObjIsTrue(void *data);
static int fileObjEqual(void *data1, void *data2);
static Jsi_UserObjReg fileobject = {
"File",
filesysCmds,
fileObjFree,
fileObjIsTrue,
fileObjEqual
};
#ifdef __WIN32
char *get_current_dir_name() {
static char *buf[MAX_PATH];
getcwd(buf, sizeof(buf));
return buf;
}
#endif
static const char *SSS(Jsi_Interp *interp, Jsi_Value *s) {
const char *cp = Jsi_ValueString(interp, s, 0);
return cp ? cp : "";
}
static const char *jsi_TildePath(Jsi_Interp *interp, const char* path, Jsi_DString *dStr) {
if (*path != '~')
return path;
const char *homedir = NULL;
#ifdef __WIN32
homedir = getenv("USERPROFILE"); /* TODO: windows home dir. */
if (!homedir)
homedir = "/";
#else
/* TODO: use getpwuid_r */
struct passwd *pw = getpwuid(getuid());
homedir = pw->pw_dir;
#endif
if (!homedir)
return path;
Jsi_DSAppend(dStr, homedir, path[1] == '/' ? "" : "/", path+1, NULL);
return Jsi_DSValue(dStr);
}
int jsi_FSScandirProc(Jsi_Interp *interp, Jsi_Value *path, Jsi_Dirent ***namelist,
int (*filter)(const Jsi_Dirent *), int (*compar)(const Jsi_Dirent **, const Jsi_Dirent**))
{
const char *dirname = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*dirname == '~')
dirname = jsi_TildePath(interp, dirname, &dStr);
int rc = scandir(dirname, namelist, filter, compar);
Jsi_DSFree(&dStr);
return rc;
}
static int jsi_FSCreateDirectoryProc(Jsi_Interp *interp, Jsi_Value* path) {
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
int rc;
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
#ifdef __WIN32
rc = mkdir(pathPtr);
#else
rc = mkdir(pathPtr, 0666);
#endif
Jsi_DSFree(&dStr);
return rc;
}
static int jsi_FSRenameProc(Jsi_Interp *interp, Jsi_Value *src, Jsi_Value *dest) {
const char *zSrc = Jsi_ValueToString(interp, src);
const char *zDest = Jsi_ValueToString(interp, dest);
Jsi_DString dStr = {}, eStr = {};
if (*zSrc == '~')
zSrc = jsi_TildePath(interp, zSrc, &dStr);
if (*zDest == '~')
zDest = jsi_TildePath(interp, zDest, &eStr);
int rc = rename(zSrc, zDest);
Jsi_DSFree(&dStr);
Jsi_DSFree(&eStr);
return rc;
}
static Jsi_Value * jsi_FSListVolumesProc(Jsi_Interp *interp) {return 0;}
static int jsi_FSRemoveProc(Jsi_Interp *interp, Jsi_Value* path, int flags) {
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
int rc = remove(pathPtr);
Jsi_DSFree(&dStr);
return rc;
}
static int jsi_FSPathInFilesystemProc(Jsi_Interp *interp, Jsi_Value* path,void **clientDataPtr) {return 1;}
static int jsi_FSAccessProc(Jsi_Interp *interp, Jsi_Value* path, int mode) {
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
int rc = access(pathPtr, mode);
Jsi_DSFree(&dStr);
return rc;
}
static int jsi_FSChmodProc(Jsi_Interp *interp, Jsi_Value* path, int mode) {
#ifdef __WIN32
return -1;
#else
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
int rc = chmod(pathPtr, mode);
Jsi_DSFree(&dStr);
return rc;
#endif
}
static int jsi_FSStatProc(Jsi_Interp *interp, Jsi_Value* path, Jsi_StatBuf *buf) {
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
int rc = stat(pathPtr, buf);
Jsi_DSFree(&dStr);
return rc;
}
static int jsi_FSLstatProc(Jsi_Interp *interp, Jsi_Value* path, Jsi_StatBuf *buf) {
#ifdef __WIN32
return jsi_FSStatProc(interp, path, buf);
#else
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
int rc = lstat(pathPtr, buf);
Jsi_DSFree(&dStr);
return rc;
#endif
}
static int jsi_FSFlushProc(Jsi_Channel chan) { return fflush(_JSI_GETFP(chan));}
static int jsi_FSTellProc(Jsi_Channel chan) { return ftell(_JSI_GETFP(chan));}
static int jsi_FSEofProc(Jsi_Channel chan) { return feof(_JSI_GETFP(chan));}
static int jsi_FSTruncateProc(Jsi_Channel chan, unsigned int len) { return ftruncate(fileno(_JSI_GETFP(chan)), len);}
static int jsi_FSRewindProc(Jsi_Channel chan) { rewind(_JSI_GETFP(chan)); return 0;}
static int jsi_FSCloseProc(Jsi_Channel chan) { return fclose(_JSI_GETFP(chan));}
static int jsi_FSSeekProc(Jsi_Channel chan, Jsi_Wide offset, int mode) { return fseek(_JSI_GETFP(chan), offset, mode);}
static int jsi_FSWriteProc(Jsi_Channel chan, const char *buf, int size) {
Jsi_Interp *interp = chan->interp;
Jsi_MutexUnlock(interp, interp->Mutex);
int rc = fwrite(buf, 1, size, _JSI_GETFP(chan));
if (Jsi_MutexLock(interp, interp->Mutex) != JSI_OK) {
Jsi_LogBug("could not get mutex in write");
}
return rc;
}
static int jsi_FSReadProc(Jsi_Channel chan, char *buf, int size) {
Jsi_Interp *interp = chan->interp;
Jsi_MutexUnlock(interp, interp->Mutex);
int rc = fread(buf, 1, size, _JSI_GETFP(chan));
if (Jsi_MutexLock(interp, interp->Mutex) != JSI_OK) {
Jsi_LogBug("could not get mutex in read");
}
return rc;
}
#ifdef __WIN32
#define jsi_FSLinkProc NULL
#define jsi_FSReadlinkProc NULL
#else
static int jsi_FSLinkProc(Jsi_Interp *interp, Jsi_Value* path, Jsi_Value *toPath, int linkType) {
const char *pathPtr = Jsi_ValueToString(interp, path);
const char *toPtr = Jsi_ValueToString(interp, toPath);
Jsi_DString dStr = {}, eStr = {};
int rc;
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
if (*toPtr == '~')
toPtr = jsi_TildePath(interp, toPtr, &eStr);
if (linkType != 0)
rc = link(pathPtr, toPtr);
else
rc = symlink(pathPtr, toPtr);
Jsi_DSFree(&dStr);
Jsi_DSFree(&eStr);
return rc;
}
static int jsi_FSReadlinkProc(Jsi_Interp *interp, Jsi_Value *path, char *buf, int size) {
const char *pathPtr = Jsi_ValueToString(interp, path);
Jsi_DString dStr = {};
if (*pathPtr == '~')
pathPtr = jsi_TildePath(interp, pathPtr, &dStr);
int rc = readlink(pathPtr, buf, size);
Jsi_DSFree(&dStr);
return rc;
}
#endif
static int jsi_FSGetcProc(Jsi_Channel chan) {
return fgetc(_JSI_GETFP(chan));
}
static int jsi_FSUngetcProc(Jsi_Channel chan, int ch) {
return ungetc(ch, _JSI_GETFP(chan));
}
static char * jsi_FSGetsProc(Jsi_Channel chan, char *s, int size) {
return fgets(s, size, _JSI_GETFP(chan));
}
/* Not used as Jsi_Open already handles native. */
Jsi_Channel jsi_FSOpenProc(Jsi_Interp *interp, Jsi_Value *file, const char *modeString)
{
return Jsi_Open(interp, file, modeString);
}
typedef struct FSList {
Jsi_Filesystem* fsPtr;
void *data;
struct FSList *next;
} FSList;
static FSList *jsiFSList = NULL;
static Jsi_Chan StdChans[3];
static Jsi_Filesystem jsiFilesystem = {
.typeName="native",
.structureLength=sizeof(Jsi_Filesystem),
.version=1,
.pathInFilesystemProc=jsi_FSPathInFilesystemProc,
.realpathProc=jsi_FSRealPathProc,
.statProc=jsi_FSStatProc,
.lstatProc=jsi_FSLstatProc,
.accessProc=jsi_FSAccessProc,
.chmodProc=jsi_FSChmodProc,
.openProc=jsi_FSOpenProc,
.scandirProc=jsi_FSScandirProc,
.readProc=jsi_FSReadProc,
.writeProc=jsi_FSWriteProc,
.getsProc=jsi_FSGetsProc,
.getcProc=jsi_FSGetcProc,
.ungetcProc=jsi_FSUngetcProc,
.flushProc=jsi_FSFlushProc,
.seekProc=jsi_FSSeekProc,
.tellProc=jsi_FSTellProc,
.eofProc=jsi_FSEofProc,
.truncateProc=jsi_FSTruncateProc,
.rewindProc=jsi_FSRewindProc,
.closeProc=jsi_FSCloseProc,
.linkProc=jsi_FSLinkProc,
.readlinkProc=jsi_FSReadlinkProc,
.listVolumesProc=jsi_FSListVolumesProc,
.createDirectoryProc=jsi_FSCreateDirectoryProc,
.removeProc=jsi_FSRemoveProc,
.renameProc=jsi_FSRenameProc,
};
Jsi_Channel Jsi_GetStdChannel(Jsi_Interp *interp, int id) {
if (id<0 || id>2)
return NULL;
return StdChans+id;
}
int Jsi_FSRegister(Jsi_Filesystem *fsPtr, void *data) {
FSList *fsl = Jsi_Calloc(1, sizeof(*fsl));
fsl->fsPtr = fsPtr;
fsl->data = data;
fsl->next = jsiFSList;
jsiFSList = fsl;
return JSI_OK;
}
int Jsi_FSUnregister(Jsi_Filesystem *fsPtr) {
FSList *fsl = jsiFSList, *flast = NULL;
while (fsl) {
if (fsl->fsPtr == fsPtr) {
if (flast)
flast->next = fsl->next;
else
jsiFSList = fsl->next;
Jsi_Free(fsl);
}
flast = fsl;
fsl = fsl->next;
}
return JSI_OK;
}
Jsi_Filesystem* Jsi_FilesystemForPath(Jsi_Interp *interp, Jsi_Value* path, void**clientDataPtr) {
FSList *fsl = jsiFSList;
if (!fsl) return NULL;
clientDataPtr = NULL;
const char *pathStr = Jsi_ValueToString(interp, path);
if (pathStr[0] == '~')
return &jsiFilesystem;
if (pathStr[0] == '.' && pathStr[1] == 0)
return (cwdFsPtr ? cwdFsPtr : &jsiFilesystem);
while (1) {
if (fsl->fsPtr->pathInFilesystemProc && fsl->fsPtr->pathInFilesystemProc(interp, path, clientDataPtr))
break;
if (!fsl->next)
break;
fsl = fsl->next;
}
return (fsl ? fsl->fsPtr : &jsiFilesystem);
}
int Jsi_Readlink(Jsi_Interp *interp, Jsi_Value* path, char *ret, int len) {
#ifdef __WIN32
return -1;
#else
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->readlinkProc) return -1;
return fsPtr->readlinkProc(interp, path, ret, len);
#endif
}
int Jsi_Stat(Jsi_Interp *interp, Jsi_Value* path, Jsi_StatBuf *buf) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->statProc) return -1;
return fsPtr->statProc(interp, path, buf);
}
int Jsi_Link(Jsi_Interp *interp, Jsi_Value* src, Jsi_Value *dest, int typ) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, src, &data);
if (fsPtr == NULL || !fsPtr->linkProc) return -1;
return fsPtr->linkProc(interp, src, dest, typ);
}
int Jsi_Lstat(Jsi_Interp *interp, Jsi_Value* path, Jsi_StatBuf *buf) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->lstatProc) return -1;
return fsPtr->lstatProc(interp, path, buf);
}
int Jsi_Chmod(Jsi_Interp *interp, Jsi_Value* path, int mode) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->chmodProc) return -1;
return fsPtr->chmodProc(interp, path, mode);
}
int Jsi_Access(Jsi_Interp *interp, Jsi_Value* path, int mode) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->accessProc) return -1;
return fsPtr->accessProc(interp, path, mode);
}
int Jsi_Remove(Jsi_Interp *interp, Jsi_Value* path, int flags) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->removeProc) return -1;
return fsPtr->removeProc(interp, path, flags);
}
int Jsi_Rename(Jsi_Interp *interp, Jsi_Value *src, Jsi_Value *dst) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, src, &data);
if (fsPtr != Jsi_FilesystemForPath(interp, src, &data)) return -1;
if (fsPtr == NULL || !fsPtr->renameProc) return -1;
return fsPtr->renameProc(interp, src,dst);
}
int Jsi_Scandir(Jsi_Interp *interp, Jsi_Value* path, Jsi_Dirent ***namelist,
int (*filter)(const Jsi_Dirent *), int (*compar)(const Jsi_Dirent **, const Jsi_Dirent**))
{
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == NULL || !fsPtr->scandirProc) return -1;
return fsPtr->scandirProc(interp, path, namelist, filter, compar);
}
int Jsi_IsNative(Jsi_Interp *interp, Jsi_Value *file) {
void *data;
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, file, &data);
if (fsPtr && fsPtr == &jsiFilesystem)
return 1;
else
return 0;
}
static Jsi_Filesystem *jsi_FilesysFind(const char *name)
{
FSList *fsPtr = jsiFSList;
while (fsPtr != NULL) {
if (!Jsi_Strcmp(fsPtr->fsPtr->typeName, name))
return fsPtr->fsPtr;
fsPtr = fsPtr->next;
}
return NULL;
}
Jsi_Channel Jsi_Open(Jsi_Interp *interp, Jsi_Value *file, const char *modeString)
{
/* Find fsys, and use open there. */
Jsi_Chan *ch = NULL;
void *data;
const char *fileName = Jsi_ValueToString(interp, file);
const char *s = modeString;
char Mode[sizeof(ch->modes)];
Jsi_StatBuf sb;
Jsi_Value *path = NULL;
int n, i, mode = 0, rc;
if (!s)
s = "r";
if (Jsi_Strlen(s) >= sizeof(ch->modes)) {
Jsi_LogError("mode too long: %s", s);
return NULL;
}
if (Jsi_Strchr(s, 'z') || Jsi_Strchr(s, 'Z')) {
Jsi_Filesystem *fsPtr = jsi_FilesysFind("jfz");
if (!fsPtr) {
Jsi_LogError("compressed files unsupported");
return NULL;
}
ch = fsPtr->openProc(interp, file, s);
if (!ch)
return NULL;
Jsi_Chan *nch = Jsi_Calloc(1,sizeof(*nch));
*nch = *ch;
nch->fsPtr = fsPtr;
return nch;
}
for (i=0, n = 0; s[i]; i++) {
switch (s[i]) {
case '+': break;
case 'b': break;
case 'r': if (!strchr(s,'+')) mode |= JSI_FS_READONLY; break;
case 'a':
case 'w': if (!strchr(s,'+')) mode |= JSI_FS_WRITEONLY; break;
default: Jsi_LogError("unknown mode char: %c", s[i]); return NULL;
}
Mode[n++] = s[i];
}
Mode[n] = 0;
/* Fixup files in the ~ dir */
rc = Jsi_Stat(interp, file,&sb);
if ((rc != 0 || *fileName == '~') && (fileName = Jsi_FileRealpath(interp, file, NULL))) {
path = Jsi_ValueNewString(interp, fileName);
Jsi_IncrRefCount(interp, path);
rc = Jsi_Stat(interp, path, &sb);
if (rc == 0)
file = path;
}
if (rc == 0 && sb.st_mode & S_IFDIR )
{
Jsi_LogError("can not open a directory");
goto done;
}
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, file, &data);
int writ = (strchr(s,'w') || strchr(s,'a') || strchr(s,'+'));
if (interp->isSafe && Jsi_SafeAccess(interp, file, writ) != JSI_OK) {
Jsi_LogError("%s access denied", writ?"write":"read");
goto done;
}
if (fsPtr && fsPtr != &jsiFilesystem) {
ch = fsPtr->openProc(interp, file, Mode);
if (ch)
ch->isNative = 0;
} else {
FILE *fp = fopen(fileName, Mode);
fsPtr = &jsiFilesystem;
if (!fp)
goto done;
ch = Jsi_Calloc(1,sizeof(*ch));
ch->fp = fp;
ch->isNative = 1;
}
if (ch) {
ch->flags |= mode; // + (zLevel<<24);
Jsi_Strcpy(ch->modes, s);
ch->interp = interp;
ch->fsPtr = fsPtr;
ch->fname = fileName;
}
done:
if (path)
Jsi_DecrRefCount(interp, path);
return ch;
}
int Jsi_SetChannelOption(Jsi_Interp *interp, Jsi_Channel chan, const char *optionName,
const char *newValue) {return JSI_OK;}
Jsi_Wide Jsi_Seek(Jsi_Channel chan, Jsi_Wide offset, int mode) {
if (!chan->fsPtr->seekProc) return -1;
return chan->fsPtr->seekProc(chan, offset, mode);
}
Jsi_Wide Jsi_Tell(Jsi_Channel chan) {
if (!chan->fsPtr->tellProc) return -1;
return chan->fsPtr->tellProc(chan);
}
int Jsi_Eof(Jsi_Channel chan) {
if (!chan->fsPtr->eofProc) return -1;
return chan->fsPtr->eofProc(chan);
}
Jsi_Wide Jsi_Rewind(Jsi_Channel chan) {
if (!chan->fsPtr->rewindProc) return -1;
return chan->fsPtr->rewindProc(chan);
}
/*Jsi_StatBuf* Jsi_AllocStatBuf(void) {return 0;}*/
int Jsi_Read(Jsi_Channel chan, char *bufPtr, int toRead) {
if (!chan->fsPtr->readProc) return -1;
return chan->fsPtr->readProc(chan, bufPtr, toRead);
}
int Jsi_Write(Jsi_Channel chan, const char *bufPtr, int slen) {
if (!chan->fsPtr->writeProc) return -1;
return chan->fsPtr->writeProc(chan, bufPtr, slen);
}
int Jsi_Truncate(Jsi_Channel chan, unsigned int len) {
if (!chan->fsPtr->truncateProc) return -1;
return chan->fsPtr->truncateProc(chan, len);
}
int Jsi_Close(Jsi_Channel chan) {
if (!chan->fsPtr->closeProc) return -1;
if (chan->flags&JSI_FS_NOCLOSE) return -1;
int rc = chan->fsPtr->closeProc(chan);
if (rc == 0)
Jsi_Free(chan);
return rc;
}
int Jsi_Flush(Jsi_Channel chan) {
if (!chan->fsPtr->flushProc) return -1;
return chan->fsPtr->flushProc(chan);
}
int Jsi_Getc(Jsi_Channel chan) {
if (!chan->fsPtr->getcProc) return -1;
return chan->fsPtr->getcProc(chan);
}
int Jsi_Ungetc(Jsi_Channel chan, int ch) {
if (!chan->fsPtr->ungetcProc) return -1;
return chan->fsPtr->ungetcProc(chan, ch);
}
char * Jsi_Gets(Jsi_Channel chan, char *s, int size) {
if (!chan->fsPtr->getsProc) return NULL;
return chan->fsPtr->getsProc(chan, s, size);
}
int Jsi_Chdir(Jsi_Interp *interp, Jsi_Value* path) {
void *data;
int rc = 0;
const char *pathPtr = Jsi_ValueToString(interp, path);
if (interp->isSafe && Jsi_SafeAccess(interp, path, 0) != JSI_OK) {
Jsi_LogError("read access denied");
return JSI_ERROR;
}
Jsi_Filesystem *fsPtr = Jsi_FilesystemForPath(interp, path, &data);
if (fsPtr == &jsiFilesystem) {
rc = chdir(pathPtr);
if (rc < 0)
return -1;
/* If change out of native fs, GetCwd will use pwdStr */
fsPtr = NULL;
}
Jsi_DSSetLength(&pwdStr, 0);
Jsi_DSAppendLen(&pwdStr, pathPtr, -1);
cwdFsPtr = fsPtr;
jsi_pwd = fsPtr ? Jsi_DSValue(&pwdStr) : NULL;
return rc;
}
char* Jsi_ValueNormalPath(Jsi_Interp *interp, Jsi_Value *file, Jsi_DString *dStr) {
return Jsi_NormalPath(interp, Jsi_ValueString(interp, file, NULL), dStr);
}
char *Jsi_FileRealpath(Jsi_Interp *interp, Jsi_Value *spath, char *newname)
{
char *path = Jsi_ValueString(interp, spath, 0);
if (!path) return NULL;
return Jsi_FileRealpathStr(interp, path, newname);
}
static char* jsi_FSRealPathProc(Jsi_Interp *interp, Jsi_Value *src, char *newPath) {
return Jsi_FileRealpath(interp, src, newPath);
}
char *Jsi_Realpath(Jsi_Interp *interp, Jsi_Value *src, char *newname)
{
/* TODO: resolve pwd first. */
void *data;
Jsi_Filesystem *fsPtr;
Jsi_DString dStr;
Jsi_Value tpath = VALINIT;
const char *npath = Jsi_ValueNormalPath(interp, src, &dStr);
Jsi_ValueMakeString(interp, &tpath, npath);
fsPtr = Jsi_FilesystemForPath(interp, &tpath, &data);
Jsi_DSFree(&dStr);
if (fsPtr == NULL || !fsPtr->realpathProc) return NULL;
return fsPtr->realpathProc(interp, src, newname);
}
static void fileObjErase(FileObj *fo)
{
if (fo->filename) {
Jsi_Close(fo->chan);
Jsi_Free(fo->filename);
Jsi_DecrRefCount(fo->interp, fo->fname);
Jsi_Free(fo->mode);
}
fo->filename = NULL;
}
static int fileObjFree(Jsi_Interp *interp, void *data)
{
FileObj *fo = data;
SIGASSERT(fo,FILEOBJ);
fileObjErase(fo);
Jsi_Free(fo);
return JSI_OK;
}
static int fileObjIsTrue(void *data)
{
FileObj *fo = data;
SIGASSERT(fo,FILEOBJ);
if (!fo->filename) return JSI_OK;
else return 1;
}
static int fileObjEqual(void *data1, void *data2)
{
return (data1 == data2);
}
static int try_open_file(Jsi_Interp *interp, FileObj *udf, Jsi_Value *args)
{
int ret = JSI_ERROR;
fileObjErase(udf);
Jsi_Value *fname = Jsi_ValueArrayIndex(interp, args, 0);
if (fname && Jsi_ValueIsType(interp,fname, JSI_VT_STRING)) {
Jsi_Value *vmode = Jsi_ValueArrayIndex(interp, args, 1);
const char *mode = NULL;
const char *fstr = Jsi_ValueString(interp, fname, NULL);
if (vmode && Jsi_ValueIsType(interp,vmode, JSI_VT_STRING)) {
mode = Jsi_ValueString(interp, vmode, NULL);
}
if (interp->isSafe && Jsi_SafeAccess(interp, fname, (mode && (strchr(mode,'w')||strchr(mode,'+')))) != JSI_OK)
return JSI_ERROR;
char *rmode = Jsi_Strdup(mode ? mode : "r");
Jsi_Channel chan = Jsi_Open(interp, fname, rmode);
if (chan) {
udf->chan = chan;
udf->fname = fname;
udf->interp = interp;
Jsi_IncrRefCount(interp, fname);
udf->filename = Jsi_Strdup(fstr);
udf->mode = Jsi_Strdup(rmode);
ret = JSI_OK;
}
Jsi_Free(rmode);
}
return ret;
}
#define UdfGet(udf, _this, funcPtr) \
FileObj *udf = Jsi_UserObjGetData(interp, _this, funcPtr); \
if (!udf) { \
Jsi_LogError("File.%s called with non-file object\n", funcPtr->cmdSpec->name); \
return JSI_ERROR; \
}
static int FilesysOpenCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
if (try_open_file(interp, udf, args) != JSI_OK) {
Jsi_ValueMakeBool(interp, *ret, 0);
}
Jsi_ValueMakeBool(interp, *ret, 1);
return JSI_OK;
}
static int FilesysCloseCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
fileObjErase(udf);
Jsi_ValueMakeBool(interp, *ret, 1);
return JSI_OK;
}
static int FilesysGetsCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
int len;
UdfGet(udf, _this, funcPtr);
if (!udf->filename) {
Jsi_ValueMakeUndef(interp, *ret);
return JSI_OK;
}
char buf[BUFSIZ];
if (!Jsi_Gets(udf->chan, buf, BUFSIZ)) {
Jsi_ValueMakeUndef(interp, *ret);
return JSI_OK;
}
buf[BUFSIZ-1] = 0;
len = strlen(buf);
if (len > 0 && buf[len-1] == '\n')
buf[len-1] = 0;
Jsi_ValueMakeString(interp, *ret, Jsi_Strdup(buf));
return JSI_OK;
}
static int FilesysModeCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
if (udf->mode)
Jsi_ValueMakeStringKey(interp, *ret, udf->mode);
return JSI_OK;
}
static int FilesysFilenameCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
if (udf->filename)
Jsi_ValueMakeString(interp, *ret, Jsi_Strdup(udf->filename));
return JSI_OK;
}
static int FilesysReadCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
int sum = 0, n;
Jsi_DString dStr;
Jsi_DSInit(&dStr);
UdfGet(udf, _this, funcPtr);
char buf[BUFSIZ];
int argc = Jsi_ValueGetLength(interp, args);
int nsiz = sizeof(buf);
if (!udf->filename) {
goto bail;
}
if (argc) {
if (Jsi_GetIntFromValue(interp, Jsi_ValueArrayIndex(interp, args, 0), &nsiz) != JSI_OK)
goto bail;
if (nsiz<=0)
nsiz = sizeof(buf);
}
while (sum < MAX_LOOP_COUNT && nsiz>0 && (n = Jsi_Read(udf->chan, buf, nsiz)) > 0) {
/* TODO: limit max size. */
Jsi_DSAppendLen(&dStr, buf, n);
sum += n;
if (argc)
nsiz -= n;
}
Jsi_ValueMakeDStringObject(interp, *ret, &dStr);
return JSI_OK;
bail:
Jsi_DSFree(&dStr);
Jsi_ValueMakeUndef(interp, *ret);
return JSI_OK;
}
static int FilesysSeekCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
static const char *posStr[] = { "set", "cur", "end", NULL };
enum { W_SET, W_CUR, W_END };
UdfGet(udf, _this, funcPtr);
Jsi_Value *vPos = Jsi_ValueArrayIndex(interp, args, 0);
Jsi_Value *vWhence = Jsi_ValueArrayIndex(interp, args, 1);
int mode = 0, p;
Jsi_Wide pos;
Jsi_Number num;
if (Jsi_ValueGetNumber(interp, vPos, &num) != JSI_OK)
return JSI_ERROR;
if (Jsi_ValueGetIndex(interp, vWhence, posStr, "position", 0, &p) != JSI_OK)
return JSI_ERROR;
switch (p) {
case W_SET: mode = SEEK_SET; break;
case W_CUR: mode = SEEK_CUR; break;
case W_END: mode = SEEK_END; break;
}
pos = (Jsi_Wide)num;
pos = Jsi_Seek(udf->chan, pos, mode);
Jsi_ValueMakeNumber(interp, *ret, (Jsi_Number)pos);
return JSI_OK;
}
static int FilesysTruncateCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
Jsi_Value *vPos = Jsi_ValueArrayIndex(interp, args, 0);
Jsi_Number num;
if (Jsi_ValueGetNumber(interp, vPos, &num) != JSI_OK)
return JSI_ERROR;
num = (Jsi_Number)Jsi_Truncate(udf->chan, (unsigned int)num);
Jsi_ValueMakeNumber(interp, *ret, num);
return JSI_OK;
}
static int FilesysStatCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
return jsi_FileStatCmd(interp, udf->fname, _this, ret, funcPtr, 0);
}
static int FilesysLstatCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
return jsi_FileStatCmd(interp, udf->fname, _this, ret, funcPtr, 1);
}
static int FilesysTellCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
Jsi_Wide pos = Jsi_Tell(udf->chan);
Jsi_ValueMakeNumber(interp, *ret, (Jsi_Number)pos);
return JSI_OK;
}
static int FilesysFlushCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
int pos = Jsi_Flush(udf->chan);
Jsi_ValueMakeNumber(interp, *ret, (Jsi_Number)pos);
return JSI_OK;
}
static int FilesysWriteCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
int sum = 0, n, m;
UdfGet(udf, _this, funcPtr);
char *buf = Jsi_ValueArrayIndexToStr(interp, args, 0, &m);
if (!udf->filename) {
goto bail;
}
while (m > 0 && sum < MAX_LOOP_COUNT && (n = Jsi_Write(udf->chan, buf, m)) > 0) {
/* TODO: limit max size. */
sum += n;
m -= n;
}
bail:
return JSI_OK;
}
static int FilesysPutsCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
if (!udf->filename) {
Jsi_ValueMakeBool(interp, *ret, 0);
return JSI_OK;
}
Jsi_Value *toput = Jsi_ValueArrayIndex(interp, args, 0);
if (!toput) {
Jsi_ValueMakeBool(interp, *ret, 0);
return JSI_OK;
}
Jsi_ValueToString(interp, toput);
if (Jsi_Printf(udf->chan, "%s\n", SSS(interp, toput)) < 0) {
Jsi_ValueMakeBool(interp, *ret, 0);
return JSI_OK;
}
Jsi_ValueMakeBool(interp, *ret, 1);
return JSI_OK;
}
static int FilesysEofCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
UdfGet(udf, _this, funcPtr);
Jsi_ValueMakeBool(interp, *ret, Jsi_Eof(udf->chan));
return JSI_OK;
}
int Jsi_Printf(Jsi_Channel chan, const char *fmt, ...)
{
va_list va;
int n;
FILE *fp = (chan && chan->fp ? chan->fp : stdout);
va_start(va,fmt);
n = vfprintf(fp, fmt, va);
va_end(va);
return n;
}
static int FilesysConstructor(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
Jsi_Value *that = _this;
if (!Jsi_FunctionIsConstructor(funcPtr)) {
Jsi_Obj *o = Jsi_ObjNew(interp);
Jsi_PrototypeObjSet(interp, "File", o);
Jsi_ValueMakeObject(interp, *ret, o);
that = *ret;
}
FileObj *fobj = Jsi_Calloc(1,sizeof(*fobj));
SIGINIT(fobj, FILEOBJ);
if (try_open_file(interp, fobj, args) != JSI_OK) { /* Error out on open fail */
Jsi_Free(fobj);
Jsi_LogError("open failed");
return JSI_ERROR;
}
Jsi_Obj *nobj = Jsi_ValueGetObj(interp, that);
fobj->objId = Jsi_UserObjNew(interp, &fileobject, nobj, fobj);
if (fobj->objId<0) {
Jsi_Free(fobj); // TODO: finish cleanup
return JSI_ERROR;
}
fobj->fobj = nobj;
return JSI_OK;
}
static Jsi_CmdSpec filesysCmds[] = {
{ "File", FilesysConstructor,1, 2, "file,?mode?", JSI_CMD_IS_CONSTRUCTOR, .help="A file IO object. The mode string is r or w and an optional +"},
{ "close", FilesysCloseCmd, 0, 0, "", .help="close the file" },
// { "conf", FilesysConfCmd, 0, 1, "?string|options?",.help="Configure options" , .opts=filesysOptions},
{ "eof", FilesysEofCmd, 0, 0, "", .help="Return true if read to end-of-file" },
{ "filename", FilesysFilenameCmd, 0, 0, "", .help="Get file name" },
{ "flush", FilesysFlushCmd, 0, 0, "", .help="Flush file output" },
{ "gets", FilesysGetsCmd, 0, 0, "", .help="Get one line of input" },
{ "lstat", FilesysLstatCmd, 0, 0, "", .help="Return status for file" },
{ "mode", FilesysModeCmd, 0, 0, "", .help="Get file mode used with open" },
{ "open", FilesysOpenCmd, 1, -1, "file,?mode?", .help="Open the file (after close)" },
{ "puts", FilesysPutsCmd, 1, 1, "str", .help="Write one line of output"},
{ "read", FilesysReadCmd, 0, 1, "?size?", .help="Read some or all of file into object" },
{ "seek", FilesysSeekCmd, 2, 2, "pos,whence", .help="Seek to position. Return 0 if ok" },
{ "stat", FilesysStatCmd, 0, 0, "", .help="Return status for file" },
{ "truncate",FilesysTruncateCmd, 1, 1, "pos", .help="Truncate file" },