morfeusz_common.i
1.69 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
%exception {
try{
$action
}
catch(const morfeusz::FileFormatException& e) {
SWIG_exception(SWIG_IOError, const_cast<char*>(e.what()));
}
catch(const std::exception& e) {
SWIG_exception(SWIG_RuntimeError, const_cast<char*>(e.what()));
}
catch(...) {
SWIG_exception(SWIG_RuntimeError, "Unknown exception");
}
}
namespace morfeusz {
%ignore MorphInterpretation::createIgn(int startNode, int endNode, const std::string& orth, const std::string& lemma);
%ignore MorphInterpretation::createWhitespace(int startNode, int endNode, const std::string& orth);
%ignore Morfeusz::analyse(const char*) const;
%ignore Morfeusz::analyse(const std::string&) const;
%ignore Morfeusz::setCharset(Charset);
// %rename(_doGetNext) ResultsIterator::next();
// %ignore Morfeusz::analyse(const std::string&, std::vector<MorphInterpretation>&) const;
// %ignore Morfeusz::generate(const std::string&, std::vector<MorphInterpretation>&) const;
// %ignore Morfeusz::generate(const std::string&, int, std::vector<MorphInterpretation>&) const;
%ignore Morfeusz::setDebug(bool);
%newobject Morfeusz::createInstance();
%newobject Morfeusz::analyseAsIterator(const char*) const;
}
%extend morfeusz::Morfeusz {
morfeusz::ResultsIterator* morfeusz::Morfeusz::analyseAsIterator(const char* text) const {
return dynamic_cast<const morfeusz::MorfeuszImpl*>($self)->analyseWithCopy(text);
}
}
%template(InterpsList) std::vector<morfeusz::MorphInterpretation>;
%template(StringsList) std::vector<std::string>;
%template(StringsLinkedList) std::list<std::string>;
#ifndef SWIGPERL
%template(StringsSet) std::set<std::string>;
#endif