File: encyclopedia2c.cpp

package info (click to toggle)
powder 117-2
  • links: PTS
  • area: non-free
  • in suites: stretch
  • size: 10,576 kB
  • ctags: 3,545
  • sloc: cpp: 55,002; makefile: 541; sh: 258; objc: 245; ansic: 107; csh: 54
file content (648 lines) | stat: -rwxr-xr-x 12,874 bytes parent folder | download | duplicates (6)
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
// encyclopedia2c.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string.h>
#include <stdlib.h>

using namespace std;

void
writeQuotedString(ostream &os, const char *s)
{
    os << "\"";

    while (*s)
    {
	if (*s == '"')
	{
	    os << "\\\"";
	}
	else if (*s == '\\')
	{
	    os << "\\";
	}
	else
	    os << *s;

	s++;
    }

    os << "\"";
}

class LINE
{
public:
    explicit LINE(const char *line);
    ~LINE();

    LINE	*getNext() const { return myNext; }
    void	 setNext(LINE *line) { myNext = line; }

    const char	*getLine() const { return myLine; }

private:
    LINE	*myNext;
    char	*myLine;
};

LINE::LINE(const char *line)
{
    myNext = 0;
    myLine = strdup(line);
}

LINE::~LINE()
{
    free(myLine);
    delete myNext;
}

class ENTRY
{
public:
    explicit ENTRY(const char *key, const char *name);
    ~ENTRY();

    ENTRY	*getNext() const { return myNext; }
    void	 setNext(ENTRY *next) { myNext = next; }

    const char	*getKey() const { return myKey; }

    // This appends the given text, taking into account
    // merging adjacent lines & implicit paragraphs/
    // returns.
    void	 appendText(const char *text);

    void	 save(ostream &os, ostream &hs) const;

private:
    // This appends the given line as a new LINE structure.
    void	 appendLine(const char *line);

    LINE	*myLines;
    ENTRY	*myNext;
    char	*myKey, *myName;

    char	*myLastLine;
};

ENTRY::ENTRY(const char *key, const char *name)
{
    myKey = strdup(key);
    myName = strdup(name);
    myNext = 0;
    myLines = 0;
    myLastLine = 0;
}

ENTRY::~ENTRY()
{
    free(myKey);
    free(myName);
    delete myLines;
    delete myNext;
}

void
ENTRY::appendLine(const char *txtline)
{
    LINE	*line, *last;

    line = new LINE(txtline);

    for (last = myLines; last && last->getNext(); last = last->getNext());

    if (last)
	last->setNext(line);
    else
	myLines = line;
}

void
ENTRY::appendText(const char *text)
{
    size_t    linelen;

    linelen = strlen(text);

    if (!linelen)
    {
	// We want to do a new paragraph.
	// We thus finish any current line,
	// and append a blank line for
	// good measure.
	if (myLastLine)
	    appendLine(myLastLine);
	appendLine("");
	delete [] myLastLine;
	myLastLine = 0;

	return;
    }

    // Append into our last line structure.
    if (myLastLine)
    {
	char	    *newlast;
	char	     lastchar;

	newlast = new char[linelen + strlen(myLastLine) + 5];
	strcpy(newlast, myLastLine);
	if (strlen(newlast))
	{
	    lastchar = newlast[strlen(newlast)-1];
	    // If we didn't have a trailing space, make sure
	    // we add one.  If we had a punctuation, we must
	    // make sure we do two spaces.
	    if (strchr(".!?", lastchar))
	    {
		strcat(newlast, "  ");
	    }
	    else if (lastchar != ' ')
		strcat(newlast, " ");
	}
	strcat(newlast, text);
	delete [] myLastLine;
	myLastLine = newlast;
    }
    else
    {
	myLastLine = new char[linelen+3];
	strcpy(myLastLine, text);
    }

    if (linelen <= 30)
    {
	// This is an implied return.
	appendLine(myLastLine);
	delete [] myLastLine;
	myLastLine = 0;
    }
}

void
ENTRY::save(ostream &os, ostream &hs) const
{
    int			 numline = 0;
    LINE		*line;
    
    // Save our line list.
    os << "const char *glb_encyclopedia_entry_" << myKey 
       << "_lines[] =" << endl;
    os << "{" << endl;

    // Trim blank lines.
    bool		 hasblank = true;
    LINE		*last;
    while (hasblank)
    {
	hasblank = false;
	last = 0;
	for (line = myLines; line && line->getNext(); line = line->getNext())
	{
	    last = line;
	}

	// See if last line was blank...
	// Can't delete only line.
	if (line && last)
	{
	    if (!strcmp(line->getLine(), ""))
	    {
		hasblank = true;
		last->setNext(0);
		delete line;
	    }
	}
    }

    for (line = myLines; line; line = line->getNext())
    {
	os << "    ";
	writeQuotedString(os, line->getLine());
	if (line->getNext())
	    os << ",";
	os << endl;

	numline++;
    }
    
    os << "};" << endl;
    os << endl;

    // Now, save the actual entry.
    os << "const encyclopedia_entry glb_encyclopedia_entry_" << myKey
       << " =" << endl;
    os << "{" << endl;
    os << "    " << myKey << "," << endl;
    os << "    ";
    writeQuotedString(os, myName);
    os << "," << endl;
    os << "    " << numline << "," << endl;
    os << "    glb_encyclopedia_entry_" << myKey << "_lines" << endl;
    os << "};" << endl;
    os << endl;
}

