MorfeuszImpl.hpp
6.43 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
* File: Morfeusz.hpp
* Author: mlenart
*
* Created on November 13, 2013, 5:21 PM
*/
#ifndef MORFEUSZ_HPP
#define MORFEUSZ_HPP
#include <string>
#include <list>
#include <vector>
#include <map>
#include <set>
#include "morfeusz2.h"
#include "fsa/fsa.hpp"
#include "ChunkBounds.hpp"
#include "InterpsGroup.hpp"
#include "case/CaseConverter.hpp"
#include "charset/CharsetConverter.hpp"
#include "charset/TextReader.hpp"
#include "InterpretedChunk.hpp"
#include "InflexionGraph.hpp"
#include "MorfeuszOptions.hpp"
#include "const.hpp"
#include "Environment.hpp"
#include "ResultsIteratorImpl.hpp"
#include "segrules/segrules.hpp"
#include "segrules/SegrulesFSA.hpp"
#include "deserialization/InterpsGroupsReader.hpp"
#include "deserialization/MorphDeserializer.hpp"
namespace morfeusz {
class MorfeuszImpl;
class MorphInterpretation;
class ResultsIterator;
// class ResultsIteratorImpl;
typedef State<InterpsGroupsReader> StateType;
/**
* Performs morphological analysis (analyze methods) and syntesis (generate methods).
*
* It is NOT thread-safe
* but it is possible to use separate Morfeusz instance for each concurrent thread.
*/
class MorfeuszImpl : public Morfeusz {
public:
MorfeuszImpl(const std::string& dictName, MorfeuszUsage usage);
virtual ~MorfeuszImpl();
std::string getDictID() const;
std::string getDictCopyright() const;
ResultsIterator* analyse(const std::string& text) const;
ResultsIterator* analyse(const char* text) const;
void analyse(const std::string& text, std::vector<MorphInterpretation>& result) const;
void generate(const std::string& lemma, std::vector<MorphInterpretation>& result) const;
void generate(const std::string& lemma, int tagId, std::vector<MorphInterpretation>& result) const;
void setCharset(Charset encoding);
Charset getCharset() const;
void setAggl(const std::string& aggl);
std::string getAggl() const;
void setPraet(const std::string& praet);
std::string getPraet() const;
void setCaseHandling(CaseHandling caseHandling);
CaseHandling getCaseHandling() const;
void setTokenNumbering(TokenNumbering tokenNumbering);
TokenNumbering getTokenNumbering() const;
void setWhitespaceHandling(WhitespaceHandling whitespaceHandling);
WhitespaceHandling getWhitespaceHandling() const;
void setDebug(bool debug);
const IdResolver& getDefaultAnalyzerTagset() const;
const IdResolver& getDefaultGeneratorTagset() const;
ResultsIterator* analyseWithCopy(const char* text) const;
const IdResolver& getIdResolver() const;
void setDictionary(const std::string& dictName);
const std::set<std::string>& getAvailableAgglOptions() const;
const std::set<std::string>& getAvailablePraetOptions() const;
Morfeusz* clone() const;
friend class ResultsIteratorImpl;
private:
void processOneWord(
const Environment& env,
TextReader& reader,
int startNodeNum,
std::vector<MorphInterpretation>& result,
bool insideIgnHandler = false) const;
void analyseOneWord(
TextReader& reader,
std::vector<MorphInterpretation>& results) const;
void adjustTokensCounter() const;
void doProcessOneWord(
const Environment& env,
TextReader& reader,
const SegrulesState& segrulesState) const;
void processInterpsGroup(
const Environment& env,
const TextReader& reader,
bool isAtWhitespace,
const SegrulesState& segrulesState,
const std::string& homonymId,
const InterpsGroup& ig) const;
void processInterpretedChunk(
const Environment& env,
const TextReader& reader,
bool isAtWhitespace,
bool caseMatches,
const SegrulesState& newState,
InterpretedChunk& ic) const;
void processWhitespacesChunk(
TextReader& reader,
int startNodeNum,
std::vector<MorphInterpretation>& results) const;
/**
* Read whitespaces at beginning of the word.
* Add whitespace MorphIntepretations to results vector
* iff whitespace handling is set to KEEP
*
* @param reader
* @param startNodeNum
* @param results
* @return - true iff some whitespace interpretations were added to the results vector
*/
bool handleWhitespacesAtBeginning(
const Environment& env,
TextReader& reader,
int startNodeNum,
std::vector<MorphInterpretation>& results) const;
/**
* Skips whitespaces at end of the word
* iff whitespaceHandling set to APPEND.
*
* @param env
* @param reader
* @return pointer to chunk end (possibly after some whitespaces)
*/
const char* handleWhitespacesAtEnd(
const Environment& env,
TextReader& reader) const;
void handleIgnChunk(
const Environment& env,
const ChunkBounds& chunkBounds,
int startNodeNum,
std::vector<MorphInterpretation>& results) const;
void appendIgnotiumToResults(
const Environment& env,
const ChunkBounds& chunkBounds,
int startNodeNum,
std::vector<MorphInterpretation>& results) const;
void ensureIsAnalyzer() const;
void ensureIsGenerator() const;
const Environment& getAnyEnvironment() const;
void doSetDictionary(const std::string& dictName);
std::string currDictionary;
MorfeuszUsage usage;
Environment analyzerEnv;
Environment generatorEnv;
MorfeuszOptions options;
mutable std::vector<InterpretedChunk> accum;
mutable int notMatchingCaseSegs;
mutable InflexionGraph graph;
mutable int nextNodeNum;
};
}
#endif /* MORFEUSZ_HPP */