aboutsummaryrefslogtreecommitdiff
path: root/test.cc
blob: 6874fd59df0f8180bbb10447ef596b54884a57e5 (plain)
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
#include "plattform_guard.h"
#include "transformation_facade.h"

#include "boost/program_options.hpp"

#include <string>
#include <vector>
#include <iostream>

int main(int ac, char** av) {
	boost::program_options::options_description optionDescription(
		"Supported options"
	);

	optionDescription.add_options()
		("transformation", boost::program_options::value<std::string>()->required(),  "transformation file")
		("target",         boost::program_options::value<std::string>(),              "target file")
		("include",        boost::program_options::value<std::vector<std::string>>(), "include paths")
	;

	boost::program_options::variables_map variables;

	boost::program_options::store(
		boost::program_options::parse_command_line(
			ac, av, optionDescription
		),
		variables
	);

	try {
		boost::program_options::notify(variables);
	}
	catch ( std::exception& exception ) {
		std::cerr << exception.what() << std::endl;
	}

	if ( variables.count("transformation") ) {
		std::vector<std::string> includePath;

		if ( variables.count("include") ) {
			includePath = variables["include"].as<std::vector<std::string>>();
		};

		InputXSLT::PlattformGuard plattform(includePath);

		try {
			InputXSLT::TransformationFacade transformation(
				variables["transformation"].as<std::string>(),
				plattform.getEntityResolver()
			);

			if ( variables.count("target") ) {
				transformation.generate(
					variables["target"].as<std::string>()
				);
			} else {
				transformation.generate(std::cout);
			}

			return 0;
		} 
		catch (const InputXSLT::ErrorCapacitor::exception& exception) {
			for ( auto&& error : *(exception.getCachedErrors()) ) {
				std::cerr << error << std::endl;
			}

			return 1;
		}
	} else {
		std::cout << optionDescription << std::endl;

		return 1;
	}

}