class BOOK
{
public:
    explicit BOOK(const char *bookname);
    ~BOOK();

    static BOOK *getBook(const char *name);

    BOOK	*getNext() const { return myNext; }
    void	 setNext(BOOK *book) { myNext = book; }

    const char	*getName() const { return myName; }

    void	 appendEntry(ENTRY *entry);

    void	 save(ostream &os, ostream &hs) const;

private:
    ENTRY	*myEntries;
    char	*myName;
    BOOK	*myNext;
};

BOOK *glb_booklist = 0;

BOOK::BOOK(const char *bookname)
{
    myName = strdup(bookname);
    myEntries = 0;
    myNext = 0;
}

BOOK::~BOOK()
{
    delete myEntries;
    free(myName);
}

BOOK *
BOOK::getBook(const char *name)
{
    BOOK	*book, *last;

    last = 0;
    for (book = glb_booklist; book; book = book->getNext())
    {
	if (!strcmp(book->myName, name))
	    return book;
	last = book;
    }

    // We need a new book.
    book = new BOOK(name);
    if (last)
	last->setNext(book);
    else
	glb_booklist = book;
    return book;
}

void
BOOK::appendEntry(ENTRY *entry)
{
    ENTRY   *last;

    for (last = myEntries; last && last->getNext(); last = last->getNext());

    if (last)
	last->setNext(entry);
    else
	myEntries = entry;
}

void
BOOK::save(ostream &os, ostream &hs) const
{
    int	     numentry;
    ENTRY   *entry;

    numentry = 0;
    for (entry = myEntries; entry; entry = entry->getNext())
    {
	entry->save(os, hs);
	numentry++;
    }

    // Save our list of entry list.
    os << "const encyclopedia_entry *glb_encyclopedia_book_" << myName 
       << "_entrylist[] =" << endl;
    os << "{" << endl;
    for (entry = myEntries; entry; entry = entry->getNext())
    {
	os << "    &glb_encyclopedia_entry_" << entry->getKey();
	if (entry->getNext())
	    os << ",";
	os << endl;
    }
    os << "};" << endl;
    os << endl;

    // Save the book proper.
    os << "const encyclopedia_book glb_encyclopedia_book_" << myName
       << " =" << endl;
    os << "{" << endl;
    os << "    ";
    writeQuotedString(os, myName);
    os << "," << endl;
    os << "    " << numentry << "," << endl;
    os << "    glb_encyclopedia_book_" << myName << "_entrylist" << endl;
    os << "};" << endl;
    os << endl;
}

//
// Stream controls.
// These allow one to undo the fetching of a line.
//
bool glb_putbackline = false;
char raw_input[1024];
char tabless_input[8192];   // Enough for 1k of tabs.

// Removes tabs treating them as mod 8 events.
void
killtabs(char *raw, char *tabless)
{
    int	    off;

    for (off = 0; *raw; raw++)
    {
	if (*raw == '\t')
	{
	    tabless[off++] = ' ';
	    while (off & 7)
		tabless[off++] = ' ';
	}
	else
	{
	    tabless[off++] = *raw;
	}
    }
    tabless[off++] = '\0';
}

bool
input_waiting(ifstream &is)
{
    if (glb_putbackline) return true;

    if (is)
	return true;

    return false;
}

char *
input_getline(ifstream &is)
{
    if (glb_putbackline)
    {
	glb_putbackline = false;
	// Ensure we don't have corrupted input, retab.
	killtabs(raw_input, tabless_input);
	return tabless_input;
    }

    // read a line.
    is.getline(raw_input, 1020);
    killtabs(raw_input, tabless_input);
    return tabless_input;
}

void
input_putbackline()
{
    glb_putbackline = true;
}

