forked from Pawe1/DelphiWebScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdwsFileSystem.pas
More file actions
451 lines (387 loc) · 13.2 KB
/
Copy pathdwsFileSystem.pas
File metadata and controls
451 lines (387 loc) · 13.2 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
{**********************************************************************}
{ }
{ "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 Classes, 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
);
EdwsFileSystemException = class (Exception)
end;
EdwsFSInvalidFileName = class (EdwsFileSystemException)
end;
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 OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream;
function ValidateFileName(const fileName : TFilename) : TFilename;
function LoadTextFile(const fileName : TFilename) : UnicodeString;
end;
// TdwsBaseFileSystem
//
{: Minimal virtualized filesystem interface. }
TdwsBaseFileSystem = class abstract (TInterfacedObject, IdwsFileSystem)
private
FOnFileStreamOpened : TFileStreamOpenedEvent;
protected
procedure DoFileStreamOpenedEvent(const fileName : TFilename; const mode : TdwsFileOpenMode); inline;
public
constructor Create; virtual;
function FileExists(const fileName : TFilename) : Boolean; virtual; abstract;
function OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream; virtual; abstract;
function ValidateFileName(const fileName : TFilename) : TFilename; virtual; abstract;
function LoadTextFile(const fileName : TFilename) : UnicodeString;
property OnFileStreamOpened : TFileStreamOpenedEvent read FOnFileStreamOpened write FOnFileStreamOpened;
end;
// TdwsNullFileSystem
//
{: Gives access to nothing. }
TdwsNullFileSystem = class (TdwsBaseFileSystem)
public
function FileExists(const fileName : TFilename) : Boolean; override;
function OpenFileStream(const fileName : TFilename; const mode : TdwsFileOpenMode) : TStream; override;
function ValidateFileName(const fileName : TFilename) : TFilename; override;
end;
// TdwsOSFileSystem
//
{: Gives access to the whole OS FileSystem. }
TdwsOSFileSystem = class (TdwsBaseFileSystem)
public
function ValidateFileName(const fileName : TFilename) : TFilename; override;
function FileExists(const fileName : TFilename) : Boolean; 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;
property OnFileStreamOpened : TFileStreamOpenedEvent read FOnFileStreamOpened write FOnFileStreamOpened;
end;
// TdwsNoFileSystem
//
TdwsNoFileSystem = class abstract (TdwsCustomFileSystem)
public
function AllocateFileSystem : IdwsFileSystem; override;
end;
// TdwsRestrictedFileSystem
//
TdwsRestrictedFileSystem = class abstract (TdwsCustomFileSystem)
private
FPaths : TStrings;
FVariables : TStrings;
protected
procedure SetPaths(const val : TStrings);
procedure SetVariables(const val : TStrings);
public
constructor Create(Owner : TComponent); override;
destructor Destroy; override;
function AllocateFileSystem : IdwsFileSystem; override;
published
property Paths : TStrings read FPaths write SetPaths;
property Variables : TStrings read FVariables write SetVariables;
end;
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ------------------------------------------------------------------
implementation
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ------------------------------------------------------------------
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;
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;
var
stream : TStream;
begin
stream := OpenFileStream(fileName, fomFastSequentialRead);
if stream <> nil then begin
try
Result := LoadTextFromStream(stream);
finally
stream.Free;
end;
end else Result := '';
end;
// ------------------
// ------------------ TdwsNullFileSystem ------------------
// ------------------
// FileExists
//
function TdwsNullFileSystem.FileExists(const fileName : 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;
// ------------------
// ------------------ TdwsOSFileSystem ------------------
// ------------------
// ValidateFileName
//
function TdwsOSFileSystem.ValidateFileName(const fileName : TFilename) : TFilename;
begin
// accept all
Result:=ExpandFileName(fileName);
end;
// FileExists
//
function TdwsOSFileSystem.FileExists(const fileName : TFilename) : Boolean;
var
validFileName : TFilename;
begin
validFileName:=ValidateFileName(fileName);
Result:=SysUtils.FileExists(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);
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
i : Integer;
buf : TFileName;
begin
if FPathsPrepared then Exit;
for 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
i : Integer;
fileName, path : TFileName;
begin
fileName := ApplyStringVariables(aFileName, FVariables, '%');
if StrContains(fileName, ':') then begin
// validate an absolute path
Result := ExpandFileName(fileName);
for 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 i:=0 to FPaths.Count-1 do begin
path := FPaths[i];
Result := ExpandFileName(path + fileName);
if StrIBeginsWith(Result, path) and SysUtils.FileExists(Result) then Exit;
end;
end;
Result:='';
end;
// ------------------
// ------------------ TdwsNoFileSystem ------------------
// ------------------
// AllocateFileSystem
//
function TdwsNoFileSystem.AllocateFileSystem : IdwsFileSystem;
begin
Result:=TdwsNullFileSystem.Create;
end;
// ------------------
// ------------------ TdwsRestrictedFileSystem ------------------
// ------------------
// Create
//
constructor TdwsRestrictedFileSystem.Create(Owner : TComponent);
begin
inherited;
FPaths:=TStringList.Create;
FVariables:=TStringList.Create;
end;
// Destroy
//
destructor TdwsRestrictedFileSystem.Destroy;
begin
inherited;
FPaths.Free;
FVariables.Free;
end;
// AllocateFileSystem
//
function TdwsRestrictedFileSystem.AllocateFileSystem : IdwsFileSystem;
var
fs : TdwsRestrictedOSFileSystem;
begin
fs := TdwsRestrictedOSFileSystem.Create;
fs.Paths := Paths;
fs.Variables := Variables;
fs.OnFileStreamOpened := OnFileStreamOpened;
Result:=fs;
end;
// SetPaths
//
procedure TdwsRestrictedFileSystem.SetPaths(const val : TStrings);
begin
FPaths.Assign(val);
end;
// SetVariables
//
procedure TdwsRestrictedFileSystem.SetVariables(const val : TStrings);
begin
FVariables.Assign(val);
end;
end.