aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/texts/ztext/rawtxt2z.cpp
blob: 7eafe2a22e8622d54c8c79eab377d55f2fc1e968 (plain) (blame)
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
// Compression on variable granularity


#include <fcntl.h>

#include <iostream>

#include <fstream>

#include <string>


#ifndef __GNUC__

#include <io.h>

#else

#include <unistd.h>

#endif


#include <zlib.h>

#include <versekey.h>


int iBufSize, ulBuffNum;
ofstream cfile;
ofstream cfile2;

int ofd[2], oxfd[2], ovxfd[2];
int ifd[2], ixfd[2];
int itestfd[2], itestxfd[2];
unsigned long ulIOff=0, ulCOff=0, ulFOff=0, ulNone=0;
string currbuff="";


int openreadfile(char *buffer, char *path, const char *filename)
{
	int filenum;
	sprintf(buffer, "%s/%s", path, filename);
	cfile << buffer << "\n";
	filenum =  open(buffer, O_RDONLY|O_BINARY);
	if (filenum > 0)
	{
		return filenum;
	}
	else
	{
		cerr << "failed to open file to read\n";
		exit(-1);
	}
}

int openwritefile(char *buffer, char *path, const char *filename)
{
	int filenum;
	sprintf(buffer, "%s/%s", path, filename);
	cfile << buffer << "\n";
	filenum =  open(buffer, O_WRONLY|O_BINARY|O_CREAT|O_TRUNC);
	if (filenum > 0)
	{
		return filenum;
	}
	else
	{
		cerr << "failed to open file to read\n";
		exit(-1);
	}
}

int bytebound(unsigned long offset, VerseKey &thekey)
{
	unsigned long bufferoff;
	cfile << "byteboundtest " << thekey << "\n";
	bufferoff = iBufSize * (ulBuffNum+1);
	if (offset > bufferoff)
	{
		return 1;
	}
	else
	{
		return 0;
	}
}

int versebound(unsigned long offset, VerseKey &thekey)
{
	cfile << "verseboundtest " << thekey << "\n";
	return 1;
}

int chapterbound(unsigned long offset, VerseKey &thekey)
{
	VerseKey testkey;
	testkey = thekey;
	testkey++;
	//cfile << "chapterboundtest " << testkey;

	if (testkey.Verse()==1 || (!thekey.compare("Revelation of John 22:21")))
	{
		//cfile << " 1\n";

		return 1;
	}
	else
	{
		//cfile << " 0\n";

		return 0;
	}
}

int bookbound(unsigned long offset, VerseKey &thekey)
{
	VerseKey testkey;
	testkey = thekey;
	cfile << "bookboundtest " << testkey << "\n";
	testkey++;
	if (testkey.Chapter()==1 || (!thekey.compare("Revelation of John 22:21")))
	{
		return 1;
	}
	else
	{
		return 0;
	}
}


typedef int (*boundfunc)(unsigned long offset, VerseKey &thekey);

int writeblock(int i)
{
	char *destbuff=NULL;
	unsigned long compsize = 0, buffsize=0;

	cfile << "compressing block\n";
	// compress current buffer

	buffsize = currbuff.length();
	write(itestfd[i], currbuff.c_str(), buffsize);
	compsize = (unsigned long) (buffsize*1.01)+20;  // at least 1% bigger than buffer + 12 bytes

	//cfile << "{" << compsize << "}";

	//destbuff = (char *) calloc(compsize + 1, 1);

	destbuff = new char[compsize];
	if (compress((Bytef*)destbuff, &compsize, (const Bytef*)currbuff.c_str(), buffsize)!=Z_OK)
	{
		cerr << "Could not compress buffer: exiting\n";
		delete[] destbuff;
		exit(-1);
	}
	//cout << "Compressed buffer{" << compsize << "}\n" << destbuff << "\n";

	//cout.flush();

	// write to compressed file index

	ulCOff = lseek(ofd[i], 0, SEEK_END);
	write(oxfd[i], &ulCOff, 4);    // offset in compressed file

	write(oxfd[i], &compsize, 4);	 // compressed size

	write(oxfd[i], &buffsize, 4);	 // uncompressed size

	cfile << buffsize << " -> " << compsize << "\n";
	cfile2 << "Compressed{" << compsize << "}\n" << destbuff << "\n";
	cfile2.flush();

	//write compressed buffer to file

	write(ofd[i], destbuff, compsize);

	//free(destbuff);

	delete[] destbuff;

	currbuff = "";
	ulBuffNum++;
	ulIOff = 0;
	return 1;
}



