Main.cc
1.66 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
/**
* Main.cc
* Created on: 18 mar. 2016
* Author: AKKA IS
*/
#include <iostream>
#include <boost/program_options.hpp>
#include "AMDA-Kernel_Config.hh"
#include "ParameterManager.hh"
#include "PlotOutput.hh"
#include <Application.hh>
// Parameters module include
#include "Process.hh"
#include "ServicesServer.hh"
#include "TimeUtil.hh"
using namespace std;
namespace po = boost::program_options;
using namespace log4cxx;
using namespace log4cxx::helpers;
using namespace AMDA::Parameters;
#define MAX_YEAR 2040
/**
* Main function
*/
int main(int argc, char *argv[]) {
int result = AMDA_EXIT_OK;
/// Parse command line parameters
po::options_description desc("Allowed options");
desc.add_options()
("help,h", "Produce help message")
("version,v", "Program version")
("palette,p", po::value< vector<string> >(), "Color palette(s) file(s)")
;
po::positional_options_description p;
p.add("palette", -1);
po::variables_map vm;
po::store(po::command_line_parser(argc, argv).options(desc).positional(p).run(), vm);
po::notify(vm);
if (vm.count("help")) {
cout << desc << "\n";
return result;
}
if (vm.count("version")) {
cout << "Version: " << AMDA_Kernel_VERSION << "\n";
return result;
}
if (!vm.count("palette")) {
return result;
}
AMDA::Common::Application lMain;
return lMain.main(argc,argv,[&](int , char **, AMDA::helpers::Properties& /*lProperties*/) -> int {
ParameterManager parameterManager;
plot::PlotOutput plotOutput(parameterManager);
std::vector<std::string> paletteList = vm["palette"].as< std::vector<string> >();
for(auto palette:paletteList){
plotOutput.palToSvg(palette);
}
return result;
});
}