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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2008 by Giulio Bernardi
Resource support for non-PECOFF targets (ELF, Mach-O)
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
type
PResInfoNode = ^TResInfoNode;
TResInfoNode = packed record
nameid : PChar; //name / integer ID / languageID
ncounthandle : longword; //named sub-entries count / resource handle
idcountsize : longword; //id sub-entries count / resource size
subptr : PResInfoNode; //first sub-entry pointer
end;
TResHdr = packed record
rootptr : PResInfoNode; //pointer to root node
count : longword; //number of resources in the file
usedhandles : longword; //last resource handle used
handles : PPtrUint; //pointer to handles
end;
PResHdr = ^TResHdr;
var
{$ifdef FPC_HAS_WINLIKERESOURCES}
ResHeader : PResHdr; external name 'FPC_RESLOCATION';
{$else}
ResHeader : PResHdr= nil;
{$endif}
(*****************************************************************************
Private Helper Functions
*****************************************************************************)
//resource functions are case insensitive... copied from genstr.inc
function ResStrIComp(Str1, Str2 : PChar): SizeInt;
var
counter: SizeInt;
c1, c2: char;
begin
counter := 0;
c1 := upcase(str1[counter]);
c2 := upcase(str2[counter]);
while c1 = c2 do
begin
if (c1 = #0) or (c2 = #0) then break;
inc(counter);
c1 := upcase(str1[counter]);
c2 := upcase(str2[counter]);
end;
ResStrIComp := ord(c1) - ord(c2);
end;
{!fixme!}
//function InternalIsIntResource(aStr : pchar; out aInt : PtrUint) : boolean;
function InternalIsIntResource(aStr : pchar; var aInt : PtrUint) : boolean;
var i : integer;
s : shortstring;
code : word;
begin
InternalIsIntResource:=((PtrUInt(aStr) shr 16)=0);
if InternalIsIntResource then aInt:=PtrUInt(aStr)
else
begin
//a string like #number specifies an integer id
if aStr[0]='#' then
begin
i:=1;
while aStr[i]<>#0 do
inc(i);
if i>256 then i:=256;
s[0]:=chr(i-1);
Move(aStr[1],s[1],i-1);
Val(s,aInt,code);
InternalIsIntResource:=code=0;
end;
end;
end;
function BinSearchStr(arr : PResInfoNode; query : pchar; left, right : integer)
: PResInfoNode;
var pivot, res : integer;
resstr : pchar;
begin
BinSearchStr:=nil;
while left<=right do
begin
pivot:=(left+right) div 2;
resstr:=arr[pivot].nameid;
res:=ResStrIComp(resstr,query);
if res<0 then left:=pivot+1
else if res>0 then right:=pivot-1
else
begin
BinSearchStr:=@arr[pivot];
exit;
end;
end;
end;
function BinSearchInt(arr : PResInfoNode; query : pchar; left, right : integer)
: PResInfoNode;
var pivot : integer;
begin
BinSearchInt:=nil;
while left<=right do
begin
pivot:=(left+right) div 2;
if PtrUint(arr[pivot].nameid)<PtrUInt(query) then left:=pivot+1
else if PtrUint(arr[pivot].nameid)>PtrUInt(query) then right:=pivot-1
else
begin
BinSearchInt:=@arr[pivot];
exit;
end;
end;
end;
function BinSearchRes(root : PResInfoNode; aDesc : PChar) : PResInfoNode;
var aID : PtrUint;
begin
if InternalIsIntResource(aDesc,aID) then
BinSearchRes:=BinSearchInt(root^.subptr,PChar(aID),root^.ncounthandle,
root^.ncounthandle+root^.idcountsize-1)
else
BinSearchRes:=BinSearchStr(root^.subptr,aDesc,0,root^.ncounthandle-1);
end;
//Returns a pointer to a name node.
function InternalFindResource(ResourceName, ResourceType: PChar):
PResInfoNode;
begin
InternalFindResource:=nil;
if ResHeader=nil then exit;
InternalFindResource:=ResHeader^.rootptr;
InternalFindResource:=BinSearchRes(InternalFindResource,ResourceType);
if InternalFindResource<>nil then
InternalFindResource:=BinSearchRes(InternalFindResource,ResourceName);
end;
function FindSubLanguage(aPtr : PResInfoNode; aLangID : word; aMask: word) : PResInfoNode;
var arr : PResInfoNode;
i : longword;
begin
FindSubLanguage:=nil;
arr:=aPtr^.subptr;
i:=0;
while i<aPtr^.idcountsize do
begin
if (PtrUInt(arr[i].nameid) and aMask)=(aLangID and aMask) then
begin
FindSubLanguage:=@arr[i];
exit;
end;
inc(i);
end;
end;
(*****************************************************************************
Public Resource Functions
*****************************************************************************)
Function IntHINSTANCE : TFPResourceHMODULE;
begin
IntHINSTANCE:=0;
end;
Function IntEnumResourceTypes(ModuleHandle : TFPResourceHMODULE; EnumFunc : EnumResTypeProc; lParam : PtrInt) : LongBool;
var ptr : PResInfoNode;
tot, i : integer;
begin
IntEnumResourceTypes:=False;
if ResHeader=nil then exit;
tot:=ResHeader^.rootptr^.ncounthandle+ResHeader^.rootptr^.idcountsize;
ptr:=ResHeader^.rootptr^.subptr;
IntEnumResourceTypes:=true;
i:=0;
while i<tot do
begin
if not EnumFunc(ModuleHandle,ptr[i].nameid,lParam) then exit;
inc(i);
end;
end;
Function IntEnumResourceNames(ModuleHandle : TFPResourceHMODULE; ResourceType : PChar; EnumFunc : EnumResNameProc; lParam : PtrInt) : LongBool;
var ptr : PResInfoNode;
tot, i : integer;
begin
IntEnumResourceNames:=False;
if ResHeader=nil then exit;
ptr:=ResHeader^.rootptr;
ptr:=BinSearchRes(ptr,ResourceType);
if ptr=nil then exit;
tot:=ptr^.ncounthandle+ptr^.idcountsize;
ptr:=ptr^.subptr;
IntEnumResourceNames:=true;
i:=0;
while i<tot do
begin
if not EnumFunc(ModuleHandle,ResourceType,ptr[i].nameid,lParam) then exit;
inc(i);
end;
end;
Function IntEnumResourceLanguages(ModuleHandle : TFPResourceHMODULE; ResourceType, ResourceName : PChar; EnumFunc : EnumResLangProc; lParam : PtrInt) : LongBool;
var ptr : PResInfoNode;
tot, i : integer;
begin
IntEnumResourceLanguages:=False;
ptr:=InternalFindResource(ResourceName,ResourceType);
if ptr=nil then exit;
tot:=ptr^.idcountsize;
ptr:=ptr^.subptr;
IntEnumResourceLanguages:=true;
i:=0;
while i<tot do
begin
if not EnumFunc(ModuleHandle,ResourceType,ResourceName,PtrUInt(ptr[i].nameid),lParam) then exit;
inc(i);
end;
end;
Function IntFindResource(ModuleHandle: TFPResourceHMODULE; ResourceName,
ResourceType: PChar): TFPResourceHandle;
var ptr : PResInfoNode;
begin
IntFindResource:=0;
ptr:=InternalFindResource(ResourceName,ResourceType);
if ptr=nil then exit;
//first language id
ptr:=ptr^.subptr;
if ptr^.ncounthandle=0 then
begin
ResHeader^.handles[ResHeader^.usedhandles]:=PtrUint(ptr);
inc(ResHeader^.usedhandles);
ptr^.ncounthandle:=ResHeader^.usedhandles;
end;
IntFindResource:=ptr^.ncounthandle;
end;
Function IntFindResourceEx(ModuleHandle: TFPResourceHMODULE; ResourceType,
ResourceName: PChar; Language : word): TFPResourceHandle;
const LANG_NEUTRAL = 0;
LANG_ENGLISH = 9;
var nameptr,ptr : PResInfoNode;
begin
IntFindResourceEx:=0;
nameptr:=InternalFindResource(ResourceName,ResourceType);
if nameptr=nil then exit;
//try exact match
ptr:=FindSubLanguage(nameptr,Language,$FFFF);
//try primary language
if ptr=nil then
ptr:=FindSubLanguage(nameptr,Language,$3FF);
//try language neutral
if ptr=nil then
ptr:=FindSubLanguage(nameptr,LANG_NEUTRAL,$3FF);
//try english
if ptr=nil then
ptr:=FindSubLanguage(nameptr,LANG_ENGLISH,$3FF);
//nothing found, return the first one
if ptr=nil then
ptr:=nameptr^.subptr;
if ptr^.ncounthandle=0 then
begin
ResHeader^.handles[ResHeader^.usedhandles]:=PtrUint(ptr);
inc(ResHeader^.usedhandles);
ptr^.ncounthandle:=ResHeader^.usedhandles;
end;
IntFindResourceEx:=ptr^.ncounthandle;
end;
Function IntLoadResource(ModuleHandle: TFPResourceHMODULE; ResHandle: TFPResourceHandle): TFPResourceHGLOBAL;
begin
IntLoadResource:=0;
if ResHeader=nil then exit;
if (ResHandle<=0) or (ResHandle>ResHeader^.usedhandles) then exit;
IntLoadResource:=TFPResourceHGLOBAL(PResInfoNode(ResHeader^.handles[ResHandle-1])^.subptr);
end;
Function IntSizeofResource(ModuleHandle: TFPResourceHMODULE; ResHandle: TFPResourceHandle): LongWord;
begin
IntSizeofResource:=0;
if ResHeader=nil then exit;
if (ResHandle<=0) or (ResHandle>ResHeader^.usedhandles) then exit;
IntSizeofResource:=PResInfoNode(ResHeader^.handles[ResHandle-1])^.idcountsize;
end;
Function IntLockResource(ResData: TFPResourceHGLOBAL): Pointer;
begin
IntLockResource:=Nil;
if ResHeader=nil then exit;
IntLockResource:=Pointer(ResData);
end;
Function IntUnlockResource(ResData: TFPResourceHGLOBAL): LongBool;
begin
IntUnlockResource:=(ResHeader<>nil);
end;
Function IntFreeResource(ResData: TFPResourceHGLOBAL): LongBool;
begin
IntFreeResource:=(ResHeader<>nil);
end;
const
InternalResourceManager : TResourceManager =
(
HINSTANCEFunc : @IntHINSTANCE;
EnumResourceTypesFunc : @IntEnumResourceTypes;
EnumResourceNamesFunc : @IntEnumResourceNames;
EnumResourceLanguagesFunc : @IntEnumResourceLanguages;
FindResourceFunc : @IntFindResource;
FindResourceExFunc : @IntFindResourceEx;
LoadResourceFunc : @IntLoadResource;
SizeofResourceFunc : @IntSizeofResource;
LockResourceFunc : @IntLockResource;
UnlockResourceFunc : @IntUnlockResource;
FreeResourceFunc : @IntFreeResource;
);
|