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 0 : 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 0 : void SetLine( sal_uLong nLineP ) { nLine = nLineP; }
63 0 : sal_uLong GetLine() const { return nLine; }
64 :
65 0 : void SetColumn( sal_uLong nColumnP ) { nColumn = nColumnP; }
66 0 : sal_uLong GetColumn() const { return nColumn; }
67 :
68 0 : sal_Bool IsEmpty() const { return nType == SVTOKEN_EMPTY; }
69 0 : sal_Bool IsComment() const { return nType == SVTOKEN_COMMENT; }
70 0 : sal_Bool IsInteger() const { return nType == SVTOKEN_INTEGER; }
71 0 : sal_Bool IsString() const { return nType == SVTOKEN_STRING; }
72 0 : sal_Bool IsBool() const { return nType == SVTOKEN_BOOL; }
73 0 : sal_Bool IsIdentifierHash() const
74 0 : { return nType == SVTOKEN_HASHID; }
75 0 : sal_Bool IsIdentifier() const
76 : {
77 0 : return nType == SVTOKEN_IDENTIFIER
78 0 : || nType == SVTOKEN_HASHID;
79 : }
80 0 : sal_Bool IsChar() const { return nType == SVTOKEN_CHAR; }
81 : sal_Bool IsRttiBase() const { return nType == SVTOKEN_RTTIBASE; }
82 0 : sal_Bool IsEof() const { return nType == SVTOKEN_EOF; }
83 :
84 0 : const OString& GetString() const
85 : {
86 0 : return IsIdentifierHash()
87 0 : ? pHash->GetName()
88 0 : : aString;
89 : }
90 0 : sal_uLong GetNumber() const { return nLong; }
91 0 : sal_Bool GetBool() const { return bBool; }
92 0 : char GetChar() const { return cChar; }
93 :
94 0 : void SetHash( SvStringHashEntry * pHashP )
95 0 : { pHash = pHashP; nType = SVTOKEN_HASHID; }
96 0 : sal_Bool HasHash() const
97 0 : { return nType == SVTOKEN_HASHID; }
98 : SvStringHashEntry * GetHash() const { return pHash; }
99 0 : sal_Bool Is( SvStringHashEntry * pEntry ) const
100 0 : { return IsIdentifierHash() && pHash == pEntry; }
101 : };
102 :
103 0 : inline SvToken::SvToken()
104 : : nLine(0)
105 : , nColumn(0)
106 0 : , nType( SVTOKEN_EMPTY )
107 : {
108 0 : }
109 :
110 : inline SvToken::SvToken( sal_uLong n )
111 : : nType( SVTOKEN_INTEGER ), nLong( n ) {}
112 :
113 : inline SvToken::SvToken( SVTOKEN_ENUM nTypeP, sal_Bool b )
114 : : nType( nTypeP ), bBool( b ) {}
115 :
116 : inline SvToken::SvToken( char c )
117 : : nType( SVTOKEN_CHAR ), cChar( c ) {}
118 :
119 : inline SvToken::SvToken( SVTOKEN_ENUM nTypeP, const OString& rStr )
120 : : nType( nTypeP ), aString( rStr ) {}
121 :
122 : inline SvToken::SvToken( SVTOKEN_ENUM nTypeP )
123 : : nType( nTypeP ) {}
124 :
125 : class SvTokenStream
126 : {
127 : sal_uLong nLine, nColumn;
128 : int nBufPos;
129 : int c; // next character
130 : sal_uInt16 nTabSize; // length of tabulator
131 : OString aStrTrue;
132 : OString aStrFalse;
133 : sal_uLong nMaxPos;
134 :
135 : SvFileStream * pInStream;
136 : SvStream & rInStream;
137 : OUString aFileName;
138 : boost::ptr_vector<SvToken> aTokList;
139 : boost::ptr_vector<SvToken>::iterator pCurToken;
140 :
141 : void InitCtor();
142 :
143 : OString aBufStr;
144 : int GetNextChar();
145 0 : int GetFastNextChar()
146 : {
147 0 : return (nBufPos < aBufStr.getLength())
148 0 : ? aBufStr[nBufPos++]
149 0 : : '\0';
150 : }
151 :
152 : void FillTokenList();
153 : sal_uLong GetNumber();
154 : sal_Bool MakeToken( SvToken & );
155 0 : sal_Bool IsEof() const { return rInStream.IsEof(); }
156 0 : void SetMax()
157 : {
158 0 : sal_uLong n = Tell();
159 0 : if( n > nMaxPos )
160 0 : nMaxPos = n;
161 0 : }
162 0 : void CalcColumn()
163 : {
164 : // if end of line spare calculation
165 0 : if( 0 != c )
166 : {
167 0 : sal_uInt16 n = 0;
168 0 : nColumn = 0;
169 0 : while( n < nBufPos )
170 0 : nColumn += aBufStr[n++] == '\t' ? nTabSize : 1;
171 : }
172 0 : }
173 : public:
174 : SvTokenStream( const OUString & rFileName );
175 : SvTokenStream( SvStream & rInStream, const OUString & rFileName );
176 : ~SvTokenStream();
177 :
178 0 : const OUString & GetFileName() const { return aFileName; }
179 0 : SvStream & GetStream() { return rInStream; }
180 :
181 : void SetTabSize( sal_uInt16 nTabSizeP )
182 : { nTabSize = nTabSizeP; }
183 : sal_uInt16 GetTabSize() const { return nTabSize; }
184 :
185 0 : SvToken* GetToken_PrevAll()
186 : {
187 0 : boost::ptr_vector<SvToken>::iterator pRetToken = pCurToken;
188 :
189 : // current iterator always valid
190 0 : if(pCurToken != aTokList.begin())
191 0 : --pCurToken;
192 :
193 0 : return &(*pRetToken);
194 : }
195 :
196 0 : SvToken* GetToken_NextAll()
197 : {
198 0 : boost::ptr_vector<SvToken>::iterator pRetToken = pCurToken++;
199 :
200 0 : if (pCurToken == aTokList.end())
201 0 : pCurToken = pRetToken;
202 :
203 0 : SetMax();
204 :
205 0 : return &(*pRetToken);
206 : }
207 :
208 0 : SvToken* GetToken_Next()
209 : {
210 : // comments get removed initially
211 0 : return GetToken_NextAll();
212 : }
213 :
214 0 : SvToken* GetToken() const { return &(*pCurToken); }
215 :
216 0 : sal_Bool Read( char cChar )
217 : {
218 0 : if( pCurToken->IsChar()
219 0 : && cChar == pCurToken->GetChar() )
220 : {
221 0 : GetToken_Next();
222 0 : return sal_True;
223 : }
224 : else
225 0 : return sal_False;
226 : }
227 :
228 0 : void ReadDelemiter()
229 : {
230 0 : if( pCurToken->IsChar()
231 0 : && (';' == pCurToken->GetChar()
232 0 : || ',' == pCurToken->GetChar()) )
233 : {
234 0 : GetToken_Next();
235 : }
236 0 : }
237 :
238 0 : sal_uInt32 Tell() const { return pCurToken-aTokList.begin(); }
239 :
240 0 : void Seek( sal_uInt32 nPos )
241 : {
242 0 : pCurToken = aTokList.begin() + nPos;
243 0 : SetMax();
244 0 : }
245 :
246 : void SeekRel( sal_uInt32 nRelPos )
247 : {
248 : sal_uInt32 relIdx = Tell() + nRelPos;
249 :
250 : if ( relIdx < aTokList.size())
251 : {
252 : pCurToken = aTokList.begin()+ (Tell() + nRelPos );
253 : SetMax();
254 : }
255 : }
256 :
257 0 : void SeekEnd()
258 : {
259 0 : pCurToken = aTokList.begin()+nMaxPos;
260 0 : }
261 : };
262 :
263 :
264 :
265 : #endif // _LEX_HXX
266 :
267 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|