Menu

[6d9522]: / examples / mist_gen / src / main.cpp  Maximize  Restore  History

Download this file

82 lines (70 with data), 2.1 kB

 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
#include <iostream>
#include <iomanip>
#include <cstddef>
#include <cstdlib>
#include "ValueLoader.h"
#include "TemplateLoader.h"
#include "Generator.h"
using namespace std;
///////////////////////////////////////////////////////////////////////
// Common data
const string appName = "mist_gen";
///////////////////////////////////////////////////////////////////////
// Output information about the usage of the tool
static void
usage();
///////////////////////////////////////////////////////////////////////
int
main(int argc, char* argv[])
{
if (argc < 3) {
usage();
return EXIT_SUCCESS;
}
string dataFile = argv[2];
string templatePath = argv[1];
string document;
try {
// Load data (values of the parameters)
CValueLoader valueLoader;
valueLoader.loadValues(dataFile);
// Load the templates
CTemplateLoader templateLoader;
templateLoader.loadValues(templatePath);
// Generate the resulting document
CGenerator generator;
generator.generateDocument(valueLoader.getValueGroups(),
templateLoader.getDocumentGroup(),
templateLoader.getBlockGroup(),
document);
}
catch (bad_alloc& e) {
cerr << "Error: not enough memory" << endl;
return EXIT_FAILURE;
}
catch (CValueLoader::CLoadingError& e) {
cerr << "Failed to load " << dataFile << ": " << e.what() << endl;
return EXIT_FAILURE;
}
catch (CTemplateLoader::CLoadingError& e) {
cerr << "Failed to load templates from " << templatePath
<< ": " << e.what() << endl;
return EXIT_FAILURE;
}
catch (runtime_error& e) {
cerr << "Error: " << e.what() << endl;
return EXIT_FAILURE;
}
// Output the result
cout << document.c_str();
return EXIT_SUCCESS;
}
///////////////////////////////////////////////////////////////////////
static void
usage()
{
cout << "Usage: " << appName << " "
<< "<template directory> "
<< "<data file>" << endl;
return;
}