morfeusz_analyzer.cpp
1.07 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
/*
* File: main.cc
* Author: mlenart
*
* Created on October 8, 2013, 12:41 PM
*/
#include <cstdlib>
#include <iostream>
#include <vector>
#include <map>
#include "morfeusz2.h"
#include "cli/cli.hpp"
using namespace std;
using namespace morfeusz;
int main(int argc, const char** argv) {
cerr << "Morfeusz analyzer, version: " << Morfeusz::getVersion() << endl;
Morfeusz* morfeusz;
try {
ez::ezOptionParser& opt = *getOptions(argc, argv, ANALYZER);
morfeusz = initializeMorfeusz(opt, ANALYZER);
delete &opt;
}
catch (const std::exception& ex) {
cerr << ex.what() << endl;
exit(1);
}
string line;
vector<MorphInterpretation> res;
try {
while (getline(cin, line)) {
res.resize(0);
morfeusz->analyse(line, res);
printMorphResults(*morfeusz, res, true);
}
}
catch (const std::exception& ex) {
cerr << "Failed to perform morphosyntactic analysis: " << ex.what() << endl;
exit(1);
}
delete morfeusz;
printf("\n");
return 0;
}