File: step2vpl.cpp

package info (click to toggle)
sword 1.7.3%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,584 kB
  • ctags: 5,515
  • sloc: cpp: 41,736; sh: 11,924; ansic: 6,447; objc: 1,362; makefile: 1,239; cs: 897; java: 821; perl: 784; pascal: 681; tcl: 350; xml: 180; python: 79
file content (580 lines) | stat: -rw-r--r-- 16,823 bytes parent folder | download
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/******************************************************************************
 *
 *  step2vpl.cpp -	Utility to export a STEP module as VPL
 *
 * $Id: step2vpl.cpp 2833 2013-06-29 06:40:28Z chrislit $
 *
 * Copyright 2000-2013 CrossWire Bible Society (http://www.crosswire.org)
 *	CrossWire Bible Society
 *	P. O. Box 2528
 *	Tempe, AZ  85280-2528
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation version 2.
 *
 * 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.  See the GNU
 * General Public License for more details.
 *
 */

#ifdef _MSC_VER
	#pragma warning( disable: 4251 )
	#pragma warning( disable: 4996 )
#endif

#include <iostream>
#include <string>
#include <stdio.h>
#include <sys/stat.h>

#include <fcntl.h>

#ifndef __GNUC__
#include <io.h>
#else
#include <unistd.h>
#endif

#include <filemgr.h>
#include <lzsscomprs.h>

using namespace std;
#ifndef NO_SWORD_NAMESPACE
using namespace sword;
#endif

long SECTIONSLEVELSTART = 38;
long SECTIONSLEVELSIZE = 29;

long VIEWABLEBLOCKSTART = 0;
long VIEWABLEBLOCKSIZE = 0;

typedef struct {
	short versionRecordSize;
	short publisherID;
	short bookID;
	short setID;
	char conversionProgramVerMajor;
	char conversionProgramVerMinor;
	char leastCompatSTEPVerMajor;
	char leastCompatSTEPVerMinor;
	char encryptionType;
	char editionID;
	short modifiedBy;
} Version;

typedef struct {
	short sectionsHeaderRecordSize;
	long levelEntriesCount; // this is listed as nonGlossBlocksCount in spec!
	long glossEntriesCount;
	short levelEntriesSize;
	long reserved;
} SectionsHeader;

typedef struct {
	short viewableHeaderRecordSize;
	long viewableBlocksCount; // this is listed as nonGlossBlocksCount in spec!
	long glossBlocksCount;
	char compressionType; // 0 - none; 1 - LZSS
	char reserved1;
	short blockEntriesSize;
	short reserved2;
} ViewableHeader;

typedef struct {
	short vSyncHeaderRecordSize;
	short startBookNumber;
	short endBookNumber;
	short bookPointerEntriesSize;
	short syncPointEntriesSize;
	long reserved1_1;
	short reserved1_2;
} VSyncHeader;

typedef struct {
	long offset;
	long uncompressedSize;
	long size;
} ViewableBlock;
		
typedef struct {
	long offset;	// offset into VSYNC.IDX to first VSyncPoint
	short count;	// number of VSyncPoints for this book
} VSyncBooksInfo;
		
typedef struct {
	short chapter;
	short verse;
	long offset;	// offset into SECTIONS.IDX
} VSyncPoint;

typedef struct {
	long parentOffset; // many of these are 0 if glossary
	long previousOffset; 
	long nextOffset;
	long viewableOffset;
	short startLevel;
	char level;
	long nameOffset;
	long outSync_1;
	short outSync_2;
} SectionLevelInfo;

