This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
ScriptPersister.pas
284 lines (249 loc) · 7.62 KB
/
ScriptPersister.pas
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
{**
DelphiPI (Delphi Package Installer)
Author : ibrahim dursun (ibrahimdursun gmail)
License : GNU General Public License 2.0
**}
unit ScriptPersister;
interface
uses SysUtils, Classes, CompilationData, PackageInfoFactory;
type
//TODO: refactor: this class has more than one responsibility = scanner + script persister
TScriptPersister = class
private
fLines: TStringList;
fLine: String;
fCurrentLine :integer;
fPackageInfoFactory: TPackageInfoFactory;
protected
function IsSectionHeader(line: string):boolean;
function GetSectionHeader(line: string):string;
function ReadNextLine: string;
procedure SetPackageList(compilationData: TCompilationData);
procedure SetDelphiVersion(compilationData: TCompilationData);
function HasNextLine: boolean;
{ Added: Ronald Siekman - 24 12 2008 }
procedure SetLibrarySearchPath(compilationData: TCompilationData);
public
constructor Create();
destructor Destroy; override;
function Load(const scriptFilePath: string):TCompilationData;
procedure Save(const compilationData: TCompilationData; const scriptFilePath: string);
private
class var
const Header_BaseFolder = 'base-folder';
const Header_DelphiVersion = 'delphi-version';
const Header_BPLOutputFolder = 'bpl-output-folder';
const Header_DCPOutputFolder = 'dcp-output-folder';
const Header_DCUOutputFolder = 'dcu-output-folder';
const Header_Packages = 'packages';
{ Added: Ronald Siekman - 24 12 2008 }
const Header_Library_Search_Paths = 'library-search-paths';
end;
implementation
uses JclStrings, JclFileUtils, JclIDEUtils, PackageInfo;
type
TScriptWriter = class(TStringList)
procedure WriteHeader(header: string);
procedure WriteDetail(line:string);
end;
{ TScriptPersister }
constructor TScriptPersister.Create();
begin
fLines := TStringList.Create;
{ Changed: Ronald Siekman - 24 12 2008 }
fPackageInfoFactory := TPackageInfoFactory.Create;
end;
destructor TScriptPersister.Destroy;
begin
fLines.Free;
fPackageInfoFactory.Free;
inherited;
end;
function TScriptPersister.GetSectionHeader(line: string): string;
begin
Result := StrLower(Copy(line, 1, Length(line)-1));
end;
function TScriptPersister.HasNextLine: boolean;
begin
Result := fCurrentLine < fLines.Count;
end;
function TScriptPersister.IsSectionHeader(line: string): boolean;
begin
Result := (line[Length(line)] = ':') and (line[1] <> ' ');
end;
function TScriptPersister.Load(
const scriptFilePath: string): TCompilationData;
var
header: String;
begin
Result := TCompilationData.Create;
if not FileExists(scriptFilePath) then exit;
fCurrentLine := 0;
fLine := '';
{ Changed: Ronald Siekman - 24 12 2008 }
//fLines := TStringList.Create;
fLines.LoadFromFile(scriptFilePath);
try
while HasNextLine do
begin
fLine := ReadNextLine;
if IsSectionHeader(fLine) then
begin
Result.Scripting := True;
header := GetSectionHeader(fLine);
if header = Header_BaseFolder then
Result.BaseFolder := ReadNextLine;
if header = Header_DelphiVersion then
SetDelphiVersion(Result);
if header = Header_BPLOutputFolder then
Result.BPLOutputFolder := ReadNextLine;
if header = Header_DCPOutputFolder then
Result.DCPOutputFolder := ReadNextLine;
if header = Header_DCUOutputFolder then
Result.DCUOutputFolder := ReadNextLine;
if header = Header_Library_Search_Paths then
SetLibrarySearchPath(Result);
if header = Header_Packages then
SetPackageList(Result);
end;
end;
finally
//FreeAndNil(fLines);
end;
end;
function TScriptPersister.ReadNextLine: string;
begin
if not HasNextLine then begin
Result := '';
exit;
end;
fLine := Trim(fLines[fCurrentLine]);
inc(fCurrentLine);
Result := fLine;
end;
procedure TScriptPersister.SetDelphiVersion(compilationData: TCompilationData);
begin
ReadNextLine;
compilationData.SetDelphiVersion(fLine);
end;
procedure TScriptPersister.SetLibrarySearchPath(
compilationData: TCompilationData);
procedure SemiColonTextToStringList( const line: string;
var List: TStringList );
var
sValue: string;
sLine: string;
iPos: Integer;
begin
sValue := line;
iPos := Pos(';', sValue);
while not(iPos = 0) do
begin
sLine := Trim(Copy(sValue, 1, iPos-1));
List.Add(sLine);
Delete(sValue, 1, iPos);
iPos := Pos(';', sValue);
end;
sValue := Trim(sValue);
if not(sValue = '') then
begin
List.Add(sValue);
end;
end;
var
line : string;
slPaths: TStringList;
begin
{ Added: Ronald Siekman - 24 12 2008 }
if Assigned(compilationData.Installation) then
begin
slPaths := TStringList.Create;
try
SemiColonTextToStringList(compilationData.Installation.LibrarySearchPath[bpWin32],
slPaths);
while HasNextLine do
begin
line := ReadNextLine;
if IsSectionHeader(line) then begin
Dec(fCurrentLine);
break;
end;
if (slPaths.IndexOf(line) = -1 ) then
begin
compilationData.Installation.AddToLibrarySearchPath(line, bpWin32);
end;
end;
finally
slPaths.Free;
end;
end;
end;
procedure TScriptPersister.SetPackageList(compilationData: TCompilationData);
var
line : string;
folder : string;
filePath : string;
begin
{ Changed: Ronald Siekman - 24 12 2008 }
folder := IncludeTrailingPathDelimiter(compilationData.BaseFolder);
while HasNextLine do
begin
line := ReadNextLine;
filePath := PathAppend(folder, line);
if IsSectionHeader(line) then begin
Dec(fCurrentLine);
break;
end;
if FileExists( filePath ) then
begin
compilationData.PackageList.Add(fPackageInfoFactory.CreatePackageInfo(filePath));
end;
end;
end;
procedure TScriptPersister.Save(const compilationData: TCompilationData; const scriptFilePath: string);
var
script: TScriptWriter;
i: Integer;
begin
if compilationData = nil then exit;
script := TScriptWriter.Create;
try
with compilationData, script do
begin
WriteHeader(Header_BaseFolder);
WriteDetail(compilationData.BaseFolder);
WriteHeader(Header_DelphiVersion);
WriteDetail(compilationData.Installation.VersionNumberStr);
WriteHeader(Header_BPLOutputFolder);
WriteDetail(compilationData.BPLOutputFolder);
WriteHeader(Header_DCPOutputFolder);
WriteDetail(compilationData.DCPOutputFolder);
WriteHeader(Header_DCUOutputFolder);
WriteDetail(compilationData.DCUOutputFolder);
WriteHeader(Header_Packages);
for i := 0 to compilationData.PackageList.Count-1 do
begin
if PathIsChild(compilationData.PackageList[i].FileName, compilationData.BaseFolder) then
begin
WriteDetail(PathGetRelativePath(compilationData.BaseFolder,compilationData.PackageList[i].FileName));
end else
begin
WriteDetail(compilationData.PackageList[i].FileName);
end;
end;
end;
script.SaveToFile(scriptFilePath);
finally
script.Free;
end;
end;
{ TScriptWriter }
procedure TScriptWriter.WriteDetail(line: string);
begin
self.Add(' ' + line);
end;
procedure TScriptWriter.WriteHeader(header: string);
begin
self.Add(header+':');
end;
end.