forked from thunlp/THULAC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththulac_raw.h
362 lines (350 loc) · 12.8 KB
/
thulac_raw.h
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
#pragma once
#include <set>
#include "thulac_character.h"
namespace thulac{
class Raw:public std::vector<Character>{
public:
Raw& operator+=(Raw& right){
for(size_t i=0;i<right.size();i++){
this->push_back(right[i]);
};
return *this;
};
Raw& operator+=(const char* right){
while(*right){
this->push_back(*(right++));
}
return *this;
};
Raw& operator+=(const char& right){
this->push_back(right);
return *this;
};
Raw& operator+=(const std::string& right){
for(size_t i=0;i<right.size();i++){
this->push_back(right[i]);
};
return *this;
};
/*
* 从右边查找相应的字,返回下标,-1表示没有找到
* */
int rfind(const Character& sep){
int ind=this->size()-1;
while(ind>=0){
if((*this)[ind]==sep)return ind;
ind--;
}
return -1;
};
friend std::ostream& operator<< (std::ostream& os,const Raw& raw){
for(size_t i=0;i<raw.size();i++){
put_character(raw[i],os);
}
return os;
};
};
inline int put_raw(const Raw& r,FILE * pFile=stdout){
for(size_t j=0;j<r.size();j++){
put_character(r[j],pFile);
}
}
inline int string_to_raw(const std::string& str,Raw& sent){
sent.clear();
int current_character=-1;
int c;
for(int i=0;i<str.length();i++){
c=str.at(i);
if(!(c&0x80)){//1个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=c;//+65248;//半角转全角,放入缓存
}else if(!(c&0x40)){//not a beginning of a Character
current_character=(current_character<<6)+(c&0x3f);
}else if(!(c&0x20)){//2个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x1f);
}else if(!(c&0x10)){//3个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x0f);
}else if(!(c&0x80)){//4个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x07);
}else{//更大的unicode编码不能处理
if(current_character!=-1)sent.push_back(current_character);
current_character=0;
}
}
if(current_character>0)sent.push_back(current_character);
return 0;
}
inline int get_raw(Raw& sent,FILE* pFile=stdin,int min_char=33){
sent.clear();
int current_character=-1;
int c;
while(1){//反复读取输入流
c=fgetc(pFile);
if(c==EOF){
if(current_character!=-1)sent.push_back(current_character);
return c;//end of file
}
if(!(c&0x80)){//1个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
if(c<min_char){//非打印字符及空格
return c;
}else{//一般ascii字符
current_character=c;//+65248;//半角转全角,放入缓存
}
}else if(!(c&0x40)){//not a beginning of a Character
current_character=(current_character<<6)+(c&0x3f);
}else if(!(c&0x20)){//2个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x1f);
}else if(!(c&0x10)){//3个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x0f);
}else if(!(c&0x80)){//4个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x07);
}else{//更大的unicode编码不能处理
if(current_character!=-1)sent.push_back(current_character);
current_character=0;
}
}
}
inline int get_raw(Character* seq,int max_len,int&len,FILE* pFile=stdin,int min_char=33){
len=0;
Character current_character=-1;
int c;
while(1){//反复读取输入流
c=fgetc(pFile);
if(c==EOF){
if((current_character!=-1)&&(len<max_len))seq[len++]=current_character;
return c;//end of file
}
if(!(c&0x80)){//1个byte的utf-8编码
if((current_character!=-1)&&(len<max_len))seq[len++]=current_character;
if(c<min_char){//非打印字符及空格
return c;
}else{//一般ascii字符
current_character=c;//+65248;//半角转全角,放入缓存
}
}else if(!(c&0x40)){//not a beginning of a Character
current_character=(current_character<<6)+(c&0x3f);
}else if(!(c&0x20)){//2个byte的utf-8编码
if((current_character!=-1)&&(len<max_len))seq[len++]=current_character;
current_character=(c&0x1f);
}else if(!(c&0x10)){//3个byte的utf-8编码
if((current_character!=-1)&&(len<max_len))seq[len++]=current_character;
current_character=(c&0x0f);
}else if(!(c&0x80)){//4个byte的utf-8编码
if((current_character!=-1)&&(len<max_len))seq[len++]=current_character;
current_character=(c&0x07);
}else{//更大的unicode编码不能处理
if((current_character!=-1)&&(len<max_len))seq[len++]=current_character;
current_character=0;
}
}
}
inline void get_raw(Raw& sent,char* s,int len,int min_char=33){
sent.clear();
int current_character=-1;
int c;
for(int i = 0; i < len; i ++){//反复读取s
c=s[i];
if(!(c&0x80)){//1个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
if(c<min_char){//非打印字符及空格
//return c;
current_character=32;
}else{//一般ascii字符
current_character=c;//+65248;//半角转全角,放入缓存
}
}else if(!(c&0x40)){//not a beginning of a Character
current_character=(current_character<<6)+(c&0x3f);
}else if(!(c&0x20)){//2个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x1f);
}else if(!(c&0x10)){//3个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x0f);
}else if(!(c&0x80)){//4个byte的utf-8编码
if(current_character!=-1)sent.push_back(current_character);
current_character=(c&0x07);
}else{//更大的unicode编码不能处理
if(current_character!=-1)sent.push_back(current_character);
current_character=0;
}
}
if(current_character>0 && len != 9999){
sent.push_back(current_character);
}
//if(!(c&0x80))sent.push_back(current_character);
//return 0;
}
inline int get_raw_vector(std::vector<Raw>& vec,FILE* pFile=stdin,int min_char=33){
vec.clear();
Raw sent;
sent.clear();
//std::vector<int> pun_vec;
std::set<int> pun_set;
std::set<int>::iterator it;
//int punInts[] = {46,63,33,12290,65311,65281};
int punInts[] = {63,33,59,12290,65311,65281,65307};
for(int i = 0; i < 9; i ++){
pun_set.insert(punInts[i]);
}
int current_character=-1;
int c;
while(1){//反复读取输入流
c=fgetc(pFile);
std::cout << c;
if(c==EOF){
if(current_character!=-1)sent.push_back(current_character);
return c;//end of file
}
if(!(c&0x80)){//1个byte的utf-8编码
if(current_character!=-1){
sent.push_back(current_character);
it = pun_set.find(current_character);
if(it != pun_set.end()){
//pun_vec.push_back(sent.size());
//std::cout<<"find pun at "<<sent.size()<<std::endl;
if(sent.size() == 1){
vec.push_back(sent);
sent.clear();
}else{
int last_character = sent[sent.size()-2];
it = pun_set.find(last_character);
if(it == pun_set.end()){
vec.push_back(sent);
sent.clear();
}
}
}
}
if(c<min_char){//非打印字符及空格
//return c;
current_character=32;
}else{//一般ascii字符
current_character=c;//+65248;//半角转全角,放入缓存
}
}else if(!(c&0x40)){//not a beginning of a Character
current_character=(current_character<<6)+(c&0x3f);
}else if(!(c&0x20)){//2个byte的utf-8编码
//if(current_character!=-1)sent.push_back(current_character);
if(current_character!=-1){
sent.push_back(current_character);
it = pun_set.find(current_character);
if(it != pun_set.end()){
//pun_vec.push_back(sent.size());
//std::cout<<"find pun at "<<sent.size()<<std::endl;
if(sent.size() == 1){
vec.push_back(sent);
sent.clear();
}else{
int last_character = sent[sent.size()-2];
it = pun_set.find(last_character);
if(it == pun_set.end()){
vec.push_back(sent);
sent.clear();
}
}
}
}
current_character=(c&0x1f);
}else if(!(c&0x10)){//3个byte的utf-8编码
//if(current_character!=-1)sent.push_back(current_character);
if(current_character!=-1){
sent.push_back(current_character);
it = pun_set.find(current_character);
if(it != pun_set.end()){
//pun_vec.push_back(sent.size());
//std::cout<<"find pun at "<<sent.size()<<std::endl;
if(sent.size() == 1){
vec.push_back(sent);
sent.clear();
}else{
int last_character = sent[sent.size()-2];
it = pun_set.find(last_character);
if(it == pun_set.end()){
vec.push_back(sent);
sent.clear();
}
}
}
}
current_character=(c&0x0f);
}else if(!(c&0x80)){//4个byte的utf-8编码
//if(current_character!=-1)sent.push_back(current_character);
if(current_character!=-1){
sent.push_back(current_character);
it = pun_set.find(current_character);
if(it != pun_set.end()){
//pun_vec.push_back(sent.size());
//std::cout<<"find pun at "<<sent.size()<<std::endl;
if(sent.size() == 1){
vec.push_back(sent);
sent.clear();
}else{
int last_character = sent[sent.size()-2];
it = pun_set.find(last_character);
if(it == pun_set.end()){
vec.push_back(sent);
sent.clear();
}
}
}
}
current_character=(c&0x07);
}else{//更大的unicode编码不能处理
//if(current_character!=-1)sent.push_back(current_character);
if(current_character!=-1){
sent.push_back(current_character);
it = pun_set.find(current_character);
if(it != pun_set.end()){
//pun_vec.push_back(sent.size());
if(sent.size() == 1){
vec.push_back(sent);
sent.clear();
}else{
int last_character = sent[sent.size()-2];
it = pun_set.find(last_character);
if(it == pun_set.end()){
vec.push_back(sent);
sent.clear();
}
}
}
}
current_character=0;
}
}
//if(current_character>0 && len != 9999)sent.push_back(current_character);
if(current_character > 0){
sent.push_back(current_character);
vec.push_back(sent);
sent.clear();
}else if(current_character > 0){
vec.push_back(sent);
sent.clear();
}
return -1;
/*
for(int i = 0; i < vec.size(); i ++){
std::cout<<"get_raw_vec:"<<vec[i]<<std::endl;
}
/*
int startIndex = 0;
int endIndex = 0;
Raw tmpRaw;
for(int i = 0; i < pun_vec.size(); i ++){
startIndex = (i == 0) ? 0 : pun_vec[i - 1];
endIndex = pun_vec[i];
if(endIndex > 1 )
std::cout<<"get_raw_vec:"<<pun_vec[i]<<std::endl;
}
*/
//if(!(c&0x80))sent.push_back(current_character);
//return 0;
}
}//for thulac