void readVersion(int fd, Version *versionRecord);
void readHeaderControlWordAreaText(int fd, char **buf);
void readViewableHeader(int fd, ViewableHeader *viewableHeaderRecord);
void readVSyncHeader(int fd, VSyncHeader *vSyncHeaderRecord);
void readVSyncBooksInfo(int fd, VSyncHeader *, VSyncBooksInfo **vSyncBooksInfo);
void readViewableBlock(int fd, ViewableBlock *vb);
void readViewableBlockText(int fd, ViewableBlock *vb, char **buf);
void readSectionsHeader(int fd, SectionsHeader *sectionsHeaderRecord);
void readSectionLevelInfo(int fd, SectionLevelInfo *sli);
void readSectionName(int fd, SectionLevelInfo *sli, char **name);
void displayBook(int fdbook, int fdviewable, int fdvsync, int fdsections, VSyncBooksInfo *vSyncBooksInfo);
void extractVerseText(int fdviewable, int fdbook, SectionLevelInfo *sectionLevelInfo, char **verseText);
void cleanBuf(char *buf);

SWCompress *compress = 0;

int main(int argc, char **argv) {

	compress = new LZSSCompress();
	char *buf;
	Version versionRecord;
	VSyncHeader vSyncHeaderRecord;
	VSyncBooksInfo *vSyncBooksInfo;
	SectionsHeader sectionsHeaderRecord;
	ViewableHeader viewableHeaderRecord;
	

	if (argc < 2) {
		cerr << "usage: "<< *argv << " <database to step module>\n";
		exit (-1);
	}

	string bookpath = argv[1];
	string fileName;

	if ((argv[1][strlen(argv[1])-1] != '/') &&
		(argv[1][strlen(argv[1])-1] != '\\'))
		bookpath += "/";

	fileName = bookpath + "Book.dat";
	int fdbook = FileMgr::openFileReadOnly(fileName.c_str());

	if (fdbook < 1) {
		cerr << "error, couldn't open file: " << fileName << "\n";
		exit (-2);
	}

	readVersion(fdbook, &versionRecord);
	readHeaderControlWordAreaText(fdbook, &buf);
	delete [] buf;


	fileName = bookpath + "Viewable.idx";
	int fdviewable = FileMgr::openFileReadOnly(fileName.c_str());

	if (fdviewable < 1) {
		cerr << "error, couldn't open file: " << fileName << "\n";
		exit (-3);
	}

	readVersion(fdviewable, &versionRecord);
	readViewableHeader(fdviewable, &viewableHeaderRecord);

	VIEWABLEBLOCKSTART = lseek(fdviewable, 0, SEEK_CUR);
	VIEWABLEBLOCKSIZE = viewableHeaderRecord.blockEntriesSize;


	fileName = bookpath + "Vsync.idx";
	int fdvsync = FileMgr::openFileReadOnly(fileName.c_str());

	if (fdvsync < 1) {
		cerr << "error, couldn't open file: " << fileName << "\n";
		exit (-4);
	}

	fileName = bookpath + "Sections.idx";
	int fdsections = FileMgr::openFileReadOnly(fileName.c_str());

	if (fdsections < 1) {
		cerr << "error, couldn't open file: " << fileName << "\n";
		exit (-4);
	}
	readVersion(fdsections, &versionRecord);
	readSectionsHeader(fdsections, &sectionsHeaderRecord);
	SECTIONSLEVELSTART = lseek(fdsections, 0, SEEK_CUR);
	SECTIONSLEVELSIZE = sectionsHeaderRecord.levelEntriesSize;

	readVersion(fdvsync, &versionRecord);
	readVSyncHeader(fdvsync, &vSyncHeaderRecord);
	readVSyncBooksInfo(fdvsync, &vSyncHeaderRecord, &vSyncBooksInfo);
	int bookCount = vSyncHeaderRecord.endBookNumber - vSyncHeaderRecord.startBookNumber;
	for (int i = 0; i <= bookCount; i++) {
		displayBook(fdbook, fdviewable, fdvsync, fdsections, &vSyncBooksInfo[i]);
	}
		
	close(fdviewable);
	close(fdvsync);
	close(fdsections);
	close(fdbook);

}



