-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathdwsScriptSource.pas
More file actions
455 lines (388 loc) · 12.2 KB
/
dwsScriptSource.pas
File metadata and controls
455 lines (388 loc) · 12.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
452
453
454
455
{**********************************************************************}
{ }
{ "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 dwsScriptSource;
{$I dws.inc}
interface
uses
System.SysUtils, dwsStrings, dwsUtils, dwsXPlatform;
type
// TSourceFile
//
TSourceFile = class (TRefCountedObject)
private
FLineCount : Integer;
FName, FLocation, FCode : String;
FNotSteppable : Boolean;
public
property Name : String read FName write FName;
property Location : String read FLocation write FLocation;
property Code : String read FCode write FCode;
function LineCount : Integer;
property NotSteppable : Boolean read FNotSteppable write FNotSteppable;
end;
// TScriptPos
//
PScriptPos = ^TScriptPos;
TScriptPos = packed record
public
Line : Integer;
Col : Integer;
SourceFile : TSourceFile;
class function Create(aSourceFile : TSourceFile; aLine, aCol : Integer) : TScriptPos; static;
procedure Clear; inline;
function SamePosAs(const aPos : TScriptPos) : Boolean; inline;
function IsMainModule : Boolean;
function IsSourceFile(const name : String) : Boolean;
procedure GetSourceName(var result : String); inline;
function SourceName : String; inline;
function SourceCode : String; inline;
function Defined : Boolean;
procedure IncCol; inline;
procedure DecCol; inline;
procedure NewLine; inline;
procedure SetColLine(aCol, aLine : Integer); inline;
procedure SetLineCol(const aPos : TScriptPos); inline;
function IsBeforeOrEqual(const aPos : TScriptPos) : Boolean;
function Compare(const aPos : TScriptPos) : Integer;
procedure ReplaceIfArgIsDefined(const aPos : TScriptPos);
function AsInfo : String;
end;
TScriptPosArray = array of TScriptPos; // dynamic array that can hold ScriptPos settings (needed for ReadNameList)
TScriptSourceType = (stMain, stUnit, stUnitNamespace, stInclude, stRecompile);
// A specific ScriptSource entry. The text of the script contained in that unit.
TScriptSourceItem = class (TRefCountedObject)
private
FNameReference : String;
FSourceFile : TSourceFile;
FSourceType : TScriptSourceType;
public
constructor Create(const ANameReference: String; ASourceFile: TSourceFile; ASourceType: TScriptSourceType);
destructor Destroy; override;
property NameReference : String read FNameReference write FNameReference;
property SourceFile : TSourceFile read FSourceFile;
property SourceType : TScriptSourceType read FSourceType;
end;
// Manage a list of all the different Script Texts (files) used in the program.
TScriptSourceList = class
private
FSourceList : TTightList;
FMainScript : TScriptSourceItem;
protected
function GetSourceItem(index : Integer) : TScriptSourceItem; inline;
public
constructor Create;
destructor Destroy; override;
procedure Clear;
function Add(const nameReference : String; const code: String; sourceType: TScriptSourceType;
const location : String) : TSourceFile;
function FindScriptSourceItem(const sourceFileName: String): TScriptSourceItem; overload;
function IndexOf(const sourceFileName: String): Integer; overload;
property Count : Integer read FSourceList.FCount;
property Items[index: Integer] : TScriptSourceItem read GetSourceItem; default;
property MainScript: TScriptSourceItem read FMainScript;
end;
procedure ConcatScriptPosArray(var dest : TScriptPosarray; const src : TScriptPosarray; nb : Integer);
const
cNullPos: TScriptPos = (Line: 0; Col: 0; SourceFile: nil);
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ------------------------------------------------------------------
implementation
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// ConcatScriptPosArray
//
procedure ConcatScriptPosArray(var dest : TScriptPosarray; const src : TScriptPosarray; nb : Integer);
var
nd : Integer;
begin
if nb=0 then Exit;
nd:=Length(dest);
SetLength(dest, nd+nb);
System.Move(src[0], dest[nd], SizeOf(TScriptPos)*nb);
end;
// ------------------
// ------------------ TScriptPos ------------------
// ------------------
// Create
//
class function TScriptPos.Create(aSourceFile : TSourceFile; aLine, aCol : Integer) : TScriptPos;
begin
Result.SourceFile:=aSourceFile;
Result.Line:=aLine;
Result.Col:=aCol;
end;
// Clear
//
procedure TScriptPos.Clear;
begin
SourceFile:=nil;
Line:=0;
Col:=Line;
end;
// SamePosAs
//
function TScriptPos.SamePosAs(const aPos : TScriptPos) : Boolean;
begin
Result:= (Line=aPos.Line) and (Col=aPos.Col)
and (SourceFile=aPos.SourceFile);
end;
// IsMainModule
//
function TScriptPos.IsMainModule : Boolean;
begin
Result:=(SourceFile=nil) or (SourceFile.Name=MSG_MainModule);
end;
// IsSourceFile
//
function TScriptPos.IsSourceFile(const name : String) : Boolean;
begin
Result:=(SourceFile<>nil) and UnicodeSameText(SourceFile.Name, name);
end;
// GetSourceName
//
procedure TScriptPos.GetSourceName(var result : String);
begin
if SourceFile<>nil then
Result := SourceFile.Name
else Result := '';
end;
// SourceName
//
function TScriptPos.SourceName : String;
begin
GetSourceName(Result);
end;
// SourceCode
//
function TScriptPos.SourceCode : String;
begin
if SourceFile<>nil then
Result:=SourceFile.Code
else Result:='';
end;
// Defined
//
function TScriptPos.Defined : Boolean;
begin
Result:=(SourceFile<>nil) and ((Line or Col)<>0);
end;
// IncCol
//
procedure TScriptPos.IncCol;
begin
Inc(Col);
end;
// DecCol
//
procedure TScriptPos.DecCol;
begin
Dec(Col);
end;
// NewLine
//
procedure TScriptPos.NewLine;
begin
Inc(Line);
Col:=1;
end;
// SetColLine
//
procedure TScriptPos.SetColLine(aCol, aLine : Integer);
begin
Col:=aCol;
Line:=aLine;
end;
// SetLineCol
//
procedure TScriptPos.SetLineCol(const aPos : TScriptPos);
begin
PUInt64(@Self)^:=PUInt64(@aPos)^;
end;
// IsBeforeOrEqual
//
function TScriptPos.IsBeforeOrEqual(const aPos : TScriptPos) : Boolean;
begin
Result:= (SourceFile=aPos.SourceFile)
and ( (Line<aPos.Line)
or ((Line=aPos.Line) and (Col<=aPos.Col)));
end;
// Compare
//
function TScriptPos.Compare(const aPos : TScriptPos) : Integer;
begin
if SourceFile <> aPos.SourceFile then begin
if SourceFile.Name < aPos.SourceName then
Result := 1
else Result := -1;
end else if Line < aPos.Line then
Result := -1
else if Line > aPos.Line then
Result := 1
else if Col < aPos.Col then
Result := -1
else if Col > aPos.Col then
Result := 1
else Result := 0;
end;
// ReplaceIfArgIsDefined
//
procedure TScriptPos.ReplaceIfArgIsDefined(const aPos : TScriptPos);
begin
if aPos.Defined then
Self := aPos;
end;
// AsInfo
//
function TScriptPos.AsInfo : String;
begin
if SourceFile=nil then
Result:=''
else begin
if not IsMainModule then
if SourceFile.Location <> '' then
Result:=Format(MSG_ScriptPosFileFull, [SourceFile.Name, SourceFile.Location])
else Result:=Format(MSG_ScriptPosFile, [SourceFile.Name])
else Result:='';
if Col<>cNullPos.Col then begin
if Result<>'' then
Result:=', '+Result;
Result:=Format(MSG_ScriptPosColumn, [Col])+Result;
end;
if Line<>cNullPos.Line then begin
if Result<>'' then
Result:=', '+Result;
Result:=Format(MSG_ScriptPosLine, [Line])+Result;
end;
if Result<>'' then
Result:=' ['+Result+']';
end;
end;
// ------------------
// ------------------ TSourceFile ------------------
// ------------------
// LineCount
//
function TSourceFile.LineCount : Integer;
var
i : Integer;
begin
if FLineCount=0 then begin
FLineCount:=1;
for i:=1 to Length(Code) do
if Code[i]=#10 then
Inc(FLineCount);
end;
Result:=FLineCount;
end;
// ------------------
// ------------------ TScriptSourceItem ------------------
// ------------------
constructor TScriptSourceItem.Create(const ANameReference: String; ASourceFile: TSourceFile;
ASourceType: TScriptSourceType);
begin
inherited Create;
FNameReference := ANameReference;
FSourceFile := ASourceFile;
FSourceType := ASourceType;
end;
// Destroy
//
destructor TScriptSourceItem.Destroy;
begin
FSourceFile.Free;
inherited;
end;
// ------------------
// ------------------ TScriptSourceList ------------------
// ------------------
// Create
//
constructor TScriptSourceList.Create;
begin
inherited;
FMainScript:=nil;
end;
// Destroy
//
destructor TScriptSourceList.Destroy;
begin
Clear;
FSourceList.Free;
inherited;
end;
// Add
//
function TScriptSourceList.Add(
const nameReference : String; const code : String;
sourceType: TScriptSourceType; const location : String) : TSourceFile;
var
srcItem : TScriptSourceItem;
begin
srcItem := FindScriptSourceItem(nameReference);
if srcItem = nil then begin
Result := TSourceFile.Create;
Result.Name := nameReference;
Result.Location := location;
Result.Code := code;
srcItem := TScriptSourceItem.Create(nameReference, Result, sourceType);
FSourceList.Add(srcItem);
// get a pointer to the 'main' script item
if sourceType = stMain then
FMainScript := srcItem;
end else begin
Result := srcItem.SourceFile;
end;
end;
// Clear
//
procedure TScriptSourceList.Clear;
begin
FSourceList.Clean;
FMainScript:=nil;
end;
// GetSourceItem
//
function TScriptSourceList.GetSourceItem(Index: Integer): TScriptSourceItem;
begin
Result := TScriptSourceItem(FSourceList.List[Index]);
end;
// FindScriptSourceItem
//
function TScriptSourceList.FindScriptSourceItem(const sourceFileName: String): TScriptSourceItem;
var
x : Integer;
begin
x:=IndexOf(SourceFileName);
if x>=0 then
Result:=Items[x]
else Result:=nil;
end;
function TScriptSourceList.IndexOf(const SourceFileName: String): Integer;
var
x: Integer;
begin
for x := 0 to FSourceList.Count-1 do
if UnicodeSameText(Items[x].NameReference, SourceFileName) then
Exit(x);
Result:=-1;
end;
end.