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
|
{
fpGUI - Free Pascal GUI Toolkit
Copyright 2003 Aaron Lawrence (aaronl at consultant dot com)
Copyright (C) 2006 - 2011 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
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.
Description:
Code to read and use the IPF search tables. Note: The RLE
decompression was arrived at by trial and error. It seems
to be correct but it's difficult to test.
}
Unit SearchTable;
{$mode objfpc}{$H+}
interface
uses
Classes, IPFFileFormatUnit;
type
TSearchTable = class(TObject)
protected
_Data: pointer;
_Entries: TList; // pointers to panel flag records
_RecordLengthIs16Bit: boolean;
_DictionaryCount: longint;
_TopicCount: longint;
procedure ReadEntries;
Procedure Check1ByteOfFlags( b: byte;
StartingIndex: longint;
Results: UInt32ArrayPointer );
procedure DoRLESearch( p: pbyte;
pDataEnd: pointer;
Results: UInt32ArrayPointer );
public
constructor Create( Data: pointer;
RecordLengthIs16Bit: boolean;
DictionaryCount: longint;
TopicCount: longint );
destructor Destroy; override;
// Sets Results to 1 for occurrences of DictIndex
procedure Search( DictIndex: uint16;
Results: UInt32ArrayPointer );
end;
implementation
constructor TSearchTable.Create( Data: pointer;
RecordLengthIs16Bit: boolean;
DictionaryCount: longint;
TopicCount: longint );
begin
_Data := Data;
_RecordLengthIs16Bit := RecordLengthIs16Bit;
_Entries := TList.Create;
_DictionaryCount := DictionaryCount;
_TopicCount := TopicCount;
ReadEntries;
end;
destructor TSearchTable.Destroy;
begin
_Entries.Destroy;
end;
procedure TSearchTable.ReadEntries;
var
pWordRecord: pointer;
RecordLen: uint16;
WordIndex: uint16;
begin
pWordRecord:= _Data;
for WordIndex:= 0 to _DictionaryCount - 1 do
begin
_Entries.Add( pWordRecord );
if _RecordLengthIs16Bit then
RecordLen:= pUInt16( pWordRecord )^
else // 8 bit
RecordLen:= pUInt8( pWordRecord )^;
inc( pWordRecord, RecordLen );
end;
end;
// Search table decompression
// Looks through a single byte of 8 flags, given by b,
// and updates topic entries within results for any flags
// that are set.
Procedure TSearchTable.Check1ByteOfFlags( b: byte;
StartingIndex: longint;
Results: UInt32ArrayPointer );
var
TopicIndex: longint;
begin
TopicIndex:= StartingIndex;
while b > 0 do
begin
if b and $80 > 0 then
Results^[ TopicIndex ] := 1;
inc( TopicIndex );
b:= b shl 1;
end;
end;
// Decompress RLE compressed data starting at p,
// running til pDataEnd. Update topic entries in Results.
procedure TSearchTable.DoRLESearch( p: pbyte;
pDataEnd: pointer;
Results: UInt32ArrayPointer );
var
TopicIndex: integer;
N: integer;
thebyte: byte;
byte1, byte2: byte;
begin
assert( pbyte( p )^ = 1, 'Unexpected RLE type' );
inc( p ); // skip header, always 1?
TopicIndex:= 0;
while p < pDataEnd do
begin
thebyte:= p^;
inc( p );
if thebyte = $80 then
begin
// escape
thebyte := p^;
inc( p );
if thebyte = 0 then
begin
// 16 bit repeat of zeroes??
N := pUInt16( p )^ + 1;
inc( p, 2 );
inc( TopicIndex, N );
end
else
begin
// n+1 repeats of next 2 bytes???
N := thebyte + 1;
byte1 := p^;
inc( p );
byte2 := p^;
inc( p );
while N > 0 do
begin
Check1ByteOfFlags( byte1,
TopicIndex,
Results );
inc( TopicIndex, 8 );
Check1ByteOfFlags( byte2,
TopicIndex,
Results );
inc( TopicIndex, 8 );
dec( N );
end;
end;
end
else
begin
N:= thebyte and $7f + 1;
if thebyte and $80 > 0 then
begin
// literal data
while N > 0 do
begin
Check1ByteOfFlags( p^,
TopicIndex,
Results );
inc( TopicIndex, 8 );
inc( p );
dec( N );
end;
end
else
begin
// repeat of next byte
thebyte := p^;
inc( p );
while N > 0 do
begin
Check1ByteOfFlags( thebyte,
TopicIndex,
Results );
inc( TopicIndex, 8 );
dec( N );
end;
end;
end;
end;
end;
// This function finds uses of the given word (DictIndex)
// using the search table. Results[ topic ] is set to
// non-zero for topics which contain the word.
procedure TSearchTable.Search( DictIndex: uint16;
Results: UInt32ArrayPointer );
var
TopicIndex: integer;
pWordRecord: pointer;
RecordLen: uint16;
CompressionCode: uint8;
pData: pointer;
pDataEnd: pointer;
Flags: uint8;
begin
pWordRecord:= _Entries[ DictIndex ];
// Check search table format
if _RecordLengthIs16Bit then
begin
RecordLen:= pUInt16( pWordRecord )^;
CompressionCode:= pUInt8( pWordRecord + 2 )^;
pData:= pWordRecord + 3;
end
else // 8 bit
begin
RecordLen:= pUInt8( pWordRecord )^;
CompressionCode:= pUInt8( pWordRecord + 1 )^;
pData:= pWordRecord + 2;
end;
// Decompress the search table for this word
pDataEnd:= pWordRecord + RecordLen;
case CompressionCode of
0: // word not used anywhere.
ClearUInt32Array( Results, _TopicCount );
1: // used in all panels
FillUInt32Array( Results, _TopicCount, 1 );
2: // RLE
begin
ClearUInt32Array( Results, _TopicCount );
DoRLESearch( pData,
pDataEnd,
Results );
end;
3: // list of topics containing word
begin
ClearUInt32Array( Results, _TopicCount );
while pData < pDataEnd do
begin
TopicIndex:= pUInt16( pData )^;
Results^[ TopicIndex ] := 1;
inc( pData, 2 );
end;
end;
4: // list of topics NOT containing word
begin
FillUInt32Array( Results, _TopicCount, 1 );
while pData < pDataEnd do
begin
TopicIndex:= pUInt16( pData )^;
Results^[ TopicIndex ] := 0;
inc( pData, 2 );
end;
end;
5, // compressed by truncating bit stream at last byte containing a set bit.
6: // same as above but starting at non-zero byte (first word contains start topic)
begin
ClearUInt32Array( Results, _TopicCount );
if CompressionCode = 5 then
begin
TopicIndex:= 0
end
else
begin
TopicIndex:= pUInt16( pData )^ * 8;
inc( pData, 2 );
end;
while pData < pDataEnd do
begin
Flags:= pUInt8( pData )^;
Check1ByteOfFlags( Flags,
TopicIndex,
Results );
inc( TopicIndex, 8 );
inc( pData );
end;
end;
else { unmatched case items }
begin
// writeln('Unknown search method: Found no topic text match');
// unknown method
ClearUInt32Array( Results, _TopicCount );
end;
end;
end;
end.
|