/usr/lib/lazarus/0.9.30.4/tools/svn2revisioninc.pas is in lazarus-src-0.9.30.4 0.9.30.4-6.
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 | { $Id: svn2revisioninc.pas 28661 2010-12-09 22:40:24Z vincents $ }
{
***************************************************************************
* *
* This source 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 code 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. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
Author: Vincent Snijders
Name:
svn2revisioninc - creates an include file with the revision number
Synopsis:
svn2revisioninc sourcedir revision.inc
Description:
svn2revisioninc creates an include file with the current revision number.
If the source directory contains a .svn subdirectory, it tries to execute
svnversion to get the revision number.
If that fails - for example, because it can't find svnversion - it opens
.svn/entries to get the revision number of the source directory.
If it can't find revision information, it checks whether the revision.inc
exists. If it exists and seems to be created with svn2revisioninc, it
will leave the file as is. Otherwise it will create a new revision.inc,
indicating that the revision number is unknown.
If the source directory don't contains a .svn subdirectory, it search for
a .git directory. If i exist, it tries to execute git to get the revision
number.
}
program Svn2RevisionInc;
{$mode objfpc}{$H+}
uses
Classes, CustApp, SysUtils, Process, UTF8Process, LCLProc, FileUtil,
Dom, XmlRead, GetOpts;
type
{ TSvn2RevisionApplication }
TSvn2RevisionApplication = class(TCustomApplication)
private
SourceDirectory,
RevisionIncFileName: string;
RevisionIncDirName: string;
RevisionStr: string;
ConstName: string;
Verbose: boolean;
UseStdOut: boolean;
function FindRevision: boolean;
function IsValidRevisionInc: boolean;
procedure WriteRevisionInc;
function ParamsValid: boolean;
procedure ShowHelp;
function CanCreateRevisionInc: boolean;
function ConstStart: string;
procedure Show(msg: string);
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure Run;
end;
var
Application: TSvn2RevisionApplication = nil;
const
RevisionIncComment = '// Created by Svn2RevisionInc';
function TSvn2RevisionApplication.FindRevision: boolean;
var
SvnDir: string;
GitDir: string;
function GetRevisionFromGitVersion : boolean;
var
GitVersionProcess: TProcessUTF8;
Buffer: string;
n: LongInt;
begin
Result:=false;
GitVersionProcess := TProcessUTF8.Create(nil);
try
with GitVersionProcess do begin
CommandLine := 'git log -1 --pretty=format:"%b"';
Options := [poUsePipes, poWaitOnExit];
try
CurrentDirectory:=GitDir;
Execute;
SetLength(Buffer, 80);
n:=OutPut.Read(Buffer[1], 80);
if (Pos('git-svn-id:', Buffer) > 0) then begin
//Read version is OK
Result:=true;
RevisionStr := Copy(Buffer, 1, n);
System.Delete(RevisionStr, 1, Pos('@', RevisionStr));
System.Delete(RevisionStr, Pos(' ', RevisionStr), Length(RevisionStr));
end;
except
// ignore error, default result is false
end;
end;
finally
GitVersionProcess.Free;
end;
end;
function GetRevisionFromSvnVersion : boolean;
var
SvnVersionProcess: TProcessUTF8;
Buffer: string;
n: LongInt;
begin
Result:=false;
SvnVersionProcess := TProcessUTF8.Create(nil);
try
with SvnVersionProcess do begin
CommandLine := 'svnversion -n "' + SourceDirectory + '"';
Options := [poUsePipes, poWaitOnExit];
try
Execute;
SetLength(Buffer, 80);
n:=OutPut.Read(Buffer[1], 80);
RevisionStr := Copy(Buffer, 1, n);
SetLength(Buffer, 1024);
n:=Stderr.Read(Buffer[1], 1024);
Result:=true;
Show('Retrieved revision with svnversion.');
Show('');
Show('svnversion error:');
Show(Copy(Buffer, 1, n));
Show('');
except
// ignore error, default result is false
end;
end;
finally
SvnVersionProcess.Free;
end;
end;
function GetRevisionFromEntriesTxt: boolean;
var
EntriesFileName: string;
EntriesText: Text;
line: string;
begin
Result:=false;
EntriesFileName:=AppendPathDelim(SourceDirectory)+'.svn'+PathDelim+'entries';
if FileExistsUTF8(EntriesFileName) then begin
try
AssignFile(EntriesText, EntriesFileName);
Reset(EntriesText);
try
// skip three lines
Readln(EntriesText, line);
if line<>'<?xml version="1.0" encoding="utf-8"?>' then begin
Readln(EntriesText);
Readln(EntriesText);
Readln(EntriesText, RevisionStr);
Result := true;
end;
finally
CloseFile(EntriesText);
end;
except
// ignore error, default result is false
end;
end;
end;
function GetRevisionFromEntriesXml: boolean;
var
EntriesFileName: string;
EntriesDoc: TXMLDocument;
EntryNode: TDomNode;
begin
Result:=false;
EntriesFileName:=AppendPathDelim(SourceDirectory)+'.svn'+PathDelim+'entries';
if FileExistsUTF8(EntriesFileName) then begin
try
ReadXMLFile(EntriesDoc, EntriesFileName);
try
EntryNode := EntriesDoc.FirstChild.FirstChild;
while not Result and (EntryNode<>nil) do begin
if EntryNode.Attributes.GetNamedItem('name').NodeValue='' then begin
RevisionStr:=EntryNode.Attributes.GetNamedItem('revision').NodeValue;
Result:=true;
end;
EntryNode := EntryNode.NextSibling;
end;
finally
EntriesDoc.Free;
end;
except
// ignore error, default result is false
end;
end;
end;
begin
Result:=false;
SvnDir:= AppendPathDelim(SourceDirectory)+'.svn';
if DirectoryExistsUTF8(SvnDir) then begin
Result := GetRevisionFromSvnVersion or GetRevisionFromEntriesTxt or
GetRevisionFromEntriesXml;
end else begin
GitDir:= AppendPathDelim(SourceDirectory) + '.git';
if DirectoryExistsUTF8(GitDir) then
Result:=GetRevisionFromGitVersion;
end;
end;
constructor TSvn2RevisionApplication.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
RevisionStr := 'Unknown';
end;
destructor TSvn2RevisionApplication.Destroy;
begin
inherited Destroy;
end;
function TSvn2RevisionApplication.IsValidRevisionInc: boolean;
var
Lines: TStringList;
begin
Result:=false;
if FileExistsUTF8(RevisionIncFileName) then begin
Lines := TStringList.Create;
Lines.LoadFromFile(UTF8ToSys(RevisionIncFileName));
if (Lines.Count=2) and
(Lines[0]=RevisionIncComment) and
(copy(Lines[1], 1, length(ConstStart))=ConstStart) then
Result:=true;
end;
end;
procedure TSvn2RevisionApplication.WriteRevisionInc;
var
RevisionIncText: Text;
begin
AssignFile(RevisionIncText, RevisionIncFileName);
Rewrite(RevisionIncText);
writeln(RevisionIncText, RevisionIncComment);
writeln(RevisionIncText, ConstStart, RevisionStr, ''';');
CloseFile(RevisionIncText);
debugln(format('Created %s for revision: %s',
[RevisionIncFileName, RevisionStr]));
end;
procedure TSvn2RevisionApplication.ShowHelp;
function ExtractFileBaseName(FileName: string): string;
begin
Result := ChangeFileExt(ExtractFileName(FileName), '');
end;
begin
debugln;
debugln(ParamStrUTF8(0));
debugln;
debugln(ExtractFileBaseName(ParamStrUTF8(0)), ' <repository path> <output file> [Options]');
debugln('or');
debugln(ExtractFileBaseName(ParamStrUTF8(0)), ' [Options] <repository path> <output file>');
debugln('or');
debugln(ExtractFileBaseName(ParamStrUTF8(0)), ' <repository path> [Options] <output file>');
debugln;
debugln('Options:');
debugln(' --o Output file');
debugln(' --c=<name> Name of constant (default RevisionStr)');
debugln(' --s write revision to stdout, do not create inc file');
debugln(' --v Be more verbose');
debugln(' --h This help screen');
debugln;
debugln('Note: <repository path> default current directory');
debugln(' <output file> default revision.inc');
debugln(' --o overrides <output file>');
debugln;
debugln(' 1st switchless parameter = <repository path>');
debugln(' 2nd switchless parameter = <output file>');
halt(1);
end;
function TSvn2RevisionApplication.ParamsValid: boolean;
var
i: integer;
index: integer;
begin
Result := False;
//reset
Verbose := False;
ConstName := 'RevisionStr';
SourceDirectory:=ChompPathDelim(ExtractFilePath(ParamStrUTF8(0)));
RevisionIncFileName := ExpandFileNameUTF8('revision.inc');
//find switchless parameters
index := 1;
for i := 1 to ParamCount do
begin
if Copy(ParamStrUTF8(i),1,1) <> '-' then
begin
case index of
1: SourceDirectory:=ChompPathDelim(ParamStrUTF8(i));
2: RevisionIncFileName := ExpandFileNameUTF8(ParamStrUTF8(i));
end;
Inc(index);
end;
end;
//parse options
if HasOption('h', 'help') or HasOption('?') then
ShowHelp;
if HasOption('v') then
Verbose := True;
if HasOption('s') then
UseStdOut := True;
if HasOption('c') then
ConstName := GetOptionValue('c');
if HasOption('o') then
RevisionIncFileName := GetOptionValue('o');
//show options
Show('SourceDirectory: ' + SourceDirectory);
Show('RevisionIncFileName: ' + RevisionIncFileName);
Show('ConstName: ' + ConstName);
Show('');
//checks
if not DirectoryExistsUTF8(SourceDirectory) then
begin
debugln('Error: Source directory "', SourceDirectory, '" doesn''t exist.');
exit;
end;
RevisionIncDirName:=ExtractFilePath(ExpandFileNameUTF8(RevisionIncFileName));
if (not UseStdOut) and (not DirectoryExistsUTF8(RevisionIncDirName)) then begin
debugln('Error: Target Directory "', RevisionIncDirName, '" doesn''t exist.');
exit;
end;
if ConstName[1] in ['0'..'9'] then
begin
debugln('Error: Invalid constant name ', ConstName, '.');
exit;
end;
Result := True;
end;
function TSvn2RevisionApplication.CanCreateRevisionInc: boolean;
begin
if (FileExistsUTF8(RevisionIncFileName)) then
Result:= FileIsWritable(RevisionIncFileName)
else
Result := DirectoryIsWritable(RevisionIncDirName);
end;
function TSvn2RevisionApplication.ConstStart: string;
begin
Result := Format('const %s = ''', [ConstName]);
end;
procedure TSvn2RevisionApplication.Show(msg: string);
begin
if Verbose then
debugln(msg);
end;
procedure TSvn2RevisionApplication.Run;
begin
if not ParamsValid then
ShowHelp;
if not CanCreateRevisionInc then exit;
if UseStdOut then begin
if FindRevision then
debugln(RevisionStr);
end
else if FindRevision or not IsValidRevisionInc then
WriteRevisionInc;
end;
begin
Application := TSvn2RevisionApplication.Create(nil);
Application.Run;
Application.Free;
end.
|