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
|
unit pkgfpmake;
{$mode objfpc}{$H+}
interface
uses
Classes,SysUtils,DateUtils,
pkghandler, fpmkunit;
implementation
uses
fprepos,
pkgoptions,
pkgglobals,
pkgmessages,
pkgrepos;
type
{ TFPMakeCompiler }
TFPMakeCompiler = Class(TPackagehandler)
Public
Procedure Execute;override;
end;
{ TFPMakeRunner }
TFPMakeRunner = Class(TPackagehandler)
Protected
Function RunFPMake(const Command:string):Integer;
end;
{ TFPMakeRunnerCompile }
TFPMakeRunnerCompile = Class(TFPMakeRunner)
Public
Procedure Execute;override;
end;
{ TFPMakeRunnerBuild }
TFPMakeRunnerBuild = Class(TFPMakeRunner)
Public
Procedure Execute;override;
end;
{ TFPMakeRunnerInstall }
TFPMakeRunnerInstall = Class(TFPMakeRunner)
Public
Procedure Execute;override;
end;
{ TFPMakeRunnerClean }
TFPMakeRunnerClean = Class(TFPMakeRunner)
Public
Procedure Execute;override;
end;
{ TFPMakeRunnerManifest }
TFPMakeRunnerManifest = Class(TFPMakeRunner)
Public
Procedure Execute;override;
end;
{ TFPMakeRunnerArchive }
TFPMakeRunnerArchive = Class(TFPMakeRunner)
Public
Procedure Execute;override;
end;
TMyMemoryStream=class(TMemoryStream)
public
constructor Create(p:pointer;mysize:integer);
end;
{
Generated from fpmkunit.pp, using data2inc:
data2inc -b -s fpmkunit.pp fpmkunitsrc.inc fpmkunitsrc
}
{$i fpmkunitsrc.inc}
procedure CreateFPMKUnitSource(const AFileName:string);
var
InStream,
OutStream : TStream;
pend : pchar;
begin
try
// Don't write trailing #0
pend:=pchar(@fpmkunitsrc)+sizeof(fpmkunitsrc)-1;
while pend^=#0 do
dec(pend);
InStream:=TMyMemoryStream.Create(@fpmkunitsrc,pend-pchar(@fpmkunitsrc));
OutStream:=TFileStream.Create(AFileName,fmCreate);
OutStream.CopyFrom(InStream,InStream.Size);
finally
InStream.Destroy;
OutStream.Destroy;
end;
end;
{*****************************************************************************
TMyMemoryStream
*****************************************************************************}
constructor TMyMemoryStream.Create(p:pointer;mysize:integer);
begin
inherited Create;
SetPointer(p,mysize);
end;
{ TFPMakeCompiler }
Procedure TFPMakeCompiler.Execute;
var
OOptions : string;
function CheckUnitDir(const AUnitName:string;Out AUnitDir:string):boolean;
begin
Result:=false;
if FPMakeCompilerOptions.LocalUnitDir<>'' then
begin
AUnitDir:=IncludeTrailingPathDelimiter(FPMakeCompilerOptions.LocalUnitDir+AUnitName);
if DirectoryExistsLog(AUnitDir) then
begin
Result:=true;
exit;
end;
end;
AUnitDir:=IncludeTrailingPathDelimiter(FPMakeCompilerOptions.GlobalUnitDir+AUnitName);
if DirectoryExistsLog(AUnitDir) then
begin
Result:=true;
exit;
end;
AUnitDir:='';
end;
procedure AddOption(const s:string);
begin
if OOptions<>'' then
OOptions:=OOptions+' ';
OOptions:=OOptions+maybequoted(s);
end;
Var
i : Integer;
TempBuildDir,
DepDir,
FPMakeBin,
FPMakeSrc : string;
NeedFPMKUnitSource,
HaveFpmake : boolean;
P : TFPPackage;
begin
P:=AvailableRepository.PackageByName(PackageName);
NeedFPMKUnitSource:=false;
OOptions:='';
SetCurrentDir(PackageBuildPath(P));
// Generate random name for build path
TempBuildDir:='build_fpmake_'+HexStr(DateTimeToUnix(Now),8)+HexStr(GetProcessId,4);
// Check for fpmake source
FPMakeBin:='fpmake'+ExeExt;
FPMakeSrc:='fpmake.pp';
HaveFpmake:=FileExists(FPMakeSrc);
If Not HaveFPMake then
begin
HaveFPMake:=FileExists('fpmake.pas');
If HaveFPMake then
FPMakeSrc:='fpmake.pas';
end;
// Need to compile fpmake executable?
if not FileExists(FPMakeBin) or
(FileAge(FPMakeBin)<FileAge(FPMakeSrc)) then
begin
if Not HaveFPMake then
Error(SErrMissingFPMake);
AddOption('-n');
AddOption('-dCOMPILED_BY_FPPKG');
for i:=0 to high(FPMKUnitDeps) do
begin
if FPMKUnitDeps[i].available then
begin
if CheckUnitDir(FPMKUnitDeps[i].package,DepDir) then
AddOption('-Fu'+DepDir)
else
Error(SErrMissingInstallPackage,[FPMKUnitDeps[i].package]);
if FPMKUnitDeps[i].def<>'' then
AddOption('-d'+FPMKUnitDeps[i].def);
end
else
begin
// If fpmkunit is not installed, we use the internal fpmkunit source
if FPMKUnitDeps[i].package='fpmkunit' then
begin
NeedFPMKUnitSource:=true;
AddOption('-Fu'+TempBuildDir);
end;
if FPMKUnitDeps[i].undef<>'' then
AddOption('-d'+FPMKUnitDeps[i].undef);
end;
end;
// Add RTL unit dir
if not CheckUnitDir('rtl',DepDir) then
Error(SErrMissingInstallPackage,['rtl']);
AddOption('-Fu'+DepDir);
// Units in a directory for easy cleaning
DeleteDir(TempBuildDir);
ForceDirectories(TempBuildDir);
AddOption('-FU'+TempBuildDir);
// Compile options
// -- default is to optimize, smartlink and strip to reduce
// the executable size (there can be 100's of fpmake's on a system)
if llInfo in LogLevels then
AddOption('-vi');
AddOption('-O2');
AddOption('-XXs');
// Create fpmkunit.pp if needed
if NeedFPMKUnitSource then
CreateFPMKUnitSource(TempBuildDir+PathDelim+'fpmkunit.pp');
// Call compiler
If ExecuteProcess(FPMakeCompilerOptions.Compiler,OOptions+' '+FPmakeSrc)<>0 then
begin
if not GlobalOptions.RecoveryMode then
Error(SErrCompileFailureFPMakeTryRecovery)
else
Error(SErrCompileFailureFPMake);
end;
// Cleanup units
DeleteDir(TempBuildDir);
end
else
Log(llCommands,SLogNotCompilingFPMake);
end;
{ TFPMakeRunner }
Function TFPMakeRunner.RunFPMake(const Command:string) : Integer;
Var
ManifestPackage,
P : TFPPackage;
FPMakeBin,
OOptions : string;
procedure AddOption(const s:string);
begin
if OOptions<>'' then
OOptions:=OOptions+' ';
OOptions:=OOptions+maybequoted(s);
end;
procedure CondAddOption(const Name,Value:string);
begin
if Value<>'' then
AddOption(Name+'='+Value);
end;
begin
OOptions:='';
// Does the current package support this CPU-OS?
if PackageName<>'' then
begin
P:=AvailableRepository.PackageByName(PackageName);
if (PackageName=CurrentDirPackageName) and (FileExists(ManifestFileName)) then
begin
ManifestPackage:=LoadManifestFromFile(ManifestFileName);
P.OSes:=ManifestPackage.OSes;
P.CPUs:=ManifestPackage.CPUs;
ManifestPackage.Free;
end;
end
else
P:=nil;
if assigned(P) then
begin
if (command<>'archive') and (command<>'manifest') and
(not(CompilerOptions.CompilerOS in P.OSes) or
not(CompilerOptions.CompilerCPU in P.CPUs)) then
Error(SErrPackageDoesNotSupportTarget,[P.Name,MakeTargetString(CompilerOptions.CompilerCPU,CompilerOptions.CompilerOS)]);
end;
{ Maybe compile fpmake executable? }
ExecuteAction(PackageName,'compilefpmake');
{ Create options }
if llDebug in LogLevels then
AddOption('--debug')
else if llInfo in LogLevels then
AddOption('--verbose');
if P.RecompileBroken and
(P.FPMakeOptionsString<>'') then // Check for a empty FPMakeOptionString for packages being installed with an old fpmkunit
begin
// When the package is being reinstalled because of broken dependencies, use the same fpmake-options
// as were used to compile the package in the first place.
OOptions:=P.FPMakeOptionsString;
end
else
begin
AddOption('--nofpccfg');
AddOption('--compiler='+CompilerOptions.Compiler);
AddOption('--cpu='+CPUToString(CompilerOptions.CompilerCPU));
AddOption('--os='+OSToString(CompilerOptions.CompilerOS));
if CompilerOptions.HasOptions then
AddOption('--options='+CompilerOptions.Options.DelimitedText);
if IsSuperUser or GlobalOptions.InstallGlobal then
begin
CondAddOption('--prefix',CompilerOptions.GlobalPrefix);
CondAddOption('--baseinstalldir',CompilerOptions.GlobalInstallDir);
end
else
begin
CondAddOption('--prefix',CompilerOptions.LocalPrefix);
CondAddOption('--baseinstalldir',CompilerOptions.LocalInstallDir);
end;
CondAddOption('--localunitdir',CompilerOptions.LocalUnitDir);
CondAddOption('--globalunitdir',CompilerOptions.GlobalUnitDir);
if GlobalOptions.CustomFPMakeOptions<>'' then
begin
AddOption('--ignoreinvalidoption');
AddOption(GlobalOptions.CustomFPMakeOptions);
end;
end;
{ Run FPMake }
FPMakeBin:='fpmake'+ExeExt;
SetCurrentDir(PackageBuildPath(P));
Result:=ExecuteProcess(FPMakeBin,Command+' '+OOptions);
if Result<>0 then
Error(SErrExecutionFPMake,[Command]);
end;
procedure TFPMakeRunnerCompile.Execute;
begin
RunFPMake('compile');
end;
procedure TFPMakeRunnerBuild.Execute;
begin
RunFPMake('build');
end;
procedure TFPMakeRunnerInstall.Execute;
begin
RunFPMake('install');
end;
procedure TFPMakeRunnerClean.Execute;
begin
RunFPMake('clean');
end;
procedure TFPMakeRunnerManifest.Execute;
begin
RunFPMake('manifest');
end;
procedure TFPMakeRunnerArchive.Execute;
begin
RunFPMake('archive');
end;
initialization
RegisterPkgHandler('compilefpmake',TFPMakeCompiler);
RegisterPkgHandler('fpmakecompile',TFPMakeRunnerCompile);
RegisterPkgHandler('fpmakebuild',TFPMakeRunnerBuild);
RegisterPkgHandler('fpmakeinstall',TFPMakeRunnerInstall);
RegisterPkgHandler('fpmakeclean',TFPMakeRunnerClean);
RegisterPkgHandler('fpmakemanifest',TFPMakeRunnerManifest);
RegisterPkgHandler('fpmakearchive',TFPMakeRunnerArchive);
end.
|