forked from pyscripter/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVerInfo.pas
438 lines (383 loc) · 11.6 KB
/
VerInfo.pas
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
{*******************************************************}
{ }
{ Delphi VCL Extensions (RX) }
{ }
{ Copyright (c) 1995, 1996 AO ROSNO }
{ }
{*******************************************************}
unit VerInfo;
{ Working with VERSIONINFO resourse type }
interface
{I RX.INC}
{$IFDEF WIN32}
uses Windows;
{$ELSE}
uses Ver;
{$ENDIF}
type
TVersionLanguage = (vlArabic, vlBulgarian, vlCatalan, vlTraditionalChinese,
vlCzech, vlDanish, vlGerman, vlGreek, vlUSEnglish, vlCastilianSpanish,
vlFinnish, vlFrench, vlHebrew, vlHungarian, vlIcelandic, vlItalian,
vlJapanese, vlKorean, vlDutch, vlNorwegianBokmel, vlPolish,
vlBrazilianPortuguese, vlRhaetoRomanic, vlRomanian, vlRussian,
vlCroatoSerbian, vlSlovak, vlAlbanian, vlSwedish, vlThai, vlTurkish,
vlUrdu, vlBahasa, vlSimplifiedChinese, vlSwissGerman, vlUKEnglish,
vlMexicanSpanish, vlBelgianFrench, vlSwissItalian, vlBelgianDutch,
vlNorwegianNynorsk, vlPortuguese, vlSerboCroatian, vlCanadianFrench,
vlSwissFrench, vlUnknown);
TVersionCharSet = (vcsASCII, vcsJapan, vcsKorea, vcsTaiwan, vcsUnicode,
vcsEasternEuropean, vcsCyrillic, vcsMultilingual, vcsGreek, vcsTurkish,
vcsHebrew, vcsArabic, vcsUnknown);
{$IFNDEF WIN32}
PVSFixedFileInfo = Pvs_FixedFileInfo;
DWORD = Longint;
{$ENDIF}
TLongVersion = record
case Integer of
0: (All: array[1..4] of Word);
1: (MS, LS: LongInt);
end;
{ TVersionInfo }
TVersionInfo = class(TObject)
private
FFileName: PChar;
FValid: Boolean;
FSize: DWORD;
FBuffer: PChar;
FHandle: DWORD;
procedure ReadVersionInfo;
function GetFileName: string;
procedure SetFileName(const Value: string);
function GetTranslation: Pointer;
function GetFixedFileInfo: PVSFixedFileInfo;
function GetFileLongVersion: TLongVersion;
function GetProductLongVersion: TLongVersion;
function GetTranslationString: string;
function GetComments: string;
function GetCompanyName: string;
function GetFileDescription: string;
function GetFileVersion: string;
function GetVersionNum: Longint;
function GetInternalName: string;
function GetLegalCopyright: string;
function GetLegalTrademarks: string;
function GetOriginalFilename: string;
function GetProductVersion: string;
function GetProductName: string;
function GetSpecialBuild: string;
function GetPrivateBuild: string;
function GetVersionLanguage: TVersionLanguage;
function GetVersionCharSet: TVersionCharSet;
function GetVerFileDate: TDateTime;
public
constructor Create(const AFileName: string);
destructor Destroy; override;
function GetVerValue(const VerName: string): string;
property FileName: string read GetFileName write SetFileName;
property Valid: Boolean read FValid;
property FixedFileInfo: PVSFixedFileInfo read GetFixedFileInfo;
property FileLongVersion: TLongVersion read GetFileLongVersion;
property ProductLongVersion: TLongVersion read GetProductLongVersion;
property Translation: Pointer read GetTranslation;
property VersionLanguage: TVersionLanguage read GetVersionLanguage;
property VersionCharSet: TVersionCharSet read GetVersionCharSet;
property VersionNum: Longint read GetVersionNum;
property Comments: string read GetComments;
property CompanyName: string read GetCompanyName;
property FileDescription: string read GetFileDescription;
property FileVersion: string read GetFileVersion;
property InternalName: string read GetInternalName;
property LegalCopyright: string read GetLegalCopyright;
property LegalTrademarks: string read GetLegalTrademarks;
property OriginalFilename: string read GetOriginalFilename;
property ProductVersion: string read GetProductVersion;
property ProductName: string read GetProductName;
property SpecialBuild: string read GetSpecialBuild;
property PrivateBuild: string read GetPrivateBuild;
property Values[const Name: string]: string read GetVerValue;
property VerFileDate: TDateTime read GetVerFileDate;
end;
function LongVersionToString(const Version: TLongVersion): string;
function StringToLongVersion(const Str: string): TLongVersion;
{ Installation utility routine }
function OkToWriteModule(ModuleName: string; NewVer: Longint): Boolean;
implementation
{$IFDEF WIN32}
uses SysUtils{, FileUtil, DateUtil};
{$ELSE}
uses WinTypes, WinProcs, SysUtils, FileUtil, DateUtil;
{$ENDIF}
const
{$IFDEF WIN32}
NullDate: TDateTime = {-693594} 0;
{$ELSE}
NullDate: TDateTime = 0;
{$ENDIF}
function MemAlloc(Size: Longint): Pointer;
{$IFDEF WIN32}
begin
GetMem(Result, Size);
end;
{$ELSE}
var
Handle: THandle;
begin
if Size < 65535 then GetMem(Result, Size)
else begin
Handle := GlobalAlloc(HeapAllocFlags, Size);
Result := GlobalLock(Handle);
end;
end;
{$ENDIF WIN32}
const
LanguageValues: array[TVersionLanguage] of Word = ($0401, $0402, $0403,
$0404, $0405, $0406, $0407, $0408, $0409, $040A, $040B, $040C, $040D,
$040E, $040F, $0410, $0411, $0412, $0413, $0414, $0415, $0416, $0417,
$0418, $0419, $041A, $041B, $041C, $041D, $041E, $041F, $0420, $0421,
$0804, $0807, $0809, $080A, $080C, $0810, $0813, $0814, $0816, $081A,
$0C0C, $100C, $0000);
const
CharacterSetValues: array[TVersionCharSet] of Integer = (0, 932, 949, 950,
1200, 1250, 1251, 1252, 1253, 1254, 1255, 1256, -1);
{ TVersionInfo }
constructor TVersionInfo.Create(const AFileName: string);
begin
inherited Create;
FFileName := StrPCopy(StrAlloc(Length(AFileName) + 1), AFileName);
ReadVersionInfo;
end;
destructor TVersionInfo.Destroy;
begin
if FBuffer <> nil then FreeMem(FBuffer, FSize);
StrDispose(FFileName);
inherited Destroy;
end;
procedure TVersionInfo.ReadVersionInfo;
begin
FValid := False;
FSize := GetFileVersionInfoSize(FFileName, FHandle);
if FSize > 0 then
try
FBuffer := MemAlloc(FSize);
FValid := GetFileVersionInfo(FFileName, FHandle, FSize, FBuffer);
except
FValid := False;
raise;
end;
end;
function TVersionInfo.GetFileName: string;
begin
Result := StrPas(FFileName);
end;
procedure TVersionInfo.SetFileName(const Value: string);
begin
if FBuffer <> nil then FreeMem(FBuffer, FSize);
FBuffer := nil;
StrDispose(FFileName);
FFileName := StrPCopy(StrAlloc(Length(Value) + 1), Value);
ReadVersionInfo;
end;
function TVersionInfo.GetTranslation: Pointer;
var
{$IFDEF WIN32}
Len: UINT;
{$ELSE}
Len: Cardinal;
{$ENDIF}
begin
if not (Valid and VerQueryValue(FBuffer, '\VarFileInfo\Translation', Result, Len)) then
Result := nil;
end;
function TVersionInfo.GetTranslationString: string;
var
P: Pointer;
begin
Result := '';
P := GetTranslation;
if P <> nil then Result := IntToHex(MakeLong(HiWord(Longint(P^)), LoWord(Longint(P^))), 8)
else Result := '040904E4';
end;
function TVersionInfo.GetVersionLanguage: TVersionLanguage;
var
P: Pointer;
begin
P := GetTranslation;
for Result := vlArabic to vlUnknown do
if LoWord(Longint(P^)) = LanguageValues[Result] then Break;
end;
function TVersionInfo.GetVersionCharSet: TVersionCharSet;
var
P: Pointer;
begin
P := GetTranslation;
for Result := vcsASCII to vcsUnknown do
if HiWord(Longint(P^)) = CharacterSetValues[Result] then Break;
end;
function TVersionInfo.GetFixedFileInfo: PVSFixedFileInfo;
var
{$IFDEF WIN32}
Len: UINT;
{$ELSE}
Len: Cardinal;
{$ENDIF}
begin
if Valid then VerQueryValue(FBuffer, '\', Pointer(Result), Len)
else Result := nil;
end;
function TVersionInfo.GetProductLongVersion: TLongVersion;
begin
if FixedFileInfo <> nil then begin;
Result.MS := FixedFileInfo^.dwProductVersionMS;
Result.LS := FixedFileInfo^.dwProductVersionLS;
end else begin
Result.MS := 0;
Result.LS := 0;
end;
end;
function TVersionInfo.GetFileLongVersion: TLongVersion;
begin
if FixedFileInfo <> nil then begin;
Result.MS := FixedFileInfo^.dwFileVersionMS;
Result.LS := FixedFileInfo^.dwFileVersionLS;
end else begin
Result.MS := 0;
Result.LS := 0;
end;
end;
function TVersionInfo.GetVersionNum: Longint;
begin
if Valid then Result := FixedFileInfo^.dwFileVersionMS
else Result := 0;
end;
function TVersionInfo.GetVerValue(const VerName: string): string;
var
szName: array[0..255] of Char;
Value: Pointer;
{$IFDEF WIN32}
Len: UINT;
{$ELSE}
Len: Cardinal;
{$ENDIF}
begin
Result := '';
if Valid then begin
StrPCopy(szName, '\StringFileInfo\' + GetTranslationString + '\' + VerName);
if VerQueryValue(FBuffer, szName, Value, Len) then
Result := StrPas(PChar(Value));
end;
end;
function TVersionInfo.GetComments: string;
begin
Result := GetVerValue('Comments');
end;
function TVersionInfo.GetCompanyName: string;
begin
Result := GetVerValue('CompanyName');
end;
function TVersionInfo.GetFileDescription: string;
begin
Result := GetVerValue('FileDescription');
end;
function TVersionInfo.GetFileVersion: string;
begin
Result := GetVerValue('FileVersion');
if (Result = '') and Valid then
Result := LongVersionToString(FileLongVersion);
end;
function TVersionInfo.GetInternalName: string;
begin
Result := GetVerValue('InternalName');
end;
function TVersionInfo.GetLegalCopyright: string;
begin
Result := GetVerValue('LegalCopyright');
end;
function TVersionInfo.GetLegalTrademarks: string;
begin
Result := GetVerValue('LegalTrademarks');
end;
function TVersionInfo.GetOriginalFilename: string;
begin
Result := GetVerValue('OriginalFilename');
end;
function TVersionInfo.GetProductVersion: string;
begin
Result := GetVerValue('ProductVersion');
if (Result = '') and Valid then
Result := LongVersionToString(ProductLongVersion);
end;
function TVersionInfo.GetProductName: string;
begin
Result := GetVerValue('ProductName');
end;
function TVersionInfo.GetSpecialBuild: string;
begin
Result := GetVerValue('SpecialBuild');
end;
function TVersionInfo.GetPrivateBuild: string;
begin
Result := GetVerValue('PrivateBuild');
end;
function FileDateTime(const FileName: string): System.TDateTime;
var
Age: Longint;
begin
Age := FileAge(FileName);
if Age = -1 then
Result := NullDate
else
Result := FileDateToDateTime(Age);
end;
function TVersionInfo.GetVerFileDate: TDateTime;
begin
if FileExists(FileName) then
Result := FileDateTime(FileName)
else Result := NullDate;
end;
{ Long version string routines }
function LongVersionToString(const Version: TLongVersion): string;
begin
with Version do
Result := Format('%d.%d.%d.%d', [All[2], All[1], All[4], All[3]]);
end;
function StringToLongVersion(const Str: string): TLongVersion;
var
Sep: Integer;
Tmp, Fragment: string;
I: Byte;
begin
Tmp := Str;
for I := 1 to 4 do begin
Sep := Pos('.', Tmp);
if Sep = 0 then Sep := Pos(',', Tmp);
if Sep = 0 then Fragment := Tmp
else begin
Fragment := Copy(Tmp, 1, Sep - 1);
Tmp := Copy(Tmp, Sep + 1, MaxInt);
end;
if Fragment = '' then Result.All[I] := 0
else Result.All[I] := StrToInt(Fragment);
end;
I := Result.All[1];
Result.All[1] := Result.All[2];
Result.All[2] := I;
I := Result.All[3];
Result.All[3] := Result.All[4];
Result.All[4] := I;
end;
{ Installation utility routines }
function OkToWriteModule(ModuleName: string; NewVer: Longint): Boolean;
{ Return True if it's ok to overwrite ModuleName with NewVer }
begin
{Assume we should overwrite}
OkToWriteModule := True;
with TVersionInfo.Create(ModuleName) do begin
try
if Valid then {Should we overwrite?}
OkToWriteModule := NewVer > VersionNum;
finally
Free;
end;
end;
end;
end.