-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
43 lines (39 loc) · 1.34 KB
/
main.cpp
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
#include "Application.h"
#include "Parameters.h"
#include "InterpolationException.h"
#include "Log.h"
using namespace app;
static void help(const std::string& error) {
log() << error;
log() <<
" \n" <<
"Usage:\n" <<
" [--source|-s] file source with function points\n" <<
" [--destination|-d] file source with arguments to be interpolated\n" <<
" [--output|-o] output file. Default is <output.txt>\n" <<
" [--spline] interpolation algorithm: [Neighbor|Linear|Quadric]\n" <<
" [--verbose|-v] be verbose\n" <<
" [--help|-h] print this message\n";
}
int main(int argc, char** argv) {
Parameters params;
try {
const std::string error = params.parse(argc, argv);
if (!error.empty()) {
help(error);
return 0;
}
Application::process(params);
} catch (const InterpolationException& ex) {
log() << "<InterpolationException> occured. " << ex.what();
return 0;
} catch (const std::exception& ex) {
log() << "<Exception> occured. " << ex.what();
return 0;
} catch (...) {
log() << "Unknown exception occured";
return 0;
}
log() << "Success!";
return 0;
}