int 
main(int argc, char* argv[])
{
    if (argc < 2)
    {
	cerr << "Usage:" << endl;
	cerr << "\tencyclopedia2c encyclopedia.txt" << endl;
	cerr << "This will create encyclopedia.cpp and encyclopedia.h" << endl;
	return -1;
    }

    // Construct our output file names.
    char *headername, *cppname;

    headername = new char[strlen(argv[1]) + 10];
    cppname = new char[strlen(argv[1]) + 10];
    strcpy(headername, argv[1]);
    strcpy(cppname, argv[1]);
    if (strrchr(headername, '.'))
	*strrchr(headername, '.') = '\0';
    if (strrchr(cppname, '.'))
	*strrchr(cppname, '.') = '\0';

    strcat(headername, ".h");
    strcat(cppname, ".cpp");

    // See if we can open the incoming stream.
    ifstream	    is(argv[1]);

    if (!is)
    {
	cerr << "Unable to open " << argv[1] << " for reading." << endl;
	return -1;
    }

    // Open the output streams.
    ofstream	    os(cppname), hs(headername);

    if (!os)
    {
	cerr << "Unable to open " << cppname << " for writing." << endl;
	return -2;
    }
    if (!hs)
    {
	cerr << "Unable to open " << headername << " for writing." << endl;
	return -3;
    }

    // Standard header information.
    hs << "//" << endl;
    hs << "// " << headername << endl;
    hs << "// Automagically Generated by " << argv[0] << endl;
    hs << "//       DO NOT HAND EDIT." << endl;
    hs << "// (Yes, this does mean you!)" << endl;
    hs << "//" << endl;
    hs << endl;

    os << "//" << endl;
    os << "// " << cppname << endl;
    os << "// Automagically Generated by " << argv[0] << endl;
    os << "//       DO NOT HAND EDIT." << endl;
    os << "// (Yes, this does mean you!)" << endl;
    os << "//" << endl;
    os << endl;
    os << "#include \"encyclopedia.h\"" << endl;
    os << "#include \"glbdef.h\"" << endl;
    os << endl;

    // Create our data structures.
    hs << "struct encyclopedia_entry" << endl;
    hs << "{" << endl;
    hs << "    int          key;" << endl;
    hs << "    const char  *name;" << endl;
    hs << "    int          numlines;" << endl;
    hs << "    const char **lines;" << endl;
    hs << "};" << endl;
    hs << endl;
    hs << "struct encyclopedia_book" << endl;
    hs << "{" << endl;
    hs << "    const char               *bookname;" << endl;
    hs << "    int                       numentries;" << endl;
    hs << "    const encyclopedia_entry**entries;" << endl;
    hs << "};" << endl;
    hs << endl;

    // Start reading in lines...
    while (input_waiting(is))
    {
	char	    *line;

	line = input_getline(is);
	if (*line == '#')
	{
	    // Ignore comments.
	    continue;
	}


	// Parse out the book/key/entry name.
	char	    bookname[1024], keyname[1024], entryname[1024];
	char	    *readhead;

	// If line is blank, ignore it.
	for (readhead = line; *readhead == ' '; readhead++);
	if (!*readhead)
	    continue;

	readhead = line;
	strcpy(bookname, line);
	if (strchr(bookname, ':'))
	    *strchr(bookname, ':') = '\0';

	for (readhead = line; *readhead; readhead++)
	{
	    if (*readhead == ':' && readhead[1] == ':')
		break;
	}
	if (!*readhead)
	{
	    cerr << "Improper formatted line:" << endl;
	    cerr << line;
	    continue;
	}
	readhead += 2;

	if (*readhead == '-')
	{
	    cerr << "Improper formatted line:" << endl;
	    cerr << line;
	    continue;
	}
	strcpy(keyname, bookname);
	strcat(keyname, "_");
	strcat(keyname, readhead);
	if (*keyname != '-' && strchr(keyname, '-'))
	    strchr(keyname, '-')[-1] = '\0';
	
	for (; *readhead; readhead++)
	{
	    if (*readhead == '-' && readhead[-1] == ' ' && readhead[1] == ' ')
		break;
	}
	if (!readhead)
	{
	    cerr << "Improper formatted line:" << endl;
	    cerr << line;
	    continue;
	}
	strcpy(entryname, readhead+2);

	// Create a new entry matching this setup.
	ENTRY	    *entry;
	entry = new ENTRY(keyname, entryname);
	BOOK	    *book;

	book = BOOK::getBook(bookname);
	book->appendEntry(entry);

	// Now add every line that occurs...
	while (input_waiting(is))
	{
	    line = input_getline(is);

	    // Add blank lines.
	    for (readhead = line; *readhead == ' '; readhead++);
	    if (!*readhead)
	    {
		// Append a truly blank line.
		entry->appendText("");
		continue;
	    }

	    // Verify we have 4 spaces.
	    if (line[0] != ' ' &&
		line[1] != ' ' &&
		line[2] != ' ' &&
		line[3] != ' ')
	    {
		// Likely start of another entry.
		input_putbackline();
		break;
	    }

	    // Add the line.
	    entry->appendText(&line[4]);
	}
    }

    // We have now read in all the books: output.
    if (glb_booklist)
    {
	BOOK		*book;
	int		 numbook = 0;

	for (book = glb_booklist; book; book = book->getNext())
	{
	    book->save(os, hs);
	    numbook++;
	}

	// Now, build global list.
	hs << "#define NUM_ENCYCLOPEDIA_BOOKS " << numbook << endl;
	hs << "extern const encyclopedia_book *glb_encyclopedia[NUM_ENCYCLOPEDIA_BOOKS];" << endl;

	os << "const encyclopedia_book *glb_encyclopedia[NUM_ENCYCLOPEDIA_BOOKS] =" << endl;
	os << "{" << endl;

	for (book = glb_booklist; book; book = book->getNext())
	{
	    os << "    &glb_encyclopedia_book_" << book->getName();
	    if (book->getNext())
		os << ",";
	    os << endl;
	}
	os << "};" << endl;
    }

    return 0;
}