-
Notifications
You must be signed in to change notification settings - Fork 1
/
cdx.cpp
393 lines (319 loc) · 9.46 KB
/
cdx.cpp
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
#include "cdx.h"
//
// CCompoundIndex
//
CCompoundIndex::CCompoundIndex( )
{
m_hFile = INVALID_HANDLE_VALUE;
m_FileSize = 0;
m_TagsCount = 0;
memset(m_szFileName, 0, sizeof(m_szFileName));
memset(&m_Header, 0, sizeof(m_Header));
m_nErrorCode = 0;
}
//
// ~CCompoundIndex
//
CCompoundIndex::~CCompoundIndex( )
{
Close();
}
//
// Открытие индексного файла
//
bool CCompoundIndex::Open( const char *szFileName, bool bExclusive )
{
DWORD dwError;
// Закрываем предыдущий открытый индексный файл
Close();
if ( (dwError = FileOpenA(szFileName, false, bExclusive, &m_hFile)) != ERROR_SUCCESS )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += szFileName;
m_sErrorMessage += " ";
m_sErrorMessage += ErrorMessage(dwError);
return false;
}
strcpy_s(m_szFileName, MAX_PATH, szFileName);
m_FileSize = FileSize(m_hFile);
if ( !ReadHeader(0, &m_Header) ) // Читаем заголовок корневого узла
return false;
if ( !ReadTags() ) // Читаем тэги
return false;
m_sErrorMessage = "";
return true;
}
//
// Закрытие индексного файла
//
void CCompoundIndex::Close( )
{
ClearTags();
if ( m_hFile != INVALID_HANDLE_VALUE )
{
FileClose(m_hFile);
m_hFile = INVALID_HANDLE_VALUE;
}
m_FileSize = 0;
}
//
// Чтение заголовка узла
//
bool CCompoundIndex::ReadHeader( unsigned int nAddress, cdx_header_t *Header )
{
DWORD dwError, dwRead;
FileSeek(m_hFile, nAddress, FILE_BEGIN);
dwError = FileRead(m_hFile, (BYTE *)Header, sizeof(cdx_header_t), &dwRead);
if ( dwError != ERROR_SUCCESS )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " ";
m_sErrorMessage += ErrorMessage(dwError);
return false;
}
if ( dwRead != sizeof(cdx_header_t) )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " неожиданный конец файла";
return false;
}
if ( !(Header->options & COMPACT_INDEX) )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " файл не является компактным индексом";
return false;
}
if ( !(Header->options & COMPOUND_INDEX) )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " файл не является составным индексом";
return false;
}
if ( Header->key_len < 1 || Header->key_len > 240 )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " длина ключа должна быть в пределах 1..240";
return false;
}
m_sErrorMessage = "";
return true;
}
//
// Процедура чтение тэгов
//
void TagEnumProc( cdx_key_t *Key, void *Param )
{
CCompoundIndex *cdx = (CCompoundIndex *)Param;
cdx_key_t *Tag = new cdx_key_t;
memcpy(Tag, Key, sizeof(cdx_key_t));
cdx->m_Tags.push_back(Tag);
}
//
// Чтение тэгов
//
bool CCompoundIndex::ReadTags( )
{
ClearTags(); // освобождаем память
if ( !ReadKeys(m_Header.root_node, m_Header.key_len, TagEnumProc) ) // Читаем тэги
{
ClearTags();
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " ошибка при чтении ключей";
return false;
}
sort(m_Tags.begin(), m_Tags.end(), SortTagsProc); // Сортируем по адресу заголовков тэгов
m_TagsCount = (unsigned int)m_Tags.size();
m_sErrorMessage = "";
return true;
}
//
// Освобождение памяти списка тэгов
//
void CCompoundIndex::ClearTags( )
{
for ( unsigned int i = 0; i < m_Tags.size(); ++i )
delete m_Tags[i];
m_Tags.clear();
m_TagsCount = 0;
}
//
// Листья
//
bool CCompoundIndex::ReadExteriorKeys( unsigned char *pNode, unsigned int nKeyLen, vector <cdx_key_t *> &Keys )
{
cdx_exterior_node_t *ExtNode = (cdx_exterior_node_t *)pNode;
unsigned long long Entry; // 8-ми байтовая переменная
unsigned int nOffset = 488;
unsigned char aKey[240];
unsigned char aKeyPrev[240];
if ( nKeyLen > 240 )
return false;
if ( ExtNode->rec_num_dup_trail_size > 6 )
return false;
unsigned char *pEntryData = ExtNode->keys_info;
for ( int i = 0; i < ExtNode->key_num; ++i )
{
memcpy(&Entry, pEntryData, ExtNode->rec_num_dup_trail_size);
unsigned int nRecNum = Entry & ExtNode->rec_num_mask;
unsigned char nDupCount = (Entry >> ExtNode->rec_num_bits) & ExtNode->dup_mask;
unsigned char nTrailCount = nKeyLen - ((unsigned char)(Entry >> (ExtNode->rec_num_bits + ExtNode->dup_bits)) & ExtNode->trail_mask);
int nLen = nTrailCount - nDupCount;
nOffset -= nLen;
memset(aKey, 0, sizeof(aKey));
if ( nDupCount )
memcpy(aKey, aKeyPrev, nDupCount); // повторяющаяся часть (берем с предыдущего ключа)
memcpy(aKey + nDupCount, ExtNode->keys_info + nOffset, nLen); // неповторяющаяся часть
// добавляем ключ
cdx_key_t *Key = new cdx_key_t;
memcpy(Key->value, aKey, sizeof(aKey));
Key->rec_num = nRecNum;
Key->intra_node = 0;
Keys.push_back(Key);
memcpy(aKeyPrev, aKey, sizeof(aKey)); // запоминаем предыдущий ключ
pEntryData += ExtNode->rec_num_dup_trail_size;
if ( pEntryData - ExtNode->keys_info > 488 ) // Проверим превышение размера в случае поврежденного файла
return false;
}
return true;
}
//
// Каталоги
//
bool CCompoundIndex::ReadInteriorKeys( unsigned char *pNode, unsigned int nKeyLen, vector <cdx_key_t *> &Keys )
{
cdx_interior_node_t *IntNode = (cdx_interior_node_t *)pNode;
unsigned int nRecNum;
unsigned int nIntraNode;
unsigned char aKey[240];
if ( nKeyLen > 240 )
return false;
unsigned char *pEntryData = IntNode->keys_info;
for ( int i = 0; i < IntNode->key_num; ++i )
{
memset(aKey, 0, sizeof(aKey));
memcpy(aKey, pEntryData, nKeyLen);
memcpy(&nRecNum, pEntryData + nKeyLen, 4);
memcpy(&nIntraNode, pEntryData + nKeyLen + 4, 4);
// добавляем ключ
cdx_key_t *Key = new cdx_key_t;
memcpy(Key->value, aKey, sizeof(aKey));
Key->rec_num = SwapBytes32(nRecNum);
Key->intra_node = SwapBytes32(nIntraNode);
Keys.push_back(Key);
pEntryData += (nKeyLen + 4 + 4);
if ( pEntryData - IntNode->keys_info > 500 ) // Проверим превышение размера в случае поврежденного файла
return false;
}
return true;
}
//
// Чтение ключей
//
bool CCompoundIndex::ReadKeys( unsigned int nAddress, unsigned int nKeyLen, void proc(cdx_key_t *key, void *param) )
{
DWORD dwError, dwRead;
unsigned char pNode[512];
if ( nAddress >= m_FileSize )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " адрес узла превышает или равен размеру файла";
return false;
}
FileSeek(m_hFile, nAddress, FILE_BEGIN);
dwError = FileRead(m_hFile, (BYTE *)pNode, 512, &dwRead);
if ( dwError != ERROR_SUCCESS )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " ";
m_sErrorMessage += ErrorMessage(dwError);
return false;
}
if ( dwRead != 512 )
{
m_sErrorMessage = __FUNCTION__;
m_sErrorMessage += ": ";
m_sErrorMessage += m_szFileName;
m_sErrorMessage += " неожиданный конец файла";
return false;
}
//bool bRoot = (pNode[0] & 0x01);
bool bLeaf = (pNode[0] & 0x02) ? true : false;
//bool bKeys = (pNode[0] & 0x04); // ?????
if ( /*bRoot &&*/ bLeaf ) // root, leaf
{
//Keys.clear();
vector <cdx_key_t *> Keys2;
ReadExteriorKeys(pNode, nKeyLen, Keys2);
for ( size_t n = 0; n < Keys2.size(); ++n )
{
proc(Keys2[n], this);
delete Keys2[n];
}
}
else //if ( /*bRoot &&*/ !bLeaf ) // root, not leaf
{
vector <cdx_key_t *> iTags;
ReadInteriorKeys(pNode, nKeyLen, iTags);
for ( unsigned int i = 0; i < iTags.size(); ++i )
{
ReadKeys(iTags[i]->intra_node, nKeyLen, /*Keys*/proc);
delete iTags[i];
}
}
m_sErrorMessage = "";
return true;
}
//
// Проверка номера (тэга) индекса
//
bool CCompoundIndex::CheckTagNum( int nTagNum )
{
return (nTagNum >= 0 && nTagNum < (int)m_TagsCount);
}
//
// Количество тэгов
//
int CCompoundIndex::GetTagsCount( )
{
return m_TagsCount;
}
//
// Имя тэга по номеру
//
const char *CCompoundIndex::GetTagName( int nTagNum )
{
if ( !CheckTagNum(nTagNum) )
return NULL;
return m_Tags[nTagNum]->value;
}
//
// Процедура сортировки тэгов
//
bool CCompoundIndex::SortTagsProc( cdx_key_t *i, cdx_key_t *j )
{
return ( i->rec_num < j->rec_num );
}
//
//Сообщение о последней ошибке
//
string CCompoundIndex::GetLastErrorMessage( )
{
return m_sErrorMessage;
}