void readVersion(int fd, Version *versionRecord) {
	int r;

	r = read(fd, &(versionRecord->versionRecordSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readVersion");

	r = read(fd, &(versionRecord->publisherID), 2);
	if (r != 2)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->bookID), 2);
	if (r != 2)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->setID), 2);
	if (r != 2)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->conversionProgramVerMajor), 1);
	if (r != 1)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->conversionProgramVerMinor), 1);
	if (r != 1)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->leastCompatSTEPVerMajor), 1);
	if (r != 1)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->leastCompatSTEPVerMinor), 1);
	if (r != 1)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->encryptionType), 1);
	if (r != 1)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->editionID), 1);
	if (r != 1)
		perror("ERROR: read failed in readVersion");
	r = read(fd, &(versionRecord->modifiedBy), 2);
	if (r != 2)
		perror("ERROR: read failed in readVersion");

	int skip = versionRecord->versionRecordSize - 16/*sizeof(struct Version*/;

	if (skip) {
		char *skipbuf = new char[skip];
		r = read(fd, skipbuf, skip);
		if (r != skip)
			perror("ERROR: read failed in readVersion");
		delete [] skipbuf;
	}
}


void readSectionsHeader(int fd, SectionsHeader *sectionsHeaderRecord) {
	int r;

	r = read(fd, &(sectionsHeaderRecord->sectionsHeaderRecordSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readSectionsHeader");
	r = read(fd, &(sectionsHeaderRecord->levelEntriesCount), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionsHeader");
	r = read(fd, &(sectionsHeaderRecord->glossEntriesCount), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionsHeader");
	r = read(fd, &(sectionsHeaderRecord->levelEntriesSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readSectionsHeader");
	r = read(fd, &(sectionsHeaderRecord->reserved), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionsHeader");

	int skip = sectionsHeaderRecord->sectionsHeaderRecordSize - 16/*sizeof(struct ViewableHeader)*/;

	if (skip) {
		char *skipbuf = new char[skip];
		r = read(fd, skipbuf, skip);
		if (r != skip)
			perror("ERROR: read failed in readSectionsHeader");
		delete [] skipbuf;
	}
}


void readViewableHeader(int fd, ViewableHeader *viewableHeaderRecord) {
	int r;

	r = read(fd, &(viewableHeaderRecord->viewableHeaderRecordSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readViewableHeader");
	r = read(fd, &(viewableHeaderRecord->viewableBlocksCount), 4);
	if (r != 4)
		perror("ERROR: read failed in readViewableHeader");
	r = read(fd, &(viewableHeaderRecord->glossBlocksCount), 4);
	if (r != 4)
		perror("ERROR: read failed in readViewableHeader");
	r = read(fd, &(viewableHeaderRecord->compressionType), 1);
	if (r != 1)
		perror("ERROR: read failed in readViewableHeader");
	r = read(fd, &(viewableHeaderRecord->reserved1), 1);
	if (r != 1)
		perror("ERROR: read failed in readViewableHeader");
	r = read(fd, &(viewableHeaderRecord->blockEntriesSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readViewableHeader");
	r = read(fd, &(viewableHeaderRecord->reserved2), 2);
	if (r != 2)
		perror("ERROR: read failed in readViewableHeader");

	int skip = viewableHeaderRecord->viewableHeaderRecordSize - 16/*sizeof(struct ViewableHeader)*/;

	if (skip) {
		char *skipbuf = new char[skip];
		r = read(fd, skipbuf, skip);
		if (r != skip)
			perror("ERROR: read failed in readViewableHeader");
		delete [] skipbuf;
	}
}


void readVSyncHeader(int fd, VSyncHeader *vSyncHeaderRecord) {
	int r;

	r = read(fd, &(vSyncHeaderRecord->vSyncHeaderRecordSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readVSyncHeader");
	r = read(fd, &(vSyncHeaderRecord->startBookNumber), 2);
	if (r != 2)
		perror("ERROR: read failed in readVSyncHeader");
	r = read(fd, &(vSyncHeaderRecord->endBookNumber), 2);
	if (r != 2)
		perror("ERROR: read failed in readVSyncHeader");
	r = read(fd, &(vSyncHeaderRecord->bookPointerEntriesSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readVSyncHeader");
	r = read(fd, &(vSyncHeaderRecord->syncPointEntriesSize), 2);
	if (r != 2)
		perror("ERROR: read failed in readVSyncHeader");
	r = read(fd, &(vSyncHeaderRecord->reserved1_1), 4);
	if (r != 4)
		perror("ERROR: read failed in readVSyncHeader");
	r = read(fd, &(vSyncHeaderRecord->reserved1_2), 2);
	if (r != 2)
		perror("ERROR: read failed in readVSyncHeader");

	int skip = vSyncHeaderRecord->vSyncHeaderRecordSize - 16/*sizeof(VSyncHeader)*/;

	if (skip) {
		char *skipbuf = new char[skip];
		r = read(fd, skipbuf, skip);
		if (r != skip)
			perror("ERROR: read failed in readVSyncHeader");
		delete [] skipbuf;
	}
}


void readViewableBlockText(int fd, ViewableBlock *vb, char **buf) {
	int r;
	unsigned long size = vb->size;

	*buf = new char [ ((vb->size > vb->uncompressedSize) ? vb->size : vb->uncompressedSize) + 1 ];
	lseek(fd, vb->offset, SEEK_SET);
	r = read(fd, *buf, vb->size);
	if (r != vb->size)
		perror("ERROR: read failed in readViewableBlockText");

	compress->zBuf(&size, *buf);
	strcpy(*buf, compress->Buf());
}


void readViewableBlock(int fd, ViewableBlock *vb) {
	int r;

	r = read(fd, &(vb->offset), 4);
	if (r != 4)
		perror("ERROR: read failed in readViewableBlock");
	r = read(fd, &(vb->uncompressedSize), 4);
	if (r != 4)
		perror("ERROR: read failed in readViewableBlock");
	r = read(fd, &(vb->size), 4);
	if (r != 4)
		perror("ERROR: read failed in readViewableBlock");
}


void readHeaderControlWordAreaText(int fd, char **buf) {
	int r;
	long headerControlWordAreaSize;
	r = read(fd, &headerControlWordAreaSize, 4);
	if (r != 4)
		perror("ERROR: read failed in readHeaderControlWordAreaText");

	*buf = new char [headerControlWordAreaSize + 1];

	r = read(fd, *buf, headerControlWordAreaSize);
	if (r != headerControlWordAreaSize)
		perror("ERROR: read failed in readHeaderControlWordAreaText");
	(*buf)[headerControlWordAreaSize] = 0;

}

void readVSyncBooksInfo(int fd, VSyncHeader *vSyncHeaderRecord, VSyncBooksInfo **vSyncBooksInfo) {

	int r;
	int bookCount = vSyncHeaderRecord->endBookNumber - vSyncHeaderRecord->startBookNumber;
	*vSyncBooksInfo = new VSyncBooksInfo[bookCount];
	for (int i = 0; i <= bookCount; i++) {
		r = read(fd, &(*vSyncBooksInfo)[i].offset, 4);
		if (r != 4)
			perror("ERROR: read failed in readVSyncBooksInfo");
		r = read(fd, &(*vSyncBooksInfo)[i].count, 2);
		if (r != 2)
			perror("ERROR: read failed in readVSyncBooksInfo");
	}
}

void displayBook(int fdbook, int fdviewable, int fdvsync, int fdsections, VSyncBooksInfo *vSyncBooksInfo) {
	int r;
	VSyncPoint vSyncPoint;

	lseek(fdvsync, vSyncBooksInfo->offset, SEEK_SET);

	for (int i = 0; i < vSyncBooksInfo->count; i++) {

		SectionLevelInfo sectionLevelInfo;
		char *sectionName;
		char *verseText;

		r = read(fdvsync, &(vSyncPoint.chapter), 2);
		if (r != 2)
			perror("ERROR: read failed in displayBook");
		r = read(fdvsync, &(vSyncPoint.verse), 2);
		if (r != 2)
			perror("ERROR: read failed in displayBook");
		r = read(fdvsync, &(vSyncPoint.offset), 4);
		if (r != 4)
			perror("ERROR: read failed in displayBook");
		vSyncPoint.offset = SECTIONSLEVELSTART + (vSyncPoint.offset * SECTIONSLEVELSIZE);
		lseek(fdsections, vSyncPoint.offset, SEEK_SET);
		readSectionLevelInfo(fdsections, &sectionLevelInfo);
		readSectionName(fdsections, &sectionLevelInfo, &sectionName);
		cout << sectionName << " ";
		delete [] sectionName;
		extractVerseText(fdviewable, fdbook, &sectionLevelInfo, &verseText);
		cleanBuf(verseText);
		cout << verseText << "\n";
		delete [] verseText;
	}
}


void extractVerseText(int fdviewable, int fdbook, SectionLevelInfo *sectionLevelInfo, char **verseText) {
	char numberBuf[16];
	string startToken;
	ViewableBlock vb;
	int len = 0;
	static long lastEntryOffset = -1;
	static class FreeCachedEntryText {
	public:
		char *entryText;
		FreeCachedEntryText() { entryText = 0; }
		~FreeCachedEntryText() { if (entryText) delete [] entryText; }
	} _freeCachedEntryText;

	if (sectionLevelInfo->viewableOffset != lastEntryOffset) {
		if (_freeCachedEntryText.entryText)
			delete [] _freeCachedEntryText.entryText;
	
		lseek(fdviewable, sectionLevelInfo->viewableOffset, SEEK_SET);
		readViewableBlock(fdviewable, &vb);
		readViewableBlockText(fdbook, &vb, &(_freeCachedEntryText.entryText));
		lastEntryOffset = sectionLevelInfo->viewableOffset;
	}
	sprintf(numberBuf, "%d", sectionLevelInfo->startLevel);
	startToken = "\\stepstartlevel";
	startToken += numberBuf;
	char *start = strstr(_freeCachedEntryText.entryText, startToken.c_str());
	if (start) {
		start += strlen(startToken.c_str());
		char *end = strstr(start, "\\stepstartlevel");
		if (end)
			len = end - start;
		else len = strlen(start);
	}
	*verseText = new char [ len + 1 ];
	strncpy(*verseText, start, len);
	(*verseText)[len] = 0;
}


void readSectionName(int fd, SectionLevelInfo *sli, char **name) {
	int r;
	short size;
	lseek(fd, sli->nameOffset, SEEK_SET);
	r = read(fd, &size, 2);
	if (r != 2)
		perror("ERROR: read failed in readSectionName");
	*name = new char [ size + 1 ];
	r = read(fd, *name, size);
	if (r != size)
		perror("ERROR: read failed in readSectionName");
	(*name)[size] = 0;
}

void readSectionLevelInfo(int fd, SectionLevelInfo *sli) {
	int r;

	r = read(fd, &(sli->parentOffset), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->previousOffset), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->nextOffset), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->viewableOffset), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionLevelInfo");
	sli->viewableOffset = VIEWABLEBLOCKSTART + (VIEWABLEBLOCKSIZE * sli->viewableOffset);
	r = read(fd, &(sli->startLevel), 2);
	if (r != 2)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->level), 1);
	if (r != 1)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->nameOffset), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->outSync_1), 4);
	if (r != 4)
		perror("ERROR: read failed in readSectionLevelInfo");
	r = read(fd, &(sli->outSync_2), 2);
	if (r != 2)
		perror("ERROR: read failed in readSectionLevelInfo");
}

void cleanBuf(char *buf) {
	char *from = buf;
	char *to = buf;

	while (*from) {
		if ((*from != 10) && (*from != 13)) {
			*to++ = *from++;
		}
		else {
			from++;
		}
	}
	*to = 0;
}