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.H
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __LEXICAL_H__
|
sl@0
|
21 |
#define __LEXICAL_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
#if defined(__VC32__) && !defined(__MSVCDOTNET__)
|
sl@0
|
24 |
#pragma warning( disable : 4511 ) // copy constructor could not be generated
|
sl@0
|
25 |
#pragma warning( disable : 4512 ) // assignment operator could not be generated
|
sl@0
|
26 |
#pragma warning( disable : 4514 ) // unreferenced inline function has been removed
|
sl@0
|
27 |
#pragma warning( disable : 4699 ) // Note: Using precompiled header %s
|
sl@0
|
28 |
#pragma warning( disable : 4710 ) // function not inlined
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
|
sl@0
|
31 |
#include "STRNG.H"
|
sl@0
|
32 |
#include <stdlib.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
#if defined(__VC32__) && !defined(__MSVCDOTNET__)
|
sl@0
|
35 |
#include <iostream.h>
|
sl@0
|
36 |
#include <fstream.h>
|
sl@0
|
37 |
#else //!__VC32__ || __MSVCDOTNET__
|
sl@0
|
38 |
#include <iostream>
|
sl@0
|
39 |
#include <fstream>
|
sl@0
|
40 |
using namespace std;
|
sl@0
|
41 |
#endif //!__VC32__ || __MSVCDOTNET__
|
sl@0
|
42 |
|
sl@0
|
43 |
#include "GDR.H"
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
@publishedAll
|
sl@0
|
46 |
WARNING:Enum for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
enum LexType
|
sl@0
|
49 |
{
|
sl@0
|
50 |
ELexEOF, // end of file
|
sl@0
|
51 |
ELexNL, // newline (newlines, white-space and comments stripped)
|
sl@0
|
52 |
ELexNumber, // integer (no optional plus or minus)
|
sl@0
|
53 |
ELexIdent, // identifier beginning with a..z, A..Z, or _ and continuing with 0..9
|
sl@0
|
54 |
ELexString, // string delimited at start by "
|
sl@0
|
55 |
ELexOperator // any other single character
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
class Lexical
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
@publishedAll
|
sl@0
|
61 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
{
|
sl@0
|
64 |
public:
|
sl@0
|
65 |
Lexical();
|
sl@0
|
66 |
Lexical(const Lexical& aLex);
|
sl@0
|
67 |
Lexical& operator = (const Lexical& aLex);
|
sl@0
|
68 |
int CovertStringToHex();
|
sl@0
|
69 |
private:
|
sl@0
|
70 |
int HexDigit(char aDigit, int& decimalEquivalent);
|
sl@0
|
71 |
public:
|
sl@0
|
72 |
LexType iType;
|
sl@0
|
73 |
int iNumber; // for ELexNumber
|
sl@0
|
74 |
char iText[MaxLineLen + 1]; // for ELexIdent, ELexString, ELexOperator
|
sl@0
|
75 |
friend ostream& operator << (ostream& out, Lexical& aLex);
|
sl@0
|
76 |
};
|
sl@0
|
77 |
|
sl@0
|
78 |
class LexAnal
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
@publishedAll
|
sl@0
|
81 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
{
|
sl@0
|
84 |
public:
|
sl@0
|
85 |
LexAnal(const char* aFilename);
|
sl@0
|
86 |
Lexical Read(); // read next lexical into iLex
|
sl@0
|
87 |
Lexical ReadNextLine(); // read first lex on next line
|
sl@0
|
88 |
void Report();
|
sl@0
|
89 |
~LexAnal();
|
sl@0
|
90 |
public:
|
sl@0
|
91 |
ifstream iFin;
|
sl@0
|
92 |
Lexical iLex;
|
sl@0
|
93 |
int iLineNo;
|
sl@0
|
94 |
char iLine[MaxLineLen + 1];
|
sl@0
|
95 |
char* iLexPtr; // Position in current lexical
|
sl@0
|
96 |
char* iCurPtr; // Position of current lexical in line
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
void GetNextLex();
|
sl@0
|
99 |
void GetNextLine();
|
sl@0
|
100 |
void PurgeLastCR(char *aLine);
|
sl@0
|
101 |
Lexical ReadEOF();
|
sl@0
|
102 |
Lexical ReadNewLine();
|
sl@0
|
103 |
Lexical ReadNumber();
|
sl@0
|
104 |
Lexical ReadIdent();
|
sl@0
|
105 |
Lexical ReadString();
|
sl@0
|
106 |
Lexical ReadOperator();
|
sl@0
|
107 |
String iFilename;
|
sl@0
|
108 |
};
|
sl@0
|
109 |
|
sl@0
|
110 |
#endif
|