/usr/share/fpcsrc/2.6.2/compiler/comprsrc.pas is in fpc-source-2.6.2 2.6.2-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | {
Copyright (c) 1998-2008 by Florian Klaempfl
Handles the resource files handling
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************
}
unit comprsrc;
{$i fpcdefs.inc}
interface
uses
Systems, cstreams, Script;
type
tresoutput = (roRES, roOBJ);
tresourcefile = class(TAbstractResourceFile)
private
fname : ansistring;
protected
function SetupCompilerArguments(output: tresoutput; const OutName :
ansistring; respath: ansistring; out ObjUsed : boolean) : ansistring; virtual;
public
constructor Create(const fn : ansistring);override;
function Compile(output: tresoutput; const OutName: ansistring) : boolean; virtual;
procedure PostProcessResourcefile(const s : ansistring);virtual;
function IsCompiled(const fn : ansistring) : boolean;virtual;
procedure Collect(const fn : ansistring);virtual;
procedure EndCollect; virtual;
end;
TWinLikeResourceFile = class(tresourcefile)
private
fResScript : TScript;
fScriptName : ansistring;
fCollectCount : integer;
protected
function SetupCompilerArguments(output: tresoutput; const OutName :
ansistring; respath: ansistring; out ObjUsed : boolean) : ansistring; override;
public
constructor Create(const fn : ansistring);override;
destructor Destroy; override;
function Compile(output: tresoutput; const OutName: ansistring) : boolean; override;
function IsCompiled(const fn : ansistring) : boolean;override;
procedure Collect(const fn : ansistring);override;
procedure EndCollect; override;
end;
procedure CompileResourceFiles;
procedure CollectResourceFiles;
Var
ResCompiler : String;
RCCompiler : String;
implementation
uses
SysUtils,
cutils,cfileutl,cclasses,
Globtype,Globals,Verbose,Fmodule, comphook,cpuinfo;
{****************************************************************************
TRESOURCEFILE
****************************************************************************}
constructor tresourcefile.create(const fn : ansistring);
begin
fname:=fn;
end;
procedure tresourcefile.PostProcessResourcefile(const s : ansistring);
begin
end;
function tresourcefile.IsCompiled(const fn: ansistring): boolean;
begin
Result:=CompareText(ExtractFileExt(fn), target_info.resobjext) = 0;
end;
procedure tresourcefile.Collect(const fn: ansistring);
begin
if fn='' then
exit;
fname:=fn;
Compile(roOBJ, ChangeFileExt(fn, target_info.resobjext));
end;
procedure tresourcefile.EndCollect;
begin
end;
function tresourcefile.SetupCompilerArguments(output: tresoutput; const OutName
: ansistring; respath: ansistring; out ObjUsed : boolean) : ansistring;
var
s : TCmdStr;
begin
if output=roRES then
begin
s:=target_res.rccmd;
Replace(s,'$RES',maybequoted(OutName));
Replace(s,'$RC',maybequoted(fname));
ObjUsed:=False;
end
else
begin
s:=target_res.rescmd;
ObjUsed:=(pos('$OBJ',s)>0);
Replace(s,'$OBJ',maybequoted(OutName));
Replace(s,'$RES',maybequoted(fname));
end;
Result:=s;
end;
function tresourcefile.compile(output: tresoutput; const OutName: ansistring)
: boolean;
Function SelectBin(Const Bin1,Bin2 : String) : String;
begin
If (Bin1<>'') then
SelectBin:=Bin1
else
SelectBin:=Bin2;
end;
var
respath,
s,
bin,
resbin : TCmdStr;
resfound,
objused : boolean;
begin
Result:=true;
if output=roRES then
Bin:=SelectBin(RCCompiler,target_res.rcbin)
else
Bin:=SelectBin(ResCompiler,target_res.resbin);
if bin='' then
begin
Result:=false;
exit;
end;
resfound:=false;
if utilsdirectory<>'' then
resfound:=FindFile(utilsprefix+bin+source_info.exeext,utilsdirectory,false,resbin);
if not resfound then
begin
resfound:=FindExe(utilsprefix+bin,false,resbin);
if not resfound and (utilsprefix<>'') and ( (output=roRES) or (Pos('$ARCH', target_res.rescmd)<>0) ) then
{ Search for resource compiler without utilsprefix, if RC->RES compiler is called }
{ or RES->OBJ compiler supports different architectures. }
resfound:=FindExe(bin,false,resbin);
end;
{ get also the path to be searched for the windres.h }
respath:=ExtractFilePath(resbin);
if (not resfound) and not(cs_link_nolink in current_settings.globalswitches) then
begin
Message1(exec_e_res_not_found, utilsprefix+bin+source_info.exeext);
current_settings.globalswitches:=current_settings.globalswitches+[cs_link_nolink];
Result:=false;
end;
s:=SetupCompilerArguments(output,OutName,respath,objused);
{ Execute the command }
{ Always try to compile resources. but don't complain if cs_link_nolink }
if resfound then
begin
Message1(exec_i_compilingresource,fname);
Message2(exec_d_resbin_params,resbin,s);
FlushOutput;
try
if ExecuteProcess(resbin,s) <> 0 then
begin
if not (cs_link_nolink in current_settings.globalswitches) then
Message(exec_e_error_while_compiling_resources);
current_settings.globalswitches:=current_settings.globalswitches+[cs_link_nolink];
Result:=false;
end;
except
on E:EOSError do
begin
if not (cs_link_nolink in current_settings.globalswitches) then
Message1(exec_e_cant_call_resource_compiler, resbin);
current_settings.globalswitches:=current_settings.globalswitches+[cs_link_nolink];
Result:=false;
end
end;
end;
{ Update asmres when externmode is set and resource compiling failed }
if (not Result) and (cs_link_nolink in current_settings.globalswitches) then
AsmRes.AddLinkCommand(resbin,s,OutName);
if Result and (output=roOBJ) and ObjUsed then
current_module.linkunitofiles.add(OutName,link_always);
end;
constructor TWinLikeResourceFile.Create(const fn : ansistring);
begin
inherited Create(fn);
fResScript:=nil;
fCollectCount:=0;
if (tf_use_8_3 in target_info.flags) then
fScriptName:=ChangeFileExt(fn,'.rls')
else
fScriptName:=ChangeFileExt(fn,'.reslst');
end;
destructor TWinLikeResourceFile.Destroy;
begin
if fResScript<>nil then
fResScript.Free;
inherited;
end;
function TWinLikeResourceFile.SetupCompilerArguments(output: tresoutput; const
OutName : ansistring; respath : ansistring; out ObjUsed : boolean) : ansistring;
var
srcfilepath,
preprocessorbin,
s : TCmdStr;
arch,
subarch: ansistring;
function WindresFileName(filename: TCmdStr): TCmdStr;
// to be on the safe side, for files that are passed to the preprocessor,
// only give short file names with forward slashes to windres
var
i: longint;
begin
Result := GetShortName(filename);
for I:=1 to Length(Result) do
if Result[I] in AllowDirectorySeparators then
Result[i]:='/';
end;
begin
srcfilepath:=ExtractFilePath(current_module.mainsource^);
if output=roRES then
begin
s:=target_res.rccmd;
if target_res.rcbin = 'windres' then
Replace(s,'$RC',WindresFileName(fname))
else
Replace(s,'$RC',maybequoted(fname));
Replace(s,'$RES',maybequoted(OutName));
ObjUsed:=False;
end
else
begin
s:=target_res.rescmd;
if (res_external_file in target_res.resflags) then
ObjUsed:=false
else
ObjUsed:=(pos('$OBJ',s)>0);
Replace(s,'$OBJ',maybequoted(OutName));
subarch:='all';
arch:=cpu2str[target_cpu];
if (source_info.cpu=systems.cpu_arm) then
begin
//Differentiate between arm and armeb
if (source_info.endian=endian_big) then
arch:=arch+'eb';
end;
Replace(s,'$ARCH',arch);
if target_info.system=system_arm_darwin then
subarch:=lower(cputypestr[current_settings.cputype]);
Replace(s,'$SUBARCH',subarch);
case target_info.endian of
endian_little : Replace(s,'$ENDIAN','littleendian');
endian_big : Replace(s,'$ENDIAN','bigendian');
end;
//call resource compiler with debug switch
if (status.verbosity and V_Debug)<>0 then
Replace(s,'$DBG','-v')
else
Replace(s,'$DBG','');
if fCollectCount=0 then
s:=s+' '+maybequoted(fname)
else
s:=s+' '+maybequoted('@'+fScriptName);
end;
{ windres doesn't like empty include paths }
if respath='' then
respath:='.';
Replace(s,'$INC',maybequoted(respath));
if (output=roRes) and (target_res.rcbin='windres') then
begin
{ try to find a preprocessor }
preprocessorbin := respath+'cpp'+source_info.exeext;
if FileExists(preprocessorbin,true) then
s:='--preprocessor='+preprocessorbin+' '+s;
if (srcfilepath<>'') then
s:='--include '+WindresFileName(srcfilepath)+' '+s;
end;
Result:=s;
end;
function TWinLikeResourceFile.compile(output: tresoutput;
const OutName: ansistring) : boolean;
begin
Result:=inherited compile(output,OutName);
//delete fpc-res.lst file if things went well
if Result and (output=roOBJ) then
DeleteFile(fScriptName);
end;
function TWinLikeResourceFile.IsCompiled(const fn: ansistring): boolean;
const
ResSignature : array [1..32] of byte =
($00,$00,$00,$00,$20,$00,$00,$00,$FF,$FF,$00,$00,$FF,$FF,$00,$00,
$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00);
knownexts : array[1..4] of string[4] = ('.lfm', '.dfm', '.xfm', '.tlb');
var
f : file;
oldfmode : byte;
buf: array[1..32] of byte;
i: longint;
ext : shortstring;
begin
ext:=lower(ExtractFileExt(fn));
Result:=CompareText(ext, target_info.resext) = 0;
if not Result then
for i:=1 to high(knownexts) do
begin
Result:=CompareText(ext, knownexts[i]) = 0;
if Result then break;
end;
if Result or not FileExists(fn, False) then exit;
oldfmode:=Filemode;
Filemode:=0;
assign(f,fn);
reset(f,1);
BlockRead(f, buf, SizeOf(buf), i);
close(f);
Filemode:=oldfmode;
if i<>SizeOf(buf) then
exit;
for i:=1 to 32 do
if buf[i]<>ResSignature[i] then
exit;
Result:=True;
end;
procedure TWinLikeResourceFile.Collect(const fn: ansistring);
begin
if fResScript=nil then
fResScript:=TScript.Create(fScriptName);
fResScript.Add(MaybeQuoted(fn));
inc(fCollectCount);
end;
procedure TWinLikeResourceFile.EndCollect;
begin
if fResScript<>nil then
begin
fResScript.WriteToDisk;
FreeAndNil(fResScript);
Compile(roOBJ,ChangeFileExt(fname,target_info.resobjext));
end;
end;
function CopyResFile(inf,outf : TCmdStr) : boolean;
var
src,dst : TCCustomFileStream;
begin
{ Copy .res file to units output dir. }
Result:=false;
src:=CFileStreamClass.Create(inf,fmOpenRead or fmShareDenyNone);
if CStreamError<>0 then
begin
Message1(exec_e_cant_open_resource_file, src.FileName);
Include(current_settings.globalswitches, cs_link_nolink);
exit;
end;
dst:=CFileStreamClass.Create(current_module.outputpath^+outf,fmCreate);
if CStreamError<>0 then
begin
Message1(exec_e_cant_write_resource_file, dst.FileName);
Include(current_settings.globalswitches, cs_link_nolink);
exit;
end;
dst.CopyFrom(src,src.Size);
dst.Free;
src.Free;
Result:=true;
end;
procedure CompileResourceFiles;
var
resourcefile : tresourcefile;
res: TCmdStrListItem;
p,s : TCmdStr;
outfmt : tresoutput;
begin
{ Don't do anything for systems supporting resources without using resource
file classes (e.g. Mac OS). They process resources elsewhere. }
if (target_info.res<>res_none) and (target_res.resourcefileclass=nil) then
exit;
p:=ExtractFilePath(ExpandFileName(current_module.mainsource^));
res:=TCmdStrListItem(current_module.ResourceFiles.First);
while res<>nil do
begin
if target_info.res=res_none then
Message(scan_e_resourcefiles_not_supported);
s:=res.FPStr;
if not path_absolute(s) then
s:=p+s;
if not FileExists(s, True) then
begin
Message1(exec_e_cant_open_resource_file, s);
Include(current_settings.globalswitches, cs_link_nolink);
exit;
end;
resourcefile:=TResourceFile(resinfos[target_info.res]^.resourcefileclass.create(s));
if resourcefile.IsCompiled(s) then
begin
resourcefile.free;
if AnsiCompareFileName(IncludeTrailingPathDelimiter(ExpandFileName(current_module.outputpath^)), p) <> 0 then
begin
{ Copy .res file to units output dir. Otherwise .res file will not be found
when only compiled units path is available }
res.FPStr:=ExtractFileName(res.FPStr); //store file name only in PPU.
if not CopyResFile(s,res.FPStr) then exit;
end;
end
else
begin
res.FPStr:=ExtractFileName(res.FPStr);
if (target_res.rcbin='') and (RCCompiler='') then
begin
{ if target does not have .rc to .res compiler, create obj }
outfmt:=roOBJ;
res.FPStr:=ChangeFileExt(res.FPStr,target_info.resobjext);
end
else
begin
outfmt:=roRES;
res.FPStr:=ChangeFileExt(res.FPStr,target_info.resext);
end;
resourcefile.compile(outfmt, current_module.outputpath^+res.FPStr);
resourcefile.free;
end;
res:=TCmdStrListItem(res.Next);
end;
end;
procedure CollectResourceFiles;
var
resourcefile : tresourcefile;
procedure ProcessModule(u : tmodule);
var
res : TCmdStrListItem;
s : TCmdStr;
begin
res:=TCmdStrListItem(u.ResourceFiles.First);
while assigned(res) do
begin
if path_absolute(res.FPStr) then
s:=res.FPStr
else
begin
s:=u.path^+res.FPStr;
if not FileExists(s,True) then
s:=u.outputpath^+res.FPStr;
end;
resourcefile.Collect(s);
res:=TCmdStrListItem(res.Next);
end;
end;
var
hp : tused_unit;
s : TCmdStr;
begin
if (target_info.res=res_none) or ((target_res.resbin='')
and (ResCompiler='')) then
exit;
// if cs_link_nolink in current_settings.globalswitches then
// exit;
s:=ChangeFileExt(current_module.ppufilename^,target_info.resobjext);
if (res_arch_in_file_name in target_res.resflags) then
s:=ChangeFileExt(s,'.'+cpu2str[target_cpu]+target_info.resobjext);
resourcefile:=TResourceFile(resinfos[target_info.res]^.resourcefileclass.create(s));
hp:=tused_unit(usedunits.first);
while assigned(hp) do
begin
ProcessModule(hp.u);
hp:=tused_unit(hp.next);
end;
ProcessModule(current_module);
{ Finish collection }
resourcefile.EndCollect;
resourcefile.free;
end;
end.
|