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
|
program fpgmake;
{$mode objfpc}{$H+}
uses
{$ifdef UNIX}
cthreads,
{$endif UNIX}
Classes,
sysutils,
fpmkunit,
fpTemplate,
fpmakeParseJSon, fpmakecreatefile;
{
data2inc -b -s fpmake.cft fpmake.inc fpmake
}
{$i fpmake.inc}
Resourcestring
SUsage00 = 'Usage: %s [options]';
SUsage10 = 'Where options is one or more of';
SUSage20 = ' -t filename Template file name. Default is built-in';
SUSage30 = ' -o filename Set output file. Default is standard output.';
SUsage40 = ' -d name=value define name=value pair.';
SUsage50 = ' -h show this help and exit.';
SUsage60 = ' -u name remove name from list of name/value pairs.';
SUsage70 = ' -m show builtin macros and exit.';
SUsage80 = ' -b show builtin template and exit.';
SUsage90 = ' -s skip the creation of a backup-file.';
SUsage95 = ' -p force directory creation.';
SError = 'Error:';
SErrUnknownOption = 'Error: Unknown option (%s).';
SErrArgExpected = 'Error: Option "%s" requires an argument.';
SErrIncompletePair = 'Error: Incomplete name-value pair "%s".';
SErrNoSuchFile = 'Error: File "%s" does not exist.';
SWarnIgnoringFile = 'Warning: Ignoring non-existent file: ';
SWarnIgnoringPair = 'Warning: Ignoring wrong name/value pair: ';
SWarngccNotFound = 'Warning: Could not find gcc. Unable to determine the gcclib path.';
SWarnCouldNotExecute= 'Warning: Could not execute command ''%s''';
Var
SkipBackup : Boolean;
CreateDir: Boolean;
Cfg : TStringList;
TemplateFileName,
OutputFileName : String;
const
InputFileName = 'fpmake.fpc';
procedure Usage;
begin
Writeln(Format(SUsage00,[ExtractFileName(ApplicationName)]));
Writeln(SUsage10);
Writeln(SUsage20);
Writeln(SUsage30);
Writeln(SUsage40);
Writeln(SUsage50);
Writeln(SUsage60);
Writeln(SUsage70);
Writeln(SUsage80);
Writeln(SUsage90);
Writeln(SUsage95);
end;
Procedure UnknownOption(Const S : String);
begin
Writeln(Format(SErrUnknownOption,[S]));
Usage;
Halt(1);
end;
procedure Init;
begin
Cfg:=TStringList.Create;
Cfg.Text:=StrPas(Addr(fpmake[0][1]));
end;
procedure Done;
begin
Cfg.Free;
end;
Procedure ShowBuiltInMacros;
Var
I : Integer;
begin
For I:=0 to TemplateParser.ValueCount-1 do
Writeln(TemplateParser.NamesByIndex[I]+'='+TemplateParser.ValuesByIndex[I]);
end;
Procedure ShowBuiltIn;
Var
I : Integer;
begin
For I:=0 to Cfg.Count-1 do
Writeln(Cfg[I]);
end;
Procedure ProcessCommandline;
Var
I : Integer;
S : String;
ShowBuiltinCommand : boolean;
Function GetOptArg : String;
begin
If I=ParamCount then
begin
Writeln(StdErr,Format(SErrArgExpected,[S]));
Halt(1);
end;
inc(I);
Result:=ParamStr(I);
end;
procedure AddPair(const Value: String);
var P: integer;
N,V: String;
begin
P:=Pos('=',Value);
If p=0 then
begin
Writeln(StdErr,Format(SErrIncompletePair,[Value]));
Halt(1);
end;
V:=Value;
N:=Copy(V,1,P-1);
Delete(V,1,P);
TemplateParser.Values[N] := V;
end;
begin
I:=1;
ShowBuiltinCommand := False;
SkipBackup := False;
CreateDir := False;
While( I<=ParamCount) do
begin
S:=Paramstr(i);
If Length(S)<=1 then
UnknownOption(S)
else
case S[2] of
'h' : begin
Usage;
halt(0);
end;
'b' : ShowBuiltinCommand := true;
'm' : begin
ShowBuiltinMacros;
halt(0);
end;
't' : TemplateFileName:=GetOptArg;
'd' : AddPair(GetOptArg);
'u' : TemplateParser.Values[GetOptArg]:='';
'o' : OutputFileName:=GetoptArg;
's' : SkipBackup:=True;
'p' : CreateDir:=True;
else
UnknownOption(S);
end;
Inc(I);
end;
If (TemplateFileName<>'') then
begin
If Not FileExists(TemplateFileName) then
begin
Writeln(StdErr,Format(SErrNoSuchFile,[TemplateFileName]));
Halt(1);
end;
Cfg.LoadFromFile(TemplateFileName);
TemplateParser.Values['TEMPLATEFILE'] := TemplateFileName;
end;
if ShowBuiltinCommand then
begin
ShowBuiltIn;
halt(0);
end;
end;
var
APackages: TPackages;
begin
Init;
Try
ProcessCommandLine;
APackages := ParseFpmakeFile(InputFileName);
if assigned(APackages) then
CreateFile(OutputFileName, Cfg, APackages, SkipBackup, CreateDir);
Finally
APackages.Free;
Done;
end;
end.
|