1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef ADC_TKPCONT2_HXX 29*cdf0e10cSrcweir #define ADC_TKPCONT2_HXX 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir // USED SERVICES 32*cdf0e10cSrcweir // BASE CLASSES 33*cdf0e10cSrcweir // COMPONENTS 34*cdf0e10cSrcweir // PARAMETERS 35*cdf0e10cSrcweir class CharacterSource; 36*cdf0e10cSrcweir class TkpNullContext; 37*cdf0e10cSrcweir class TkpNullContex2; 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir /** @task 40*cdf0e10cSrcweir Specifies a context within which tokens are interpreted in a special 41*cdf0e10cSrcweir way. For example in parsing C++ there could be a context for code, 42*cdf0e10cSrcweir one for comments and a third one for preprocessor statements, because 43*cdf0e10cSrcweir each of these would give the same token different meanings. 44*cdf0e10cSrcweir **/ 45*cdf0e10cSrcweir class TkpContext 46*cdf0e10cSrcweir { 47*cdf0e10cSrcweir public: 48*cdf0e10cSrcweir // LIFECYCLE 49*cdf0e10cSrcweir virtual ~TkpContext() {} 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir // OPERATIONS 52*cdf0e10cSrcweir /** @descr 53*cdf0e10cSrcweir The functions starts to parse with the CurToken() of io_rText. 54*cdf0e10cSrcweir It leaves io_rText at the first char of the following Token or 55*cdf0e10cSrcweir the following Context. 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir This function returns, when a context has parsed some characterss 58*cdf0e10cSrcweir and completed a token OR left the context. 59*cdf0e10cSrcweir If the token is to be ignored, PassNewToken() returns false 60*cdf0e10cSrcweir and cuts the token from io_rText. 61*cdf0e10cSrcweir If the token is to be parsed further in a different context, 62*cdf0e10cSrcweir PassNewToken() returns false, but the token is 63*cdf0e10cSrcweir NOT cut from io_rText. 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir If the function has found a valid and complete token, PassNewToken() 66*cdf0e10cSrcweir passes the parsed token to the internally known receiver and 67*cdf0e10cSrcweir returns true. The token is cut from io_rText. 68*cdf0e10cSrcweir **/ 69*cdf0e10cSrcweir virtual void ReadCharChain( 70*cdf0e10cSrcweir CharacterSource & io_rText ) = 0; 71*cdf0e10cSrcweir /** Has to pass the parsed token to a known receiver. 72*cdf0e10cSrcweir @return true, if a token was passed. 73*cdf0e10cSrcweir false, if no token was parsed complete by this context. 74*cdf0e10cSrcweir */ 75*cdf0e10cSrcweir virtual bool PassNewToken() = 0; 76*cdf0e10cSrcweir virtual TkpContext & 77*cdf0e10cSrcweir FollowUpContext() = 0; 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir static TkpNullContext & 80*cdf0e10cSrcweir Null_(); 81*cdf0e10cSrcweir }; 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir TkpNullContex2 & TkpContext_Null2_(); 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir class StateMachineContext 86*cdf0e10cSrcweir { 87*cdf0e10cSrcweir public: 88*cdf0e10cSrcweir virtual ~StateMachineContext() {} 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir /// Is used by StmBoundsStatu2 only. 91*cdf0e10cSrcweir virtual void PerformStatusFunction( 92*cdf0e10cSrcweir uintt i_nStatusSignal, 93*cdf0e10cSrcweir UINT16 i_nTokenId, 94*cdf0e10cSrcweir CharacterSource & io_rText ) = 0; 95*cdf0e10cSrcweir }; 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir class TkpNullContex2 : public TkpContext 98*cdf0e10cSrcweir { 99*cdf0e10cSrcweir public: 100*cdf0e10cSrcweir ~TkpNullContex2(); 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir virtual void ReadCharChain( 103*cdf0e10cSrcweir CharacterSource & io_rText ); 104*cdf0e10cSrcweir virtual bool PassNewToken(); 105*cdf0e10cSrcweir virtual TkpContext & 106*cdf0e10cSrcweir FollowUpContext(); 107*cdf0e10cSrcweir }; 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir class TkpDocuContext : public TkpContext 110*cdf0e10cSrcweir { 111*cdf0e10cSrcweir public: 112*cdf0e10cSrcweir virtual void SetParentContext( 113*cdf0e10cSrcweir TkpContext & io_rParentContext, 114*cdf0e10cSrcweir const char * i_sMultiLineEndToken ) = 0; 115*cdf0e10cSrcweir virtual void SetMode_IsMultiLine( 116*cdf0e10cSrcweir bool i_bTrue ) = 0; 117*cdf0e10cSrcweir }; 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir #endif 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir 124