sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Header LEXICAL.CPP
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "LEXICAL.H"
|
sl@0
|
21 |
|
sl@0
|
22 |
Lexical::Lexical()
|
sl@0
|
23 |
: iType(ELexNL), iNumber(0)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
iText[0] = '\0';
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
Lexical::Lexical(const Lexical& aLex)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
iType = aLex.iType;
|
sl@0
|
31 |
iNumber = aLex.iNumber;
|
sl@0
|
32 |
strcpy(iText, aLex.iText);
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
Lexical& Lexical::operator = (const Lexical& aLex)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
iType = aLex.iType;
|
sl@0
|
38 |
iNumber = aLex.iNumber;
|
sl@0
|
39 |
strcpy(iText, aLex.iText);
|
sl@0
|
40 |
return *this;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
int Lexical::CovertStringToHex()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
char* curPtr = iText; // Position of current lexical in line
|
sl@0
|
46 |
int hexDigit;
|
sl@0
|
47 |
int number = 0;
|
sl@0
|
48 |
|
sl@0
|
49 |
while (HexDigit(*curPtr, hexDigit))
|
sl@0
|
50 |
{
|
sl@0
|
51 |
number = (16 * number) + hexDigit;
|
sl@0
|
52 |
curPtr++;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
return number;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
int Lexical::HexDigit(char aDigit, int& decimalEquivalent)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
boolean validDigit = efalse;
|
sl@0
|
60 |
if ((aDigit >= '0') && (aDigit <= '9'))
|
sl@0
|
61 |
{
|
sl@0
|
62 |
decimalEquivalent = (aDigit - '0');
|
sl@0
|
63 |
validDigit = etrue;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
else if ((aDigit >= 'a') && (aDigit <= 'f'))
|
sl@0
|
66 |
{
|
sl@0
|
67 |
decimalEquivalent = 10 + (aDigit - 'a');
|
sl@0
|
68 |
validDigit = etrue;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
else if ((aDigit >= 'A') && (aDigit <= 'F'))
|
sl@0
|
71 |
{
|
sl@0
|
72 |
decimalEquivalent = 10 + (aDigit - 'A');
|
sl@0
|
73 |
validDigit = etrue;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
return validDigit;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
ostream& operator << (ostream& out, const Lexical& aLex)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
switch (aLex.iType)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
case ELexEOF:
|
sl@0
|
83 |
{
|
sl@0
|
84 |
out << "EOF";
|
sl@0
|
85 |
break;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
case ELexNL:
|
sl@0
|
88 |
{
|
sl@0
|
89 |
out << "NL";
|
sl@0
|
90 |
break;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
case ELexNumber:
|
sl@0
|
93 |
{
|
sl@0
|
94 |
out << aLex.iNumber;
|
sl@0
|
95 |
break;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
case ELexOperator:
|
sl@0
|
98 |
{
|
sl@0
|
99 |
out << aLex.iText[0];
|
sl@0
|
100 |
break;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
default:
|
sl@0
|
103 |
{
|
sl@0
|
104 |
out << aLex.iText;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
}
|
sl@0
|
107 |
return out;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
LexAnal::LexAnal(const char* aFilename)
|
sl@0
|
111 |
: iFilename(aFilename)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
iFin.open(aFilename);
|
sl@0
|
114 |
iLex.iType = ELexNL;
|
sl@0
|
115 |
iLineNo = 0;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
Lexical LexAnal::Read() // read next lexical into iLex
|
sl@0
|
119 |
{
|
sl@0
|
120 |
if (iLex.iType == ELexNL)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
do
|
sl@0
|
123 |
{
|
sl@0
|
124 |
GetNextLex();
|
sl@0
|
125 |
}
|
sl@0
|
126 |
while (iLex.iType == ELexNL);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
else
|
sl@0
|
129 |
GetNextLex();
|
sl@0
|
130 |
return iLex;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
Lexical LexAnal::ReadNextLine() // read first lex on next line
|
sl@0
|
134 |
{
|
sl@0
|
135 |
GetNextLine();
|
sl@0
|
136 |
return iLex;
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
void LexAnal::Report()
|
sl@0
|
140 |
{
|
sl@0
|
141 |
cerr << iFilename.Text() << '(' << iLineNo << "): \n";
|
sl@0
|
142 |
cerr << iLine << '\n';
|
sl@0
|
143 |
for (char* p = iLine; p < iLexPtr; p++)
|
sl@0
|
144 |
cerr << ' ';
|
sl@0
|
145 |
cerr << "^\n";
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
LexAnal::~LexAnal()
|
sl@0
|
149 |
{
|
sl@0
|
150 |
iFin.close();
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
void LexAnal::GetNextLex()
|
sl@0
|
154 |
{
|
sl@0
|
155 |
char ch;
|
sl@0
|
156 |
if (iLex.iType == ELexNL)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
iFin.getline(iLine, MaxLineLen);
|
sl@0
|
159 |
// Remove any CR character that appear at the end when
|
sl@0
|
160 |
// reading a dos file on unix.
|
sl@0
|
161 |
PurgeLastCR(iLine);
|
sl@0
|
162 |
iCurPtr = iLine;
|
sl@0
|
163 |
iLineNo++;
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
while ((*iCurPtr == ' ') || (*iCurPtr == '\t'))
|
sl@0
|
167 |
iCurPtr++;
|
sl@0
|
168 |
ch = *iCurPtr;
|
sl@0
|
169 |
iLexPtr = iCurPtr;
|
sl@0
|
170 |
|
sl@0
|
171 |
if ((ch == '\0') && (iFin.eof())) // finds lexical type
|
sl@0
|
172 |
iLex = ReadEOF();
|
sl@0
|
173 |
else if ((ch == '\0') || (ch == '!')) // ! is a comment
|
sl@0
|
174 |
iLex = ReadNewLine();
|
sl@0
|
175 |
else if ((ch == '-') || ((ch >= '0') && (ch <= '9')))
|
sl@0
|
176 |
iLex = ReadNumber();
|
sl@0
|
177 |
else if (((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) || (ch == '_'))
|
sl@0
|
178 |
iLex = ReadIdent();
|
sl@0
|
179 |
else if (ch == '"')
|
sl@0
|
180 |
iLex = ReadString();
|
sl@0
|
181 |
else
|
sl@0
|
182 |
iLex = ReadOperator();
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
void LexAnal::GetNextLine()
|
sl@0
|
186 |
{
|
sl@0
|
187 |
iFin.getline(iLine, MaxLineLen);
|
sl@0
|
188 |
// Remove any CR character that appear at the end when
|
sl@0
|
189 |
// reading a dos file on unix.
|
sl@0
|
190 |
PurgeLastCR(iLine);
|
sl@0
|
191 |
iCurPtr = iLine;
|
sl@0
|
192 |
iLineNo++;
|
sl@0
|
193 |
|
sl@0
|
194 |
char ch;
|
sl@0
|
195 |
while ((*iCurPtr == ' ') || (*iCurPtr == '\t'))
|
sl@0
|
196 |
iCurPtr++;
|
sl@0
|
197 |
ch = *iCurPtr;
|
sl@0
|
198 |
iLexPtr = iCurPtr;
|
sl@0
|
199 |
|
sl@0
|
200 |
if ((ch == '\0') && (iFin.eof())) // finds lexical type
|
sl@0
|
201 |
iLex = ReadEOF();
|
sl@0
|
202 |
else if ((ch == '\0') || (ch == '!'))
|
sl@0
|
203 |
iLex = ReadNewLine();
|
sl@0
|
204 |
else if ((ch == '-') || ((ch >= '0') && (ch <= '9')))
|
sl@0
|
205 |
iLex=ReadNumber();
|
sl@0
|
206 |
else if (((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) || (ch == '_'))
|
sl@0
|
207 |
iLex = ReadIdent();
|
sl@0
|
208 |
else if (ch == '"')
|
sl@0
|
209 |
iLex = ReadString();
|
sl@0
|
210 |
else
|
sl@0
|
211 |
iLex = ReadOperator();
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
void LexAnal::PurgeLastCR(char *aLine)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
int len = strlen(aLine) - 1;
|
sl@0
|
217 |
if (len >= 0 && aLine[len] == '\r')
|
sl@0
|
218 |
{
|
sl@0
|
219 |
aLine[len] = '\0';
|
sl@0
|
220 |
}
|
sl@0
|
221 |
}
|
sl@0
|
222 |
|
sl@0
|
223 |
Lexical LexAnal::ReadEOF()
|
sl@0
|
224 |
{
|
sl@0
|
225 |
Lexical lex;
|
sl@0
|
226 |
lex.iType = ELexEOF;
|
sl@0
|
227 |
return lex;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
Lexical LexAnal::ReadNewLine()
|
sl@0
|
231 |
{
|
sl@0
|
232 |
Lexical lex;
|
sl@0
|
233 |
lex.iType = ELexNL;
|
sl@0
|
234 |
while (*iCurPtr != '\0')
|
sl@0
|
235 |
iCurPtr++;
|
sl@0
|
236 |
return lex;
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
Lexical LexAnal::ReadNumber()
|
sl@0
|
240 |
{
|
sl@0
|
241 |
Lexical lex;
|
sl@0
|
242 |
char ch;
|
sl@0
|
243 |
boolean negative = efalse;
|
sl@0
|
244 |
lex.iType = ELexNumber;
|
sl@0
|
245 |
if (*iCurPtr == '-')
|
sl@0
|
246 |
{
|
sl@0
|
247 |
negative = etrue;
|
sl@0
|
248 |
iCurPtr++;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
ch = *iCurPtr;
|
sl@0
|
251 |
while ((ch >= '0') && (ch <= '9'))
|
sl@0
|
252 |
{
|
sl@0
|
253 |
if (negative)
|
sl@0
|
254 |
lex.iNumber = (10 * lex.iNumber) - (*iCurPtr - '0');
|
sl@0
|
255 |
else
|
sl@0
|
256 |
lex.iNumber=(10 * lex.iNumber) + (*iCurPtr - '0');
|
sl@0
|
257 |
iCurPtr++;
|
sl@0
|
258 |
ch = *iCurPtr;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
return lex;
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
|
sl@0
|
264 |
Lexical LexAnal::ReadIdent()
|
sl@0
|
265 |
{
|
sl@0
|
266 |
Lexical lex;
|
sl@0
|
267 |
char ch;
|
sl@0
|
268 |
lex.iType = ELexIdent;
|
sl@0
|
269 |
do
|
sl@0
|
270 |
{
|
sl@0
|
271 |
iCurPtr++;
|
sl@0
|
272 |
ch = *iCurPtr;
|
sl@0
|
273 |
}
|
sl@0
|
274 |
while (((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) || (ch == '_') || ((ch >= '0') && (ch <= '9')));
|
sl@0
|
275 |
strncpy(lex.iText, iLexPtr, iCurPtr - iLexPtr);
|
sl@0
|
276 |
lex.iText[iCurPtr - iLexPtr] = '\0';
|
sl@0
|
277 |
return lex;
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
Lexical LexAnal::ReadString()
|
sl@0
|
281 |
{
|
sl@0
|
282 |
Lexical lex;
|
sl@0
|
283 |
char ch;
|
sl@0
|
284 |
lex.iType = ELexString;
|
sl@0
|
285 |
iCurPtr++;
|
sl@0
|
286 |
ch = *iCurPtr;
|
sl@0
|
287 |
while ((ch != '"') && (*iCurPtr != '\0'))
|
sl@0
|
288 |
{
|
sl@0
|
289 |
iCurPtr++;
|
sl@0
|
290 |
ch = *iCurPtr;
|
sl@0
|
291 |
}
|
sl@0
|
292 |
strncpy(lex.iText, iLexPtr + 1, iCurPtr - (iLexPtr + 1));
|
sl@0
|
293 |
lex.iText[iCurPtr - (iLexPtr + 1)] = '\0';
|
sl@0
|
294 |
if (ch == '"')
|
sl@0
|
295 |
iCurPtr++; // finds position after last double quotes
|
sl@0
|
296 |
else
|
sl@0
|
297 |
{
|
sl@0
|
298 |
cerr << "Warning: missing quotes\n";
|
sl@0
|
299 |
Report();
|
sl@0
|
300 |
}
|
sl@0
|
301 |
return lex;
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
Lexical LexAnal::ReadOperator()
|
sl@0
|
305 |
{
|
sl@0
|
306 |
Lexical lex;
|
sl@0
|
307 |
lex.iType = ELexOperator;
|
sl@0
|
308 |
lex.iText[0] = *iCurPtr;
|
sl@0
|
309 |
iCurPtr++;
|
sl@0
|
310 |
return lex;
|
sl@0
|
311 |
}
|