Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
23 : iType(ELexNL), iNumber(0)
28 Lexical::Lexical(const Lexical& aLex)
31 iNumber = aLex.iNumber;
32 strcpy(iText, aLex.iText);
35 Lexical& Lexical::operator = (const Lexical& aLex)
38 iNumber = aLex.iNumber;
39 strcpy(iText, aLex.iText);
43 int Lexical::CovertStringToHex()
45 char* curPtr = iText; // Position of current lexical in line
49 while (HexDigit(*curPtr, hexDigit))
51 number = (16 * number) + hexDigit;
57 int Lexical::HexDigit(char aDigit, int& decimalEquivalent)
59 boolean validDigit = efalse;
60 if ((aDigit >= '0') && (aDigit <= '9'))
62 decimalEquivalent = (aDigit - '0');
65 else if ((aDigit >= 'a') && (aDigit <= 'f'))
67 decimalEquivalent = 10 + (aDigit - 'a');
70 else if ((aDigit >= 'A') && (aDigit <= 'F'))
72 decimalEquivalent = 10 + (aDigit - 'A');
78 ostream& operator << (ostream& out, const Lexical& aLex)
110 LexAnal::LexAnal(const char* aFilename)
111 : iFilename(aFilename)
113 iFin.open(aFilename);
118 Lexical LexAnal::Read() // read next lexical into iLex
120 if (iLex.iType == ELexNL)
126 while (iLex.iType == ELexNL);
133 Lexical LexAnal::ReadNextLine() // read first lex on next line
139 void LexAnal::Report()
141 cerr << iFilename.Text() << '(' << iLineNo << "): \n";
142 cerr << iLine << '\n';
143 for (char* p = iLine; p < iLexPtr; p++)
153 void LexAnal::GetNextLex()
156 if (iLex.iType == ELexNL)
158 iFin.getline(iLine, MaxLineLen);
159 // Remove any CR character that appear at the end when
160 // reading a dos file on unix.
166 while ((*iCurPtr == ' ') || (*iCurPtr == '\t'))
171 if ((ch == '\0') && (iFin.eof())) // finds lexical type
173 else if ((ch == '\0') || (ch == '!')) // ! is a comment
174 iLex = ReadNewLine();
175 else if ((ch == '-') || ((ch >= '0') && (ch <= '9')))
177 else if (((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) || (ch == '_'))
182 iLex = ReadOperator();
185 void LexAnal::GetNextLine()
187 iFin.getline(iLine, MaxLineLen);
188 // Remove any CR character that appear at the end when
189 // reading a dos file on unix.
195 while ((*iCurPtr == ' ') || (*iCurPtr == '\t'))
200 if ((ch == '\0') && (iFin.eof())) // finds lexical type
202 else if ((ch == '\0') || (ch == '!'))
203 iLex = ReadNewLine();
204 else if ((ch == '-') || ((ch >= '0') && (ch <= '9')))
206 else if (((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) || (ch == '_'))
211 iLex = ReadOperator();
214 void LexAnal::PurgeLastCR(char *aLine)
216 int len = strlen(aLine) - 1;
217 if (len >= 0 && aLine[len] == '\r')
223 Lexical LexAnal::ReadEOF()
230 Lexical LexAnal::ReadNewLine()
234 while (*iCurPtr != '\0')
239 Lexical LexAnal::ReadNumber()
243 boolean negative = efalse;
244 lex.iType = ELexNumber;
251 while ((ch >= '0') && (ch <= '9'))
254 lex.iNumber = (10 * lex.iNumber) - (*iCurPtr - '0');
256 lex.iNumber=(10 * lex.iNumber) + (*iCurPtr - '0');
264 Lexical LexAnal::ReadIdent()
268 lex.iType = ELexIdent;
274 while (((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) || (ch == '_') || ((ch >= '0') && (ch <= '9')));
275 strncpy(lex.iText, iLexPtr, iCurPtr - iLexPtr);
276 lex.iText[iCurPtr - iLexPtr] = '\0';
280 Lexical LexAnal::ReadString()
284 lex.iType = ELexString;
287 while ((ch != '"') && (*iCurPtr != '\0'))
292 strncpy(lex.iText, iLexPtr + 1, iCurPtr - (iLexPtr + 1));
293 lex.iText[iCurPtr - (iLexPtr + 1)] = '\0';
295 iCurPtr++; // finds position after last double quotes
298 cerr << "Warning: missing quotes\n";
304 Lexical LexAnal::ReadOperator()
307 lex.iType = ELexOperator;
308 lex.iText[0] = *iCurPtr;