Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PCNTools.cpp « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c5388a920a6cb7efa6fe248f296495fb10ed2d6 (plain)
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
#include "PCNTools.h"

#include <iostream>

namespace PCN
{

const std::string chars = "'\\";
const char& quote = chars[0];
const char& slash = chars[1];

// safe get
inline char get(const std::string& in, int c) {
	if (c < 0 || c >= (int)in.size()) return 0;
	else return in[(size_t)c];
}

// consume whitespace
inline void eatws(const std::string& in, int& c) {
	while (get(in,c) == ' ') { c++; }
}

// from 'foo' return foo
std::string getEscapedString(const std::string& in, int &c)
{
	eatws(in,c);
	if (get(in,c++) != quote) return "ERROR";
	std::string res;
	char cur = 0;
	do {
		cur = get(in,c++);
		if (cur == slash) { res += get(in,c++); }
		else if (cur != quote) { res += cur; }
	} while (get(in,c) != quote && (c < (int)in.size()));
	c++;
	eatws(in,c);
	return res;
}

// basically atof
float getFloat(const std::string& in, int &c)
{
	std::string tmp;
	eatws(in,c);
	while (c < (int)in.size() && get(in,c) != ' ' && get(in,c) != ')' && get(in,c) != ',') {
		tmp += get(in,c++);
	}
	eatws(in,c);
	return atof(tmp.c_str());
}

// basically atof
int getInt(const std::string& in, int &c)
{
	std::string tmp;
	eatws(in,c);
	while (c < (int)in.size() && get(in,c) != ' ' && get(in,c) != ')' && get(in,c) != ',') {
		tmp += get(in,c++);
	}
	eatws(in,c);
	return atoi(tmp.c_str());
}

// parse ('foo', 0.23)
CNAlt getCNAlt(const std::string& in, int &c)
{
	if (get(in,c++) != '(') { std::cerr << "PCN/PLF parse error: expected ( at start of cn alt block\n"; return CNAlt(); } // throw "expected (";
	std::string word = getEscapedString(in,c);
	if (get(in,c++) != ',') { std::cerr << "PCN/PLF parse error: expected , after string\n"; return CNAlt(); } // throw "expected , after string";
	size_t cnNext = 1;
	float prob = getFloat(in,c);
	if (get(in,c) == ',') {  // WORD LATTICE
	  c++;
	  int colIncr = getInt(in,c);
	  if (colIncr < 1) { colIncr = 1; //WARN
	  }
	  cnNext = (size_t)colIncr;
	}
	if (get(in,c++) != ')') { std::cerr << "PCN/PLF parse error: expected ) at end of cn alt block\n"; return CNAlt(); } // throw "expected )";
	eatws(in,c);
	return CNAlt(std::pair<std::string, float>(word,prob), cnNext);
}

// parse (('foo', 0.23), ('bar', 0.77))
CNCol getCNCol(const std::string& in, int &c) {
	CNCol res;
	if (get(in,c++) != '(') return res;  // error
	eatws(in,c);
	while (1) {
		if (c > (int)in.size()) { break; }
		if (get(in,c) == ')') {
			c++;
			eatws(in,c);
			break;
		}
		if (get(in,c) == ',' && get(in,c+1) == ')') {
			c+=2;
			eatws(in,c);
			break;
		}
		if (get(in,c) == ',') { c++; eatws(in,c); }
		res.push_back(getCNAlt(in, c));
	}
	return res;
}

// parse ((('foo', 0.23), ('bar', 0.77)), (('a', 0.3), ('c', 0.7)))
CN parsePCN(const std::string& in)
{
	CN res;
	int c = 0;
	if (in[c++] != '(') return res; // error
	while (1) {
		if (c > (int)in.size()) { break; }
		if (get(in,c) == ')') {
			c++;
			eatws(in,c);
			break;
		}
		if (get(in,c) == ',' && get(in,c+1) == ')') {
			c+=2;
			eatws(in,c);
			break;
		}
		if (get(in,c) == ',') { c++; eatws(in,c); }
		res.push_back(getCNCol(in, c));
	}
	return res;
}

}