int main(int argc, char **argv)
{
	VerseKey key1, key2, key3;
	int i;
	char xbuff[64];
	unsigned long offset;
	unsigned short size=0;
	unsigned long ulsize=0;
	char *tmpbuf=NULL;
	int iType;
	boundfunc blockbound[4] = {bytebound, versebound, chapterbound, bookbound};
	bool newbook=true, newchapter=true, newtestament = true, newmodule = true, lasttodo=true;

	if ((argc < 2) || (argc > 4)) {
		cerr << "usage: " << argv[0] << " datapath [compression type [buffer size]]\n";
		exit(1);
	}

	if (argc>2)
	{
		iType = atoi(argv[2]);
		if (argc==4)
		{
			iBufSize = atoi(argv[3]);
		}
		else
		{
			iBufSize = 1;
		}
	}
	else
	{
		iType = 2;
		iBufSize = 1;
	}

	cfile.open("raw2z.log", ios::out);
	if (!cfile.is_open())
	{
		cerr << "Failed to open log file\n";
		exit(-1);
	}
	cfile2.open("raw2z.lg2", ios::out);
	if (!cfile2.is_open())
	{
		cerr << "Failed to open log file\n";
		exit(-1);
	}
	cfile << iType << " " << iBufSize << "\n";

	if ((iType<=0) || (iType > 4) || !iBufSize || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help") || !strcmp(argv[1], "/?") || !strcmp(argv[1], "-help"))
	{
		cfile << argv[0] << " - a tool to create compressed Sword modules\n";
		cfile << "version 0.1\n\n";
		cfile << "usage: "<< argv[0] << " datapath [compression type [buffer size]]\n\n";
		cfile << "datapath: the directory in which to find the raw module\n";
		cfile << "compression type: (default 2)\n" << "   1 - bytes\n" << "   2 - verses\n" << "   3 - chapters\n" << "   4 - books\n";
		cfile << "buffer size (default 1): the number of the compression type in each block\n";
		exit(1);
	}

	//zobj = new SWCompress();

	//rawdrv = new RawVerse(argv[1]);


#ifndef O_BINARY

#define O_BINARY 0

#endif

	cfile << "opening files\n";

	tmpbuf = new char [ strlen(argv[1]) + 11 ];

	//original files

	ifd[0] = openreadfile(tmpbuf, argv[1], "ot");
	ixfd[0] = openreadfile(tmpbuf, argv[1], "ot.vss");
	ifd[1] = openreadfile(tmpbuf, argv[1], "nt");
	ixfd[1] = openreadfile(tmpbuf, argv[1], "nt.vss");

switch ( iType) {
	case 1 :
		ofd[0] = openwritefile(tmpbuf, argv[1], "ot.rzz");
		oxfd[0] = openwritefile(tmpbuf, argv[1], "ot.rzs");
		ovxfd[0] = openwritefile(tmpbuf, argv[1], "ot.rzv");
		ofd[1] = openwritefile(tmpbuf, argv[1], "nt.rzz");
		oxfd[1] = openwritefile(tmpbuf, argv[1], "nt.rzs");
		ovxfd[1] = openwritefile(tmpbuf, argv[1], "nt.rzv");
		//boundfunc = bytebound;

		break;
	case 2 :
		ofd[0] = openwritefile(tmpbuf, argv[1], "ot.vzz");
		oxfd[0] = openwritefile(tmpbuf, argv[1], "ot.vzs");
		ovxfd[0] = openwritefile(tmpbuf, argv[1], "ot.vzv");
		ofd[1] = openwritefile(tmpbuf, argv[1], "nt.vzz");
		oxfd[1] = openwritefile(tmpbuf, argv[1], "nt.vzs");
		ovxfd[1] = openwritefile(tmpbuf, argv[1], "nt.vzv");
		break;
	case 3 :
		ofd[0] = openwritefile(tmpbuf, argv[1], "ot.czz");
		oxfd[0] = openwritefile(tmpbuf, argv[1], "ot.czs");
		ovxfd[0] = openwritefile(tmpbuf, argv[1], "ot.czv");
		ofd[1] = openwritefile(tmpbuf, argv[1], "nt.czz");
		oxfd[1] = openwritefile(tmpbuf, argv[1], "nt.czs");
		ovxfd[1] = openwritefile(tmpbuf, argv[1], "nt.czv");
		break;
	case 4 :
		ofd[0] = openwritefile(tmpbuf, argv[1], "ot.bzz");
		oxfd[0] = openwritefile(tmpbuf, argv[1], "ot.bzs");
		ovxfd[0] = openwritefile(tmpbuf, argv[1], "ot.bzv");
		ofd[1] = openwritefile(tmpbuf, argv[1], "nt.bzz");
		oxfd[1] = openwritefile(tmpbuf, argv[1], "nt.bzs");
		ovxfd[1] = openwritefile(tmpbuf, argv[1], "nt.bzv");
		break;
	default:
		cerr << "Unknown compression type\n";
		exit(-1);
}
	itestfd[0] = openwritefile(tmpbuf, argv[1], "ot.tst");
	itestfd[1] = openwritefile(tmpbuf, argv[1], "nt.tst");
	itestxfd[0] = openwritefile(tmpbuf, argv[1], "ot.tdx");
	itestxfd[1] = openwritefile(tmpbuf, argv[1], "nt.tdx");


	delete [] tmpbuf;

	//cfile << "about to start\n";


for ( i=0; i<2; i++)
{
	ulIOff=0, ulBuffNum=0;
	currbuff = "";
	key1 = (i == 1) ? "Matthew 1:1" : "Genesis 1:1";
	key2 = key3 = key1;
	newtestament = true;

	cfile << "key: " << key1 << " Testament {" << key1.Testament()-1 << "}\n";
	//cfile << "Chapter {" << key.Chapter() << "}\n";

	//cfile << "Verse {" << key.Verse() << "}\n";

	//cfile << key.compare("Revelation of John 22:21") << "\n";

	//cfile << key.compare("Genesis 1:1") << "\n";

	do
	{
		//cfile << "ok";

		// read current verse offset

		if (read(ixfd[i], &offset, 4) != 4)
		{
			cfile << "Failed to read input verse offsets?\n";
			break;
		}
		if (read(ixfd[i], &size, 2) != 2)
		{
			cfile << "Failed to read input verse sizes?\n";
			break;
		}
		cfile << "key:" << key1 << " offset:" << offset << " size:" << size << "\n";
		sprintf(xbuff, "key{%s} offset{%ld} size{%d}\n", (const char *)key1, offset, size);
		write(itestxfd[i], &xbuff, strlen(xbuff));
		ulsize = size;
		if (!offset && !size)
		{
			//Check for module header

			if (read(ixfd[i], &ulIOff, 4) != 4)
			{
				cfile << "Failed to read input verse offsets?\n";
				break;
			}
			ulsize = ulIOff;
			ulIOff = 0;
			lseek(ixfd[i], 6, SEEK_SET);
		}

		if (ulsize)
		{
			// read current verse and add to current buffer

			tmpbuf = (char *) calloc(ulsize + 1, 1);
			lseek(ifd[i], offset, SEEK_SET);
			read(ifd[i], tmpbuf, ulsize);
			currbuff += tmpbuf;
			//cfile << currbuff << "\n";


			// write to verse index into compressed

			write(ovxfd[i], &ulBuffNum, 4);    // current buffer number

			write(ovxfd[i], &ulIOff, 4);    // offset within the buffer

			write(ovxfd[i], &size, 2);    // verse size


			ulFOff = lseek(ofd[i], 0, SEEK_CUR) + size;
			if (key1.compare("Revelation of John 22:21")!=-1)
			{
				lasttodo = false;
			}
			if (blockbound[iType-1](ulFOff, key1)/*at block boudary*/)
			{
				writeblock(i);
				/*

				cfile << "compressing block\n";

				// compress current buffer

				buffsize = currbuff.length();

				write(itestfd[i], currbuff.c_str(), buffsize);

				compsize = (unsigned long) (buffsize*1.01)+20;  // at least 1% bigger than buffer + 12 bytes

				//cfile << "{" << compsize << "}";

				//destbuff = (char *) calloc(compsize + 1, 1);

				destbuff = new char[compsize];

				if (compress((Bytef*)destbuff, &compsize, (const Bytef*)currbuff.c_str(), buffsize)!=Z_OK)

				{

					cerr << "Could not compress buffer: exiting\n";

					delete[] destbuff;

					exit(-1);

				}

				//cout << "Compressed buffer{" << compsize << "}\n" << destbuff << "\n";

				//cout.flush();

				// write to compressed file index

				ulCOff = lseek(ofd[i], 0, SEEK_END);

				write(oxfd[i], &ulCOff, 4);    // offset in compressed file

				write(oxfd[i], &compsize, 4);	 // compressed size

				write(oxfd[i], &buffsize, 4);	 // uncompressed size

				cfile << buffsize << " -> " << compsize << "\n";

				cfile2 << "Compressed{" << compsize << "}\n" << destbuff << "\n";

				cfile2.flush();



				//write compressed buffer to file

				write(ofd[i], destbuff, compsize);



				//free(destbuff);

				delete[] destbuff;



				currbuff = "";

				ulBuffNum++;

				ulIOff = 0;

				*/
			}
			else
			{
				ulIOff += ulsize;
			}
			free(tmpbuf);

			if (newmodule)
			{
				newmodule = false;
				cfile << "had a new module " << (const char *) key1 << "{" << offset << "}\n";
				writeblock(i);
			}
			else if (newtestament)
			{
				newtestament = false;
				cfile << "had a new testament " << (const char *) key1 << "{" << offset << "}\n";
			}
			else if (newbook)
			{
				newbook = false;
				cfile << "had a new book " << (const char *) key1 << "{" << offset << "}\n";
			}
			else if (newchapter)
			{
				newchapter = false;
				cfile << "had a new chapter " << (const char *) key1 << "{" << offset << "}\n";
			}
			else
			{
				key1++;
			}

			if (key1.Chapter()!=key2.Chapter() || (key1.Book()!=key2.Book()))
			{
				newchapter = true;
				cfile << "got a new chapter " << (const char *) key1 << "\n";
			}
			if (key1.Book()!=key2.Book())
			{
				newbook = true;
				cfile << "got a new book " << (const char *) key1 << "\n";
			}
			key2 = key1;

		}
		else
		{
			cfile << "empty offset\n";
			// write to verse index into compressed

			write(ovxfd[i], &ulNone, 4);    // current buffer number

			write(ovxfd[i], &size, 2);    // verse size

			write(ovxfd[i], &ulNone, 4);    // offset within the buffer

		}
	}
	while ( (key1.Testament()==i+1) && ((key1.compare("Revelation of John 22:21")==-1) || (lasttodo)));

	close(ifd[i]);
	close(ofd[i]);
	close(ixfd[i]);
	close(oxfd[i]);
	close(ovxfd[i]);
	close(itestfd[i]);
	close(itestxfd[i]);
}
	return 1;
}