Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef _LEX_HXX
21 : #define _LEX_HXX
22 :
23 : #include <boost/ptr_container/ptr_vector.hpp>
24 :
25 : #include <sal/types.h>
26 : #include <hash.hxx>
27 : #include <tools/stream.hxx>
28 :
29 : enum SVTOKEN_ENUM { SVTOKEN_EMPTY, SVTOKEN_COMMENT,
30 : SVTOKEN_INTEGER, SVTOKEN_STRING,
31 : SVTOKEN_BOOL, SVTOKEN_IDENTIFIER,
32 : SVTOKEN_CHAR, SVTOKEN_RTTIBASE,
33 : SVTOKEN_EOF, SVTOKEN_HASHID };
34 :
35 826467 : class SvToken
36 : {
37 : friend class SvTokenStream;
38 : sal_uLong nLine, nColumn;
39 : SVTOKEN_ENUM nType;
40 : OString aString;
41 : union
42 : {
43 : sal_uLong nLong;
44 : sal_Bool bBool;
45 : char cChar;
46 : SvStringHashEntry * pHash;
47 : };
48 : public:
49 : SvToken();
50 : SvToken( const SvToken & rObj );
51 : SvToken( sal_uLong n );
52 : SvToken( SVTOKEN_ENUM nTypeP, sal_Bool b );
53 : SvToken( char c );
54 : SvToken( SVTOKEN_ENUM nTypeP, const OString& rStr );
55 : SvToken( SVTOKEN_ENUM nTypeP );
56 :
57 : SvToken & operator = ( const SvToken & rObj );
58 :
59 : OString GetTokenAsString() const;
60 : SVTOKEN_ENUM GetType() const { return nType; }
61 :
62 826467 : void SetLine( sal_uLong nLineP ) { nLine = nLineP; }
63 15216 : sal_uLong GetLine() const { return nLine; }
64 :
65 826467 : void SetColumn( sal_uLong nColumnP ) { nColumn = nColumnP; }
66 5072 : sal_uLong GetColumn() const { return nColumn; }
67 :
68 8 : sal_Bool IsEmpty() const { return nType == SVTOKEN_EMPTY; }
69 826467 : sal_Bool IsComment() const { return nType == SVTOKEN_COMMENT; }
70 20681 : sal_Bool IsInteger() const { return nType == SVTOKEN_INTEGER; }
71 1173 : sal_Bool IsString() const { return nType == SVTOKEN_STRING; }
72 111209 : sal_Bool IsBool() const { return nType == SVTOKEN_BOOL; }
73 10484997 : sal_Bool IsIdentifierHash() const
74 10484997 : { return nType == SVTOKEN_HASHID; }
75 242410 : sal_Bool IsIdentifier() const
76 : {
77 242410 : return nType == SVTOKEN_IDENTIFIER
78 242410 : || nType == SVTOKEN_HASHID;
79 : }
80 713687 : sal_Bool IsChar() const { return nType == SVTOKEN_CHAR; }
81 : sal_Bool IsRttiBase() const { return nType == SVTOKEN_RTTIBASE; }
82 1645943 : sal_Bool IsEof() const { return nType == SVTOKEN_EOF; }
83 :
84 3061235 : const OString& GetString() const
85 : {
86 3061235 : return IsIdentifierHash()
87 2070 : ? pHash->GetName()
88 3063305 : : aString;
89 : }
90 19577 : sal_uLong GetNumber() const { return nLong; }
91 102963 : sal_Bool GetBool() const { return bBool; }
92 1356969 : char GetChar() const { return cChar; }
93 :
94 179044 : void SetHash( SvStringHashEntry * pHashP )
95 179044 : { pHash = pHashP; nType = SVTOKEN_HASHID; }
96 36967 : sal_Bool HasHash() const
97 36967 : { return nType == SVTOKEN_HASHID; }
98 : SvStringHashEntry * GetHash() const { return pHash; }
99 7423762 : sal_Bool Is( SvStringHashEntry * pEntry ) const
100 7423762 : { return IsIdentifierHash() && pHash == pEntry; }
101 : };
102 :
103 826467 : inline SvToken::SvToken()
104 826467 : : nType( SVTOKEN_EMPTY ) {}
105 :
106 : inline SvToken::SvToken( sal_uLong n )
107 : : nType( SVTOKEN_INTEGER ), nLong( n ) {}
108 :
109 : inline SvToken::SvToken( SVTOKEN_ENUM nTypeP, sal_Bool b )
110 : : nType( nTypeP ), bBool( b ) {}
111 :
112 : inline SvToken::SvToken( char c )
113 : : nType( SVTOKEN_CHAR ), cChar( c ) {}
114 :
115 : inline SvToken::SvToken( SVTOKEN_ENUM nTypeP, const OString& rStr )
116 : : nType( nTypeP ), aString( rStr ) {}
117 :
118 : inline SvToken::SvToken( SVTOKEN_ENUM nTypeP )
119 : : nType( nTypeP ) {}
120 :
121 : class SvTokenStream
122 : {
123 : sal_uLong nLine, nColumn;
124 : int nBufPos;
125 : int c; // next character
126 : sal_uInt16 nTabSize; // length of tabulator
127 : OString aStrTrue;
128 : OString aStrFalse;
129 : sal_uLong nMaxPos;
130 :
131 : SvFileStream * pInStream;
132 : SvStream & rInStream;
133 : String aFileName;
134 : boost::ptr_vector<SvToken> aTokList;
135 : boost::ptr_vector<SvToken>::iterator pCurToken;
136 :
137 : void InitCtor();
138 :
139 : OString aBufStr;
140 : int GetNextChar();
141 6917489 : int GetFastNextChar()
142 : {
143 6917489 : return aBufStr[nBufPos++];
144 : }
145 :
146 : void FillTokenList();
147 : sal_uLong GetNumber();
148 : sal_Bool MakeToken( SvToken & );
149 497189 : sal_Bool IsEof() const { return rInStream.IsEof(); }
150 15172836 : void SetMax()
151 : {
152 15172836 : sal_uLong n = Tell();
153 15172836 : if( n > nMaxPos )
154 794197 : nMaxPos = n;
155 15172836 : }
156 18197 : void CalcColumn()
157 : {
158 : // if end of line spare calculation
159 18197 : if( 0 != c )
160 : {
161 0 : sal_uInt16 n = 0;
162 0 : nColumn = 0;
163 0 : while( n < nBufPos )
164 0 : nColumn += aBufStr[n++] == '\t' ? nTabSize : 1;
165 : }
166 18197 : }
167 : public:
168 : SvTokenStream( const String & rFileName );
169 : SvTokenStream( SvStream & rInStream, const String & rFileName );
170 : ~SvTokenStream();
171 :
172 8 : const String & GetFileName() const { return aFileName; }
173 237 : SvStream & GetStream() { return rInStream; }
174 :
175 : void SetTabSize( sal_uInt16 nTabSizeP )
176 : { nTabSize = nTabSizeP; }
177 : sal_uInt16 GetTabSize() const { return nTabSize; }
178 :
179 0 : SvToken* GetToken_PrevAll()
180 : {
181 0 : boost::ptr_vector<SvToken>::iterator pRetToken = pCurToken;
182 :
183 : // current iterator always valid
184 0 : if(pCurToken != aTokList.begin())
185 0 : --pCurToken;
186 :
187 0 : return &(*pRetToken);
188 : }
189 :
190 7980541 : SvToken* GetToken_NextAll()
191 : {
192 7980541 : boost::ptr_vector<SvToken>::iterator pRetToken = pCurToken++;
193 :
194 7980541 : if (pCurToken == aTokList.end())
195 505 : pCurToken = pRetToken;
196 :
197 7980541 : SetMax();
198 :
199 7980541 : return &(*pRetToken);
200 : }
201 :
202 7980541 : SvToken* GetToken_Next()
203 : {
204 : // comments get removed initially
205 7980541 : return GetToken_NextAll();
206 : }
207 :
208 260983 : SvToken* GetToken() const { return &(*pCurToken); }
209 :
210 368349 : sal_Bool Read( char cChar )
211 : {
212 736698 : if( pCurToken->IsChar()
213 368349 : && cChar == pCurToken->GetChar() )
214 : {
215 163953 : GetToken_Next();
216 163953 : return sal_True;
217 : }
218 : else
219 204396 : return sal_False;
220 : }
221 :
222 191822 : void ReadDelemiter()
223 : {
224 383644 : if( pCurToken->IsChar()
225 342463 : && (';' == pCurToken->GetChar()
226 133198 : || ',' == pCurToken->GetChar()) )
227 : {
228 150641 : GetToken_Next();
229 : }
230 191822 : }
231 :
232 23211260 : sal_uInt32 Tell() const { return pCurToken-aTokList.begin(); }
233 :
234 7192295 : void Seek( sal_uInt32 nPos )
235 : {
236 7192295 : pCurToken = aTokList.begin() + nPos;
237 7192295 : SetMax();
238 7192295 : }
239 :
240 : void SeekRel( sal_uInt32 nRelPos )
241 : {
242 : sal_uInt32 relIdx = Tell() + nRelPos;
243 :
244 : if ( relIdx < aTokList.size())
245 : {
246 : pCurToken = aTokList.begin()+ (Tell() + nRelPos );
247 : SetMax();
248 : }
249 : }
250 :
251 0 : void SeekEnd()
252 : {
253 0 : pCurToken = aTokList.begin()+nMaxPos;
254 0 : }
255 : };
256 :
257 :
258 :
259 : #endif // _LEX_HXX
260 :
261 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|