Token.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:9k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Id: Token.hpp,v 1.3 2001/05/11 13:26:50 tng Exp $
  58.  */
  59. #if !defined(TOKEN_HPP)
  60. #define TOKEN_HPP
  61. // ---------------------------------------------------------------------------
  62. //  Includes
  63. // ---------------------------------------------------------------------------
  64. #include <util/XercesDefs.hpp>
  65. #include <util/RuntimeException.hpp>
  66. // ---------------------------------------------------------------------------
  67. //  Forward Declaration
  68. // ---------------------------------------------------------------------------
  69. class RangeToken;
  70. class TokenFactory;
  71. class XMLUTIL_EXPORT Token {
  72. public:
  73. // -----------------------------------------------------------------------
  74.     //  Public Constructors and Destructor
  75.     // -----------------------------------------------------------------------
  76. Token(const unsigned short tokType);
  77. virtual ~Token();
  78. // -----------------------------------------------------------------------
  79.     //  Public Constants
  80.     // -----------------------------------------------------------------------
  81. // Token types
  82. enum {
  83. CHAR = 0,
  84. CONCAT = 1,
  85. UNION = 2,
  86. CLOSURE = 3,
  87. RANGE = 4,
  88. NRANGE = 5,
  89. PAREN = 6,
  90. EMPTY = 7,
  91. ANCHOR = 8,
  92. NONGREEDYCLOSURE = 9,
  93. STRING = 10,
  94. DOT = 11,
  95. BACKREFERENCE = 12,
  96. LOOKAHEAD = 20,
  97. NEGATIVELOOKAHEAD = 21,
  98. LOOKBEHIND = 22,
  99. NEGATIVELOOKBEHIND = 23,
  100. INDEPENDENT = 24,
  101. MODIFIERGROUP = 25,
  102. CONDITION = 26
  103. };
  104. static const XMLInt32 UTF16_MAX;
  105. static const unsigned short FC_CONTINUE;
  106. static const unsigned short FC_TERMINAL;
  107. static const unsigned short FC_ANY;
  108. // -----------------------------------------------------------------------
  109.     //  Getter methods
  110.     // -----------------------------------------------------------------------
  111. unsigned short       getTokenType() const;
  112. int                  getMinLength() const;
  113.     int                  getMaxLength() const;
  114. virtual Token*       getChild(const int index) const;
  115. virtual int          size() const;
  116.     virtual int          getMin() const;
  117.     virtual int          getMax() const;
  118.     virtual int          getNoParen() const;
  119. virtual int          getReferenceNo() const;
  120.     virtual const XMLCh* getString() const;
  121. virtual XMLInt32     getChar() const;
  122. // -----------------------------------------------------------------------
  123.     //  Setter methods
  124.     // -----------------------------------------------------------------------
  125. void setTokenType(const unsigned short tokType);
  126. virtual void setMin(const int minVal);
  127. virtual void setMax(const int maxVal);
  128.     // -----------------------------------------------------------------------
  129.     //  Range manipulation methods
  130.     // -----------------------------------------------------------------------
  131. virtual void addRange(const XMLInt32 start, const XMLInt32 end);
  132. virtual void mergeRanges(const Token *const tok);
  133. virtual void sortRanges();
  134. virtual void compactRanges();
  135. virtual void subtractRanges(RangeToken* const tok);
  136. virtual void intersectRanges(RangeToken* const tok);
  137. // -----------------------------------------------------------------------
  138.     //  Putter methods
  139.     // -----------------------------------------------------------------------
  140. virtual void addChild(Token* const child, TokenFactory* const tokFactory);
  141. // -----------------------------------------------------------------------
  142.     //  Helper methods
  143.     // -----------------------------------------------------------------------
  144. int analyzeFirstCharacter(RangeToken* const rangeTok, const int options,
  145.                               TokenFactory* const tokFactory);
  146.     Token* findFixedString(int options, int& outOptions);
  147. private:
  148. // -----------------------------------------------------------------------
  149.     //  Unimplemented constructors and operators
  150.     // -----------------------------------------------------------------------
  151.     Token(const Token&);
  152.     void operator=(const Token&);
  153.     // -----------------------------------------------------------------------
  154.     //  Private Helper methods
  155.     // -----------------------------------------------------------------------
  156. bool isSet(const int options, const unsigned int flag);
  157.     bool isShorterThan(Token* const tok);
  158. // -----------------------------------------------------------------------
  159.     //  Private data members
  160. // -----------------------------------------------------------------------
  161. unsigned short fTokenType;
  162. };
  163. // ---------------------------------------------------------------------------
  164. //  Token: getter methods
  165. // ---------------------------------------------------------------------------
  166. inline unsigned short Token::getTokenType() const {
  167. return fTokenType;
  168. }
  169. inline int Token::size() const {
  170. return 0;
  171. }
  172. inline Token* Token::getChild(const int index) const {
  173. return 0;
  174. }
  175. inline int Token::getMin() const {
  176.     return -1;
  177. }
  178. inline int Token::getMax() const {
  179.     return -1;
  180. }
  181. inline int Token::getReferenceNo() const {
  182.     return 0;
  183. }
  184. inline int Token::getNoParen() const {
  185.     return 0;
  186. }
  187. inline const XMLCh* Token::getString() const {
  188.     return 0;
  189. }
  190. inline XMLInt32 Token::getChar() const {
  191.     return -1;
  192. }
  193. // ---------------------------------------------------------------------------
  194. //  Token: setter methods
  195. // ---------------------------------------------------------------------------
  196. inline void Token::setTokenType(const unsigned short tokType) {
  197. fTokenType = tokType;
  198. }
  199. inline void Token::setMax(const int maxVal) {
  200. // ClosureToken
  201. }
  202. inline void Token::setMin(const int minVal) {
  203. // ClosureToken
  204. }
  205. inline bool Token::isSet(const int options, const unsigned int flag) {
  206. return (options & flag) == flag;
  207. }
  208. // ---------------------------------------------------------------------------
  209. //  Token: setter methods
  210. // ---------------------------------------------------------------------------
  211. inline void Token::addChild(Token* const child, TokenFactory* const tokFactory) {
  212.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  213. }
  214. // ---------------------------------------------------------------------------
  215. //  Token: Range manipulation methods
  216. // ---------------------------------------------------------------------------
  217. inline void Token::addRange(const XMLInt32 start, const XMLInt32 end) {
  218.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  219. }
  220. inline void Token::mergeRanges(const Token *const tok) {
  221.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  222. }
  223. inline void Token::sortRanges() {
  224.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  225. }
  226. inline void Token::compactRanges() {
  227.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  228. }
  229. inline void Token::subtractRanges(RangeToken* const tok) {
  230.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  231. }
  232. inline void Token::intersectRanges(RangeToken* const tok) {
  233.     ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  234. }
  235. #endif
  236. /**
  237.   * End of file Token.hpp
  238.   */