-
Notifications
You must be signed in to change notification settings - Fork 0
/
tu.cpp
115 lines (85 loc) · 2.84 KB
/
tu.cpp
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
// ****************************************************************************
// ****************************************************************************
// tu.cpp
// ****************************************************************************
//
// ****************************************************************************
// ****************************************************************************
// ****************************************************************************
// Includes
// ****************************************************************************
#include "common.h"
// ****************************************************************************
// PrUnit::PrUnit()
// ****************************************************************************
PrUnit::PrUnit(Translator::Type type,
UINT index)
: m_type(type),
m_index(index)
{
}
// ****************************************************************************
// PoUnit::PoUnit()
// ****************************************************************************
PoUnit::PoUnit(const comString& keyword)
: m_keyword(keyword),
m_index(-1),
m_isKeyword(true)
{
}
PoUnit::PoUnit(UINT index)
: m_index(index),
m_isKeyword(false)
{
}
// ****************************************************************************
// TransScheme::printable()
// ****************************************************************************
comString&
TransScheme::printable(comString& buf)
{
char printBuffer[128];
char* loc = printBuffer;
UINT pIndex = 0;
for (UINT i = 0; i < m_preVec.getNumEntries(); i++) {
PrUnit* u = m_preVec[i];
while (pIndex++ < u->m_index)
loc += sprintf(loc, "x ");
if (i == m_preVec.getNumEntries() - 1)
loc += sprintf(loc, "-> ");
loc += sprintf(loc, "%s ", (const char*) Translator::typeToString(u->m_type));
}
loc += sprintf(loc, ": ");
for (UINT i = 0; i < m_postVec.getNumEntries(); i++) {
PoUnit* u = m_postVec[i];
if (u->m_isKeyword)
loc += sprintf(loc, "%s ", (const char*) u->m_keyword);
else
loc += sprintf(loc, "%d ", u->m_index);
}
*(loc - 1) = '\0';
buf = printBuffer;
return buf;
}
// ****************************************************************************
// TransScheme::returns()
// ****************************************************************************
Translator::Type
TransScheme::returns()
{
if (m_preVec.getNumEntries())
return m_preVec[m_preVec.getNumEntries() - 1]->m_type;
return Translator::None;
}
// ****************************************************************************
// TransScheme::getPreType()
// ****************************************************************************
Translator::Type
TransScheme::getPreType(UINT i)
{
for (UINT j = 0; j < m_preVec.getNumEntries(); j++) {
if (m_preVec[j]->m_index == i)
return m_preVec[j]->m_type;
}
return Translator::None;
}