-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathdwsFileSystem.pas
More file actions
715 lines (612 loc) · 21.6 KB
/
dwsFileSystem.pas
File metadata and controls
715 lines (612 loc) · 21.6 KB
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
{**********************************************************************}
{ }
{ "The contents of this file are subject to the Mozilla Public }
{ License Version 1.1 (the "License"); you may not use this }
{ file except in compliance with the License. You may obtain }
{ a copy of the License at http://www.mozilla.org/MPL/ }
{ }
{ Software distributed under the License is distributed on an }
{ "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express }
{ or implied. See the License for the specific language }
{ governing rights and limitations under the License. }
{ }
{ The Initial Developer of the Original Code is Matthias }
{ Ackermann. For other initial contributors, see contributors.txt }
{ Subsequent portions Copyright Creative IT. }
{ }
{ Current maintainer: Eric Grange }
{ }
{**********************************************************************}
unit dwsFileSystem;
{$I dws.inc}
interface
uses
System.Classes, System.SysUtils,
dwsUtils, dwsXPlatform;
type
// TdwsFileOpenMode
//
TdwsFileOpenMode = (
fomReadOnly, // opens file for read-only, fails if doesn't exist
fomReadWrite, // opens file for read-write, creates a new one if doesn't exist
fomCreate, // opens file for read-write, always empty
fomFastSequentialRead // opens file for sequential read-only, return nil if doesn't exist
);
TdwsFileSystemTextFormat = (
fstfUTF8_with_BOM,
fstfUTF8_no_BOM
);
EdwsFileSystemException = class (Exception);
EdwsFSInvalidFileName = class (EdwsFileSystemException);
TFileStreamOpenedEvent = procedure (Sender : TObject; const fileName : TFileName; const mode : TdwsFileOpenMode) of object;
// IdwsFileSystem
//
IdwsFileSystem = interface
['{D49F19A9-46C6-43E1-AF29-BDB8602A098C}']
function FileExists(const fileName : TFilename) : Boolean;
function FindFileName(const fileName : TFileName) : TFileName;
function OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream;
function ValidateFileName(const fileName : TFilename) : TFilename;
function LoadTextFile(const fileName : TFilename) : UnicodeString;
function GetSearchPaths : TStrings;
procedure SetSearchPaths(const val : TStrings);
property SearchPaths : TStrings read GetSearchPaths write SetSearchPaths;
end;
// IdwsFileSystemRW (work in progress, not stable yet)
//
IdwsFileSystemRW = interface (IdwsFileSystem)
['{2A9B3826-4A52-4DB4-98B9-F7A3F97814EF}']
function DirectoryExists(const directoryName : TFilename) : Boolean;
function CreateDirectory(const directoryName : TFilename) : Boolean;
function DeleteDirectory(const directoryName : TFilename; recursive : Boolean) : Boolean;
function ForceDirectories(const directoryName : TFilename) : Boolean;
function FileTimeStamp(const fileName : TFilename) : TdwsDateTime;
procedure SaveTextFile(const fileName : TFileName; const strData : String; fmt : TdwsFileSystemTextFormat);
end;
// TdwsBaseFileSystem
//
{: Minimal virtualized filesystem interface. }
TdwsBaseFileSystem = class abstract (TInterfacedObject, IdwsFileSystem, IdwsFileSystemRW)
private
FOnFileStreamOpened : TFileStreamOpenedEvent;
FSearchPaths : TStrings;
protected
function GetSearchPaths : TStrings;
procedure SetSearchPaths(const val : TStrings);
procedure DoFileStreamOpenedEvent(const fileName : TFilename; const mode : TdwsFileOpenMode); inline;
public
constructor Create; virtual;
destructor Destroy; override;
function FindFileName(const fileName : TFileName) : TFileName; virtual; abstract;
function FileExists(const fileName : TFilename) : Boolean; virtual; abstract;
function DirectoryExists(const directoryName : TFilename) : Boolean; virtual; abstract;
function CreateDirectory(const directoryName : TFilename) : Boolean; virtual; abstract;
function DeleteDirectory(const directoryName : TFilename; recursive : Boolean) : Boolean; virtual; abstract;
function ForceDirectories(const directoryName : TFilename) : Boolean; virtual; abstract;
function OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream; virtual; abstract;
function ValidateFileName(const fileName : TFilename) : TFilename; virtual; abstract;
function FileTimeStamp(const fileName : TFilename) : TdwsDateTime; virtual; abstract;
function LoadTextFile(const fileName : TFilename) : UnicodeString;
procedure SaveTextFile(const fileName : TFileName; const strData : String; fmt : TdwsFileSystemTextFormat);
property OnFileStreamOpened : TFileStreamOpenedEvent read FOnFileStreamOpened write FOnFileStreamOpened;
property SearchPaths : TStrings read FSearchPaths write SetSearchPaths;
end;
// TdwsNullFileSystem
//
{: Gives access to nothing. }
TdwsNullFileSystem = class (TdwsBaseFileSystem)
public
function FindFileName(const fileName : TFileName) : TFileName; override;
function FileExists(const fileName : TFilename) : Boolean; override;
function DirectoryExists(const directoryName : TFilename) : Boolean; override;
function CreateDirectory(const directoryName : TFilename) : Boolean; override;
function DeleteDirectory(const directoryName : TFilename; recursive : Boolean) : Boolean; override;
function ForceDirectories(const directoryName : TFilename) : Boolean; override;
function OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream; override;
function ValidateFileName(const fileName : TFilename) : TFilename; override;
function FileTimeStamp(const fileName : TFilename) : TdwsDateTime; override;
end;
// TdwsOSFileSystem
//
{: Gives access to the whole OS FileSystem. }
TdwsOSFileSystem = class (TdwsBaseFileSystem)
public
function ValidateFileName(const fileName : TFilename) : TFilename; override;
function FindFileName(const fileName : TFileName) : TFileName; override;
function FileExists(const fileName : TFilename) : Boolean; override;
function DirectoryExists(const directoryName : TFilename) : Boolean; override;
function CreateDirectory(const directoryName : TFilename) : Boolean; override;
function DeleteDirectory(const directoryName : TFilename; recursive : Boolean) : Boolean; override;
function ForceDirectories(const directoryName : TFilename) : Boolean; override;
function FileTimeStamp(const fileName : TFilename) : TdwsDateTime; override;
function OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream; override;
end;
// TdwsRestrictedOSFileSystem
//
{: Gives access to only specified directories and their subdirectories. }
TdwsRestrictedOSFileSystem = class (TdwsOSFileSystem)
private
FPaths : TStrings;
FPathsPrepared : Boolean;
FVariables : TStrings;
protected
procedure SetPaths(const val : TStrings);
procedure SetVariables(const val : TStrings);
procedure PathsChanged(Sender : TObject);
procedure PreparePaths;
public
constructor Create; override;
destructor Destroy; override;
function ValidateFileName(const aFileName : TFilename) : TFilename; override;
property Paths : TStrings read FPaths write SetPaths;
property Variables : TStrings read FVariables write SetVariables;
end;
// TdwsCustomFileSystem
//
TdwsCustomFileSystem = class abstract (TComponent)
private
FOnFileStreamOpened : TFileStreamOpenedEvent;
public
function AllocateFileSystem : IdwsFileSystem; virtual; abstract;
function AllocateFileSystemRW : IdwsFileSystemRW; virtual; abstract;
property OnFileStreamOpened : TFileStreamOpenedEvent read FOnFileStreamOpened write FOnFileStreamOpened;
end;
// TdwsNoFileSystem
//
TdwsNoFileSystem = class abstract (TdwsCustomFileSystem)
public
function AllocateFileSystem : IdwsFileSystem; override;
function AllocateFileSystemRW : IdwsFileSystemRW; override;
end;
// TdwsRestrictedFileSystem
//
TdwsRestrictedFileSystem = class abstract (TdwsCustomFileSystem)
private
FPaths : TStrings;
FSearchPaths : TStrings;
FVariables : TStrings;
protected
procedure SetPaths(const val : TStrings);
procedure SetSearchPaths(const val : TStrings);
procedure SetVariables(const val : TStrings);
function CreateRestrictedFS : TdwsRestrictedOSFileSystem;
public
constructor Create(Owner : TComponent); override;
destructor Destroy; override;
function AllocateFileSystem : IdwsFileSystem; override;
function AllocateFileSystemRW : IdwsFileSystemRW; override;
published
property Paths : TStrings read FPaths write SetPaths;
property SearchPaths : TStrings read FSearchPaths write SetSearchPaths;
property Variables : TStrings read FVariables write SetVariables;
end;
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ------------------------------------------------------------------
implementation
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ------------------------------------------------------------------
uses dwsUTF8;
type
TFileHandleStream = class (THandleStream)
destructor Destroy; override;
end;
// Destroy
//
destructor TFileHandleStream.Destroy;
begin
CloseFileHandle(Handle);
inherited;
end;
// ------------------
// ------------------ TdwsBaseFileSystem ------------------
// ------------------
// Create
//
constructor TdwsBaseFileSystem.Create;
begin
inherited Create;
FSearchPaths := TStringList.Create;
end;
// Destroy
//
destructor TdwsBaseFileSystem.Destroy;
begin
inherited;
FSearchPaths.Free;
end;
// DoFileStreamOpenedEvent
//
procedure TdwsBaseFileSystem.DoFileStreamOpenedEvent(const fileName : TFilename; const mode : TdwsFileOpenMode);
begin
if Assigned(FOnFileStreamOpened) then
FOnFileStreamOpened(Self, fileName, mode);
end;
// LoadTextFile
//
function TdwsBaseFileSystem.LoadTextFile(const fileName : TFilename) : UnicodeString;
begin
var stream := OpenFileStream(fileName, fomFastSequentialRead);
if stream <> nil then begin
try
Result := LoadTextFromStream(stream);
finally
stream.Free;
end;
end else Result := '';
end;
// SaveTextFile
//
procedure TdwsBaseFileSystem.SaveTextFile(const fileName : TFileName; const strData : String; fmt : TdwsFileSystemTextFormat);
const
cUTF8BOM : array [0..2] of Byte = ( $EF, $BB, $BF );
var
utf8 : RawByteString;
begin
var stream := OpenFileStream(fileName, fomCreate);
if stream = nil then
raise EdwsFileSystemException.Create('SaveTextFile cannot open stream');
try
if strData <> '' then begin
utf8 := StringToUTF8(strData);
case fmt of
fstfUTF8_with_BOM :
stream.Write(cUTF8BOM[0], 3);
fstfUTF8_no_BOM: ;
else
Assert(False);
end;
stream.Write(Pointer(utf8)^, Length(utf8));
end;
finally
stream.Free;
end;
end;
// GetSearchPaths
//
function TdwsBaseFileSystem.GetSearchPaths : TStrings;
begin
Result := FSearchPaths;
end;
// SetSearchPaths
//
procedure TdwsBaseFileSystem.SetSearchPaths(const val : TStrings);
begin
FSearchPaths.Assign(val);
end;
// ------------------
// ------------------ TdwsNullFileSystem ------------------
// ------------------
// FileExists
//
function TdwsNullFileSystem.FileExists(const fileName : TFilename) : Boolean;
begin
Result:=False;
end;
// DirectoryExists
//
function TdwsNullFileSystem.DirectoryExists(const directoryName : TFilename) : Boolean;
begin
Result := False;
end;
// CreateDirectory
//
function TdwsNullFileSystem.CreateDirectory(const directoryName : TFilename) : Boolean;
begin
Result := False;
end;
// DeleteDirectory
//
function TdwsNullFileSystem.DeleteDirectory(const directoryName : TFilename; recursive : Boolean) : Boolean;
begin
Result := False;
end;
// ForceDirectories
//
function TdwsNullFileSystem.ForceDirectories(const directoryName : TFilename) : Boolean;
begin
Result := False;
end;
// OpenFileStream
//
function TdwsNullFileSystem.OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream;
begin
Result:=nil;
end;
// ValidateFileName
//
function TdwsNullFileSystem.ValidateFileName(const fileName : TFilename) : TFilename;
begin
Result:='';
end;
// FileTimeStamp
//
function TdwsNullFileSystem.FileTimeStamp(const fileName : TFilename) : TdwsDateTime;
begin
Result := Default(TdwsDateTime);
end;
// FindFileName
//
function TdwsNullFileSystem.FindFileName(const fileName : TFileName) : TFileName;
begin
Result := '';
end;
// ------------------
// ------------------ TdwsOSFileSystem ------------------
// ------------------
// ValidateFileName
//
function TdwsOSFileSystem.ValidateFileName(const fileName : TFilename) : TFilename;
begin
// accept all
Result := ExpandFileName(fileName);
end;
// FindFileName
//
function TdwsOSFileSystem.FindFileName(const fileName : TFileName) : TFileName;
var
i : Integer;
begin
if FileExists(fileName) then
Exit(fileName);
if (DriveDelim <> '') and StrContains(fileName, DriveDelim) then
Exit('');
if StrBeginsWith(fileName, PathDelim) then
Exit('');
for i := 0 to SearchPaths.Count-1 do begin
Result := IncludeTrailingPathDelimiter(SearchPaths[i]) + fileName;
if FileExists(Result) then Exit;
end;
Result := '';
end;
// FileExists
//
function TdwsOSFileSystem.FileExists(const fileName : TFilename) : Boolean;
var
validFileName : TFilename;
begin
validFileName := ValidateFileName(fileName);
Result := System.SysUtils.FileExists(validFileName);
end;
// DirectoryExists
//
function TdwsOSFileSystem.DirectoryExists(const directoryName : TFilename) : Boolean;
var
validDirectoryName : TFilename;
begin
validDirectoryName := ValidateFileName(directoryName);
Result := System.SysUtils.DirectoryExists(validDirectoryName);
end;
// CreateDirectory
//
function TdwsOSFileSystem.CreateDirectory(const directoryName : TFilename) : Boolean;
var
validDirectoryName : TFilename;
begin
validDirectoryName := ValidateFileName(directoryName);
if validDirectoryName <> '' then
Result := System.SysUtils.CreateDir(validDirectoryName)
else Result := False;
end;
// DeleteDirectory
//
function TdwsOSFileSystem.DeleteDirectory(const directoryName : TFilename; recursive : Boolean) : Boolean;
var
validDirectoryName : TFilename;
begin
validDirectoryName := ValidateFileName(directoryName);
if validDirectoryName <> '' then
Result := dwsXPlatform.DeleteDirectory(validDirectoryName, recursive)
else Result := True;
end;
// ForceDirectories
//
function TdwsOSFileSystem.ForceDirectories(const directoryName : TFilename) : Boolean;
var
validDirectoryName : TFilename;
begin
validDirectoryName := ValidateFileName(directoryName);
if validDirectoryName <> '' then
Result := System.SysUtils.ForceDirectories(validDirectoryName)
else Result := False;
end;
// FileTimeStamp
//
function TdwsOSFileSystem.FileTimeStamp(const fileName : TFilename) : TdwsDateTime;
var
validFileName : TFilename;
begin
validFileName := ValidateFileName(fileName);
Result := FileDateTime(validFileName);
end;
// OpenFileStream
//
function TdwsOSFileSystem.OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream;
var
validFileName : TFilename;
hFile : THandle;
begin
validFileName:=ValidateFileName(fileName);
case mode of
fomReadOnly :
Result:=TFileStream.Create(validFileName, fmOpenRead or fmShareDenyWrite);
fomReadWrite :
Result:=TFileStream.Create(validFileName, fmCreate);
fomCreate : begin
Result:=TFileStream.Create(validFileName, fmCreate);
if Result.Size>0 then
Result.Size:=0;
end;
fomFastSequentialRead : begin
hFile:=OpenFileForSequentialReadOnly(validFileName, [ ofoNoRaiseError ]);
if hFile<>INVALID_HANDLE_VALUE then
Result:=TFileHandleStream.Create(hFile)
else Result:=nil;
end;
else
Result:=nil;
end;
if Result <> nil then
DoFileStreamOpenedEvent(validFileName, mode);
end;
// ------------------
// ------------------ TdwsRestrictedOSFileSystem ------------------
// ------------------
// Create
//
constructor TdwsRestrictedOSFileSystem.Create;
begin
inherited;
FPaths:=TStringList.Create;
TStringList(FPaths).OnChange:=PathsChanged;
FVariables:=TFastCompareTextList.Create;
end;
// Destroy
//
destructor TdwsRestrictedOSFileSystem.Destroy;
begin
FVariables.Free;
FPaths.Free;
inherited;
end;
// SetPaths
//
procedure TdwsRestrictedOSFileSystem.SetPaths(const val : TStrings);
begin
FPaths.Assign(val);
end;
// SetVariables
//
procedure TdwsRestrictedOSFileSystem.SetVariables(const val : TStrings);
begin
FVariables.Assign(val);
end;
// PathsChanged
//
procedure TdwsRestrictedOSFileSystem.PathsChanged(Sender : TObject);
begin
FPathsPrepared:=False;
end;
// PreparePaths
//
procedure TdwsRestrictedOSFileSystem.PreparePaths;
const
cDummyFileName = 'dummy.file';
var
buf : TFileName;
begin
if FPathsPrepared then Exit;
for var i := FPaths.Count-1 downto 0 do begin
buf:=Trim(FPaths[i]);
if buf='' then
FPaths.Delete(i)
else begin
buf:=ExpandFileName(IncludeTrailingPathDelimiter(buf)+cDummyFileName);
FPaths[i] := Copy(buf, 1, Length(buf)-Length(cDummyFileName));
end;
end;
FPathsPrepared := True;
end;
// ValidateFileName
//
function TdwsRestrictedOSFileSystem.ValidateFileName(const aFilename : TFilename) : TFilename;
var
fileName, path : TFileName;
begin
if not FPathsPrepared then
PreparePaths;
fileName := ApplyStringVariables(aFileName, FVariables, '%');
if (DriveDelim <> '') and StrContains(fileName, DriveDelim) then begin
// validate an absolute path
Result := ExpandFileName(fileName);
for var i := 0 to FPaths.Count-1 do begin
if StrIBeginsWith(Result, FPaths[i]) then Exit;
end;
end else begin
// search for match in paths
for var i := 0 to FPaths.Count-1 do begin
path := FPaths[i];
Result := ExpandFileName(path + fileName);
if StrIBeginsWith(Result, path) then Exit;
end;
end;
Result:='';
end;
// ------------------
// ------------------ TdwsNoFileSystem ------------------
// ------------------
// AllocateFileSystem
//
function TdwsNoFileSystem.AllocateFileSystem : IdwsFileSystem;
begin
Result:=TdwsNullFileSystem.Create;
end;
// AllocateFileSystemRW
//
function TdwsNoFileSystem.AllocateFileSystemRW : IdwsFileSystemRW;
begin
Result:=TdwsNullFileSystem.Create;
end;
// ------------------
// ------------------ TdwsRestrictedFileSystem ------------------
// ------------------
// Create
//
constructor TdwsRestrictedFileSystem.Create(Owner : TComponent);
begin
inherited;
FPaths:=TStringList.Create;
FSearchPaths:=TStringList.Create;
FVariables:=TStringList.Create;
end;
// Destroy
//
destructor TdwsRestrictedFileSystem.Destroy;
begin
inherited;
FPaths.Free;
FSearchPaths.Free;
FVariables.Free;
end;
// CreateRestrictedFS
//
function TdwsRestrictedFileSystem.CreateRestrictedFS : TdwsRestrictedOSFileSystem;
begin
Result := TdwsRestrictedOSFileSystem.Create;
Result.Paths := Paths;
Result.SearchPaths := SearchPaths;
Result.Variables := Variables;
Result.OnFileStreamOpened := OnFileStreamOpened;
end;
// AllocateFileSystem
//
function TdwsRestrictedFileSystem.AllocateFileSystem : IdwsFileSystem;
begin
Result := CreateRestrictedFS;
end;
// AllocateFileSystemRW
//
function TdwsRestrictedFileSystem.AllocateFileSystemRW : IdwsFileSystemRW;
begin
Result := CreateRestrictedFS;
end;
// SetPaths
//
procedure TdwsRestrictedFileSystem.SetPaths(const val : TStrings);
begin
FPaths.Assign(val);
end;
// SetSearchPaths
//
procedure TdwsRestrictedFileSystem.SetSearchPaths(const val : TStrings);
begin
FSearchPaths.Assign(val);
end;
// SetVariables
//
procedure TdwsRestrictedFileSystem.SetVariables(const val : TStrings);
begin
FVariables.Assign(val);
end;
end.