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
|
{$mode objfpc}
{$h+}
unit pkgglobals;
interface
uses
{$ifdef unix}
baseunix,
{$endif}
SysUtils,
Classes,
fpmkunit,
fprepos;
Const
{$ifdef unix}
ExeExt = '';
AllFiles='*';
{$else unix}
ExeExt = '.exe';
AllFiles='*.*';
{$endif unix}
Type
TFPMKUnitDep=record
package : string[12];
reqver : string[8];
undef : string[32];
def : string[32];
available: boolean;
end;
Const
CmdLinePackageName='<cmdline>';
CurrentDirPackageName='<currentdir>';
// Dependencies for compiling the fpmkunit unit
FPMKUnitDepDefaultCount=4;
FPMKUnitDepsDefaults : array[0..FPMKUnitDepDefaultCount-1] of TFPMKUnitDep = (
(package: 'hash';
reqver : '2.2.2';
undef : 'NO_UNIT_ZIPPER'),
(package: 'paszlib';
reqver : '2.2.2';
undef : 'NO_UNIT_ZIPPER'),
(package: 'fcl-process';
reqver : '2.2.2';
undef : 'NO_UNIT_PROCESS'),
(package: 'fpmkunit';
reqver : '2.2.2-1';
undef : '')
);
Type
TLogLevel = (llError,llWarning,llInfo,llCommands,llDebug,llProgres);
TLogLevels = Set of TLogLevel;
TLogProc = procedure(Level:TLogLevel;Const Msg: String);
const
DefaultLogLevels = [llError,llWarning, llProgres];
AllLogLevels = [llError,llWarning,llCommands,llInfo];
type
EPackagerError = class(Exception);
TPkgErrorProc = Procedure(Const Msg : String);
// Logging
Function StringToLogLevels (S : String) : TLogLevels;
Function LogLevelsToString (V : TLogLevels): String;
Procedure log(Level:TLogLevel; Const Fmt:String; const Args:array of const);
Procedure log(Level:TLogLevel; Const Msg:String);
Procedure Error(Const Fmt : String; const Args : array of const);
Procedure Error(Const Msg : String);
// Utils
function maybequoted(const s:string):string;
Function FixPath(const S : String) : string;
Function DirectoryExistsLog(const ADir:string):Boolean;
Function FileExistsLog(const AFileName:string):Boolean;
procedure BackupFile(const AFileName: String);
Procedure DeleteDir(const ADir:string);
Procedure SearchFiles(SL:TStringList;const APattern:string);
Function GetCompilerInfo(const ACompiler,AOptions:string):string; overload;
Procedure GetCompilerInfo(const ACompiler, AOptions: string; out AVersion: string; out ACPU: TCpu; out aOS:TOS); overload;
function IsSuperUser:boolean;
procedure ReadIniFile(Const AFileName: String;L:TStrings);
var
LogLevels : TLogLevels;
FPMKUnitDeps : array of TFPMKUnitDep;
LogHandler: TLogProc;
ErrorHandler: TPkgErrorProc;
Implementation
// define use_shell to use sysutils.executeprocess
// as alternate to using 'process' in getcompilerinfo
{$IF defined(GO32v2) or defined(WATCOM) or defined(OS2)}
{$DEFINE USE_SHELL}
{$ENDIF GO32v2 or WATCOM or OS2}
uses
typinfo,
{$IFNDEF USE_SHELL}
process,
{$ENDIF USE_SHELL}
contnrs,
uriparser,
pkgmessages;
function FPPkgGetVendorName:string;
begin
{$ifdef unix}
result:='fpc';
{$else}
result:='FreePascal'
{$endif}
end;
function FPPkgGetApplicationName:string;
begin
result:='fppkg';
end;
function StringToLogLevels(S: String): TLogLevels;
Var
I : integer;
begin
I:=GetEnumValue(TypeInfo(TLogLevels),'v'+S);
If (I<>-1) then
Result:=TLogLevels(I)
else
Raise EPackagerError.CreateFmt(SErrInvalidLogLevels,[S]);
end;
Function LogLevelsToString (V : TLogLevels): String;
begin
Result:=GetEnumName(TypeInfo(TLogLevels),Integer(V));
Delete(Result,1,1);// Delete 'v'
end;
procedure LogCmd(Level:TLogLevel; Const Msg: String);
var
Prefix : string;
begin
if not(Level in LogLevels) then
exit;
Prefix:='';
case Level of
llWarning :
Prefix:=SWarning;
llError :
Prefix:=SError;
{ llInfo :
Prefix:='I: ';
llCommands :
Prefix:='C: ';
llDebug :
Prefix:='D: '; }
end;
Writeln(stdOut,Prefix,Msg);
end;
procedure ErrorCmd(Const Msg: String);
begin
Raise EPackagerError.Create(Msg);
end;
Procedure log(Level:TLogLevel; Const Msg : String);
begin
Loghandler(level,Msg)
end;
Procedure log(Level:TLogLevel; Const Fmt:String; const Args:array of const);
begin
LogHandler(Level,Format(Fmt,Args));
end;
Procedure Error(Const Msg : String);
begin
ErrorHandler(Msg)
end;
procedure Error(Const Fmt: String; const Args: array of const);
begin
ErrorHandler(Format(Fmt, Args));
end;
function maybequoted(const s:string):string;
const
{$IFDEF MSWINDOWS}
FORBIDDEN_CHARS = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
'{', '}', '''', '`', '~'];
{$ELSE}
FORBIDDEN_CHARS = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')',
'{', '}', '''', ':', '\', '`', '~'];
{$ENDIF}
var
s1 : string;
i : integer;
quoted : boolean;
begin
quoted:=false;
s1:='"';
for i:=1 to length(s) do
begin
case s[i] of
'"' :
begin
quoted:=true;
s1:=s1+'\"';
end;
' ',
#128..#255 :
begin
quoted:=true;
s1:=s1+s[i];
end;
else begin
if s[i] in FORBIDDEN_CHARS then
quoted:=True;
s1:=s1+s[i];
end;
end;
end;
if quoted then
maybequoted:=s1+'"'
else
maybequoted:=s;
end;
Function FixPath(const S : String) : string;
begin
If (S<>'') then
Result:=IncludeTrailingPathDelimiter(S)
else
Result:='';
end;
Function DirectoryExistsLog(const ADir:string):Boolean;
begin
result:=SysUtils.DirectoryExists(ADir);
if result then
log(llDebug,SDbgDirectoryExists,[ADir,SDbgFound])
else
log(llDebug,SDbgDirectoryExists,[ADir,SDbgNotFound]);
end;
Function FileExistsLog(const AFileName:string):Boolean;
begin
result:=SysUtils.FileExists(AFileName);
if result then
log(llDebug,SDbgFileExists,[AFileName,SDbgFound])
else
log(llDebug,SDbgFileExists,[AFileName,SDbgNotFound]);
end;
procedure BackupFile(const AFileName: String);
Var
BFN : String;
begin
BFN:=AFileName+'.bak';
log(llDebug,SDbgBackupFile,[BFN]);
If not RenameFile(AFileName,BFN) then
Error(SErrBackupFailed,[AFileName,BFN]);
end;
Procedure DeleteDir(const ADir:string);
var
Info : TSearchRec;
begin
// Prevent accidently deleting all files in current or root dir
if (ADir='') or (ADir=PathDelim) then
exit;
if FindFirst(ADir+PathDelim+AllFiles,faAnyFile, Info)=0 then
try
repeat
if (Info.Attr and faDirectory)=faDirectory then
begin
if (Info.Name<>'.') and (Info.Name<>'..') then
DeleteDir(ADir+PathDelim+Info.Name)
end
else
DeleteFile(ADir+PathDelim+Info.Name);
until FindNext(Info)<>0;
finally
FindClose(Info);
end;
RemoveDir(Adir);
end;
Procedure SearchFiles(SL:TStringList;const APattern:string);
var
Info : TSearchRec;
ADir : string;
begin
ADir:=ExtractFilePath(APattern);
if FindFirst(APattern,faAnyFile, Info)=0 then
try
repeat
if (Info.Attr and faDirectory)=faDirectory then
begin
if (Info.Name<>'.') and (Info.Name<>'..') then
SearchFiles(SL,ADir+Info.Name+PathDelim+ExtractFileName(APattern))
end;
SL.Add(ADir+Info.Name);
until FindNext(Info)<>0;
finally
FindClose(Info);
end;
end;
//
// if use_shell defined uses sysutils.executeprocess else uses 'process'
//
function GetCompilerInfo(const ACompiler,AOptions:string):string;
const
BufSize = 1024;
var
{$IFDEF USE_SHELL}
TmpFileName, ProcIDStr: shortstring;
TmpFile: file;
CmdLine2: string;
{$ELSE USE_SHELL}
S: TProcess;
{$ENDIF USE_SHELL}
Buf: array [0..BufSize - 1] of char;
Count: longint;
begin
{$IFDEF USE_SHELL}
Str (GetProcessID, ProcIDStr);
TmpFileName := GetEnvironmentVariable ('TEMP');
if TmpFileName <> '' then
TmpFileName := TmpFileName + DirectorySeparator + 'fppkgout.' + ProcIDStr
else
TmpfileName := 'fppkgout.' + ProcIDStr;
CmdLine2 := '/C ' + ACompiler + ' ' + AOptions + ' > ' + TmpFileName;
SysUtils.ExecuteProcess (GetEnvironmentVariable ('COMSPEC'), CmdLine2);
Assign (TmpFile, TmpFileName);
Reset (TmpFile, 1);
BlockRead (TmpFile, Buf, BufSize, Count);
Close (TmpFile);
{$ELSE USE_SHELL}
S:=TProcess.Create(Nil);
S.Commandline:=ACompiler+' '+AOptions;
S.Options:=[poUsePipes];
S.execute;
Count:=s.output.read(buf,BufSize);
S.Free;
{$ENDIF USE_SHELL}
SetLength(Result,Count);
Move(Buf,Result[1],Count);
end;
Procedure GetCompilerInfo(const ACompiler, AOptions: string; out AVersion: string; out ACPU: TCpu; out aOS:TOS); overload;
var
infosl: TStringList;
begin
infosl:=TStringList.Create;
infosl.Delimiter:=' ';
infosl.DelimitedText:=GetCompilerInfo(ACompiler,AOptions);
if infosl.Count<>3 then
Raise EPackagerError.Create(SErrInvalidFPCInfo);
AVersion:=infosl[0];
ACPU:=StringToCPU(infosl[1]);
AOS:=StringToOS(infosl[2]);
end;
function IsSuperUser:boolean;
begin
{$ifdef unix}
result:=(fpGetUID=0);
{$else unix}
result:=false;
{$endif unix}
end;
procedure ReadIniFile(Const AFileName: String;L:TStrings);
Var
F : TFileStream;
Line : String;
I,P,PC : Integer;
begin
F:=TFileStream.Create(AFileName,fmOpenRead);
Try
L.LoadFromStream(F);
// Fix lines.
For I:=L.Count-1 downto 0 do
begin
Line:=L[I];
P:=Pos('=',Line);
PC:=Pos(';',Line); // Comment line.
If (P=0) or ((PC<>0) and (PC<P)) then
L.Delete(I)
else
L[i]:=Trim(System.Copy(Line,1,P-1)+'='+Trim(System.Copy(Line,P+1,Length(Line)-P)));
end;
Finally
F.Free;
end;
end;
initialization
OnGetVendorName:=@FPPkgGetVendorName;
OnGetApplicationName:=@FPPkgGetApplicationName;
LogHandler := @LogCmd;
ErrorHandler := @ErrorCmd;
end.
|