?? regularexpression.hpp
字號:
/* * Copyright 2001-2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//* * $Id: RegularExpression.hpp,v 1.19 2004/09/08 13:56:47 peiyongz Exp $ */#if !defined(REGULAREXPRESSION_HPP)#define REGULAREXPRESSION_HPP// ---------------------------------------------------------------------------// Includes// ---------------------------------------------------------------------------#include <xercesc/util/RefArrayVectorOf.hpp>#include <xercesc/util/XMLString.hpp>#include <xercesc/util/Janitor.hpp>#include <xercesc/util/Mutexes.hpp>#include <xercesc/util/regx/Op.hpp>#include <xercesc/util/regx/TokenFactory.hpp>#include <xercesc/util/regx/BMPattern.hpp>#include <xercesc/util/regx/ModifierToken.hpp>#include <xercesc/util/regx/ConditionToken.hpp>#include <xercesc/util/regx/OpFactory.hpp>XERCES_CPP_NAMESPACE_BEGIN// ---------------------------------------------------------------------------// Forward Declaration// ---------------------------------------------------------------------------class RangeToken;class Match;class XMLUTIL_EXPORT RegularExpression : public XMemory{public: // ----------------------------------------------------------------------- // Public Constructors and Destructor // ----------------------------------------------------------------------- RegularExpression ( const char* const pattern , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); RegularExpression ( const char* const pattern , const char* const options , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); RegularExpression ( const XMLCh* const pattern , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); RegularExpression ( const XMLCh* const pattern , const XMLCh* const options , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager ); ~RegularExpression(); // ----------------------------------------------------------------------- // Public Constants // ----------------------------------------------------------------------- static const unsigned int MARK_PARENS; static const unsigned int IGNORE_CASE; static const unsigned int SINGLE_LINE; static const unsigned int MULTIPLE_LINE; static const unsigned int EXTENDED_COMMENT; static const unsigned int USE_UNICODE_CATEGORY; static const unsigned int UNICODE_WORD_BOUNDARY; static const unsigned int PROHIBIT_HEAD_CHARACTER_OPTIMIZATION; static const unsigned int PROHIBIT_FIXED_STRING_OPTIMIZATION; static const unsigned int XMLSCHEMA_MODE; static const unsigned int SPECIAL_COMMA; static const unsigned short WT_IGNORE; static const unsigned short WT_LETTER; static const unsigned short WT_OTHER; // ----------------------------------------------------------------------- // Public Helper methods // ----------------------------------------------------------------------- static int getOptionValue(const XMLCh ch); // ----------------------------------------------------------------------- // Matching methods // ----------------------------------------------------------------------- bool matches(const char* const matchString, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const char* const matchString, const int start, const int end, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const char* const matchString, Match* const pMatch, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const char* const matchString, const int start, const int end, Match* const pMatch, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const XMLCh* const matchString, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const XMLCh* const matchString, const int start, const int end, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const XMLCh* const matchString, Match* const pMatch, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); bool matches(const XMLCh* const matchString, const int start, const int end, Match* const pMatch, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); // ----------------------------------------------------------------------- // Tokenize methods // ----------------------------------------------------------------------- // Note: The caller owns the string vector that is returned, and is responsible // for deleting it. RefArrayVectorOf<XMLCh> *tokenize(const char* const matchString); RefArrayVectorOf<XMLCh> *tokenize(const char* const matchString, const int start, const int end); RefArrayVectorOf<XMLCh> *tokenize(const XMLCh* const matchString); RefArrayVectorOf<XMLCh> *tokenize(const XMLCh* const matchString, const int start, const int end); // ----------------------------------------------------------------------- // Replace methods // ----------------------------------------------------------------------- // Note: The caller owns the XMLCh* that is returned, and is responsible for // deleting it. XMLCh *replace(const char* const matchString, const char* const replaceString); XMLCh *replace(const char* const matchString, const char* const replaceString, const int start, const int end); XMLCh *replace(const XMLCh* const matchString, const XMLCh* const replaceString); XMLCh *replace(const XMLCh* const matchString, const XMLCh* const replaceString, const int start, const int end);private: // ----------------------------------------------------------------------- // Private data types // ----------------------------------------------------------------------- class XMLUTIL_EXPORT Context : public XMemory { public : Context(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); ~Context(); inline const XMLCh* getString() const { return fString; } void reset(const XMLCh* const string, const int stringLen, const int start, const int limit, const int noClosures); bool nextCh(XMLInt32& ch, int& offset, const short direction); bool fAdoptMatch; int fStart; int fLimit; int fLength; // fLimit - fStart int fSize; int fStringMaxLen; int* fOffsets; Match* fMatch; XMLCh* fString; MemoryManager* fMemoryManager; friend class Janitor<Context>; }; // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- RegularExpression(const RegularExpression&); RegularExpression& operator=(const RegularExpression&); // ----------------------------------------------------------------------- // Cleanup methods // ----------------------------------------------------------------------- void cleanUp(); // ----------------------------------------------------------------------- // Setter methods // ----------------------------------------------------------------------- void setPattern(const XMLCh* const pattern, const XMLCh* const options=0); // ----------------------------------------------------------------------- // Private Helper methods // ----------------------------------------------------------------------- void prepare(); int parseOptions(const XMLCh* const options); bool isSet(const int options, const int flag); unsigned short getWordType(const XMLCh* const target, const int begin, const int end, const int offset); unsigned short getCharType(const XMLCh ch); unsigned short getPreviousWordType(const XMLCh* const target, const int start, const int end, int offset); /** * Matching helpers */ int match(Context* const context, const Op* const operations, int offset, const short direction); bool matchIgnoreCase(const XMLInt32 ch1, const XMLInt32 ch2); /** * Helper methods used by match(Context* ...) */ bool matchChar(Context* const context, const XMLInt32 ch, int& offset, const short direction, const bool ignoreCase); bool matchDot(Context* const context, int& offset, const short direction); bool matchRange(Context* const context, const Op* const op, int& offset, const short direction, const bool ignoreCase); bool matchAnchor(Context* const context, const XMLInt32 ch, const int offset); bool matchBackReference(Context* const context, const XMLInt32 ch, int& offset, const short direction, const bool ignoreCase); bool matchString(Context* const context, const XMLCh* const literal, int& offset, const short direction, const bool ignoreCase); int matchUnion(Context* const context, const Op* const op, int offset, const short direction); int matchCapture(Context* const context, const Op* const op, int offset, const short direction); bool matchCondition(Context* const context, const Op* const op, int offset, const short direction); int matchModifier(Context* const context, const Op* const op, int offset, const short direction); /** * Tokenize helper * * This overloaded tokenize is for internal use only. It provides a way to * keep track of the sub-expressions in each match of the pattern. * * It is called by the other tokenize methods, and by the replace method. * The caller is responsible for the deletion of the returned * RefArrayVectorOf<XMLCh*> */ RefArrayVectorOf<XMLCh> *tokenize(const XMLCh* const matchString, const int start, const int end, RefVectorOf<Match> *subEx); /** * Replace helpers * * Note: the caller owns the XMLCh* that is returned */ const XMLCh *subInExp(const XMLCh* const repString, const XMLCh* const origString, const Match* subEx); /** * Converts a token tree into an operation tree */ void compile(const Token* const token); Op* compile(const Token* const token, Op* const next, const bool reverse); /** * Helper methods used by compile */ Op* compileSingle(const Token* const token, Op* const next, const unsigned short tokType); Op* compileUnion(const Token* const token, Op* const next, const bool reverse); Op* compileCondition(const Token* const token, Op* const next, const bool reverse); Op* compileParenthesis(const Token* const token, Op* const next, const bool reverse); Op* compileLook(const Token* const token, const Op* const next, const bool reverse, const unsigned short tokType); Op* compileConcat(const Token* const token, Op* const next, const bool reverse); Op* compileClosure(const Token* const token, Op* const next, const bool reverse, const unsigned short tokType); // ----------------------------------------------------------------------- // Private data members // ----------------------------------------------------------------------- bool fHasBackReferences; bool fFixedStringOnly; int fNoGroups; int fMinLength; int fNoClosures; unsigned int fOptions; BMPattern* fBMPattern; XMLCh* fPattern; XMLCh* fFixedString; Op* fOperations; Token* fTokenTree; RangeToken* fFirstChar; static RangeToken* fWordRange; OpFactory fOpFactory; XMLMutex fMutex; TokenFactory* fTokenFactory; MemoryManager* fMemoryManager;}; // --------------------------------------------------------------------------- // RegularExpression: Cleanup methods // --------------------------------------------------------------------------- inline void RegularExpression::cleanUp() { fMemoryManager->deallocate(fPattern);//delete [] fPattern; fMemoryManager->deallocate(fFixedString);//delete [] fFixedString;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -