-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMaxLogic.Exe.StringExtractorWorker.pas
More file actions
273 lines (212 loc) · 5.03 KB
/
MaxLogic.Exe.StringExtractorWorker.pas
File metadata and controls
273 lines (212 loc) · 5.03 KB
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
unit MaxLogic.Exe.StringExtractorWorker;
interface
uses
windows, classes, SysUtils,
Messages, Controls, Forms, Dialogs,
ExeImage,
ComCtrls,
RXMisc,
HexDump,
XPMan,
// PiotrLib,,
// LingoMaxDictionary,
MaxLogic.DFM, rxtypes;
const
CR = #13 + #10;
Type
{$IFNDEF UNICODE}
UnicodeString = WideString;
{$ENDIF}
TStringElement = class(TObject)
private
FName: string;
FValue: string;
procedure SetName(const Value: string);
procedure SetValue(const Value: string);
public
constructor Create;
destructor Destroy; override;
property Name: string read FName write SetName;
Property Value: string read FValue write SetValue;
end;
TStringExtractor = class(TObject)
private
fExeImage: TExeImage;
fForms: TList;
fStrings: TList;
fFileName: string;
fExcludeList: TStringList;
procedure LoadResources(ResList: TResourceList);
procedure AddStringTable(Str: UnicodeString);
function GetDFMObject(index: integer): TDFMObject;
function GetFormsCount: integer;
function IsOnExcludeList(const PropName: string): Boolean;
public
constructor Create;
destructor Destroy; override;
procedure Extract(const FileName: string);
procedure Clear;
procedure LoadExcludeList(const FileName: string);
property Forms[index: integer]: TDFMObject read GetDFMObject;
Property FormsCount: integer read GetFormsCount;
end;
implementation
uses
maxLogic.ioUtils, ioutils, masks;
Function eTime: string;
begin
result := FormatDateTime('yyyy"-"mm"-"dd" "hh":"nn":"ss', now);
end;
{ TStringElement }
constructor TStringElement.Create;
begin
inherited;
end;
destructor TStringElement.Destroy;
begin
inherited;
end;
procedure TStringElement.SetName(const Value: string);
begin
FName := Value;
end;
procedure TStringElement.SetValue(const Value: string);
begin
FValue := Value;
end;
{ TStringExtractor }
procedure TStringExtractor.AddStringTable(Str: UnicodeString);
var
i: integer;
res: TStringElement;
NumberTable, Value: UnicodeString;
begin
i := Pos(',', Str);
NumberTable := copy(Str, 1, i - 1);
Value := copy(Str, i + 1, length(Str));
Value := Trim(Value);
// remove " from the start and the end
delete(Value, 1, 1);
delete(Value, length(Value), 1);
res := TStringElement.Create;
res.Name := NumberTable;
res.Value := Value;
fStrings.add(res);
end;
procedure TStringExtractor.Clear;
VAR
X: integer;
begin
for X := 0 to fForms.Count - 1 do
TObject(Forms[X]).Free;
fForms.Clear;
for X := 0 to fStrings.Count - 1 do
TObject(fStrings[X]).Free;
fStrings.Clear;
if Assigned(fExeImage) then
FreeAndNIL(fExeImage);
end;
constructor TStringExtractor.Create;
begin
inherited;
fExeImage := NIL;
fExcludeList := TStringList.Create;
fForms := TList.Create;
fStrings := TList.Create;
end;
destructor TStringExtractor.Destroy;
begin
Clear;
fExcludeList.Free;
fForms.Free;
fStrings.Free;
inherited;
end;
procedure TStringExtractor.Extract(const FileName: string);
var
ResList: TResourceList;
begin
Clear;
fFileName := FileName;
fExeImage := TExeImage.CreateImage(NIL, FileName);
ResList := fExeImage.Resources;
LoadResources(ResList);
end;
function TStringExtractor.GetDFMObject(index: integer): TDFMObject;
begin
result := fForms[index];
end;
function TStringExtractor.GetFormsCount: integer;
begin
result := fForms.Count
end;
function TStringExtractor.IsOnExcludeList(const PropName: string): Boolean;
var
X: integer;
s: string;
begin
result := false;
s := Lowercase(PropName);
for X := 0 to fExcludeList.Count - 1 do
begin
if masks.MatchesMask(s, fExcludeList[X]) then
begin
result := True;
Break;
end;
end;
end;
procedure TStringExtractor.LoadExcludeList(const FileName: string);
var
X: integer;
begin
fExcludeList.Clear;
fExcludeList.loadFromFile(FileName);
for X := 0 to fExcludeList.Count - 1 do
fExcludeList[X] := Lowercase(fExcludeList[X]);
end;
procedure TStringExtractor.LoadResources(ResList: TResourceList);
var
ResItem: TResourceItem;
i, J: integer;
ResStr: TStringList;
H: THandle;
MM: TMemoryStream;
res: TResourceStream;
DFM: TDFMObject;
begin
H := LoadLibrary(PChar(fFileName));
ResStr := TStringList.Create;
for i := 0 to ResList.Count - 1 do
begin
case ResList[i].ResType of
rtString:
begin
ResItem := TResourceItem(ResList[i]);
ResStr.Assign(ResItem);
for J := 0 to ResStr.Count - 1 do
AddStringTable(ResStr[J]);
end;
rtRCData:
begin
try
res := TResourceStream.Create(H, ResList[i].Name, RT_RCDATA);
DFM := TDFMObject.Create;
try
DFM.LoadFromStream(res);
fForms.add(DFM);
except
DFM.Free;
end;
res.Free;
except
// do nothing
end;
end;
end; // case
if ResList[i].IsList then
LoadResources(ResList[i].List);
end; // for reslist
ResStr.Free;
end;
end.