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

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: XPathMatcher.hpp,v 1.2 2001/11/15 17:10:19 knoaman Exp $
  58.  */
  59. #if !defined(XPATHMATCHER_HPP)
  60. #define XPATHMATCHER_HPP
  61. // ---------------------------------------------------------------------------
  62. //  Includes
  63. // ---------------------------------------------------------------------------
  64. #include <util/ValueStackOf.hpp>
  65. #include <util/RefVectorOf.hpp>
  66. #include <framework/XMLBuffer.hpp>
  67. // ---------------------------------------------------------------------------
  68. //  Forward Declaration
  69. // ---------------------------------------------------------------------------
  70. class XMLElementDecl;
  71. class XercesXPath;
  72. class IdentityConstraint;
  73. class DatatypeValidator;
  74. class XMLStringPool;
  75. class XercesLocationPath;
  76. class XMLAttr;
  77. class VALIDATORS_EXPORT XPathMatcher
  78. {
  79. public:
  80.     // -----------------------------------------------------------------------
  81.     //  Constructors/Destructor
  82.     // -----------------------------------------------------------------------
  83.     XPathMatcher(XercesXPath* const xpath);
  84.     XPathMatcher(XercesXPath* const xpath, const bool shouldBufferContent,
  85.                  IdentityConstraint* const ic);
  86.     virtual ~XPathMatcher();
  87.     // -----------------------------------------------------------------------
  88.     //  Getter methods
  89.     // -----------------------------------------------------------------------
  90.     IdentityConstraint* getIdentityConstraint() const { return fIdentityConstraint; }
  91.     // -----------------------------------------------------------------------
  92.     //  Match methods
  93.     // -----------------------------------------------------------------------
  94.     /** 
  95.       * Returns true if XPath has been matched.
  96.       */
  97.     bool isMatched();
  98.     // -----------------------------------------------------------------------
  99.     //  XMLDocumentHandler methods
  100.     // -----------------------------------------------------------------------
  101.     virtual void startDocumentFragment();
  102.     virtual void endDocumentFragment();
  103.     virtual void startElement(const XMLElementDecl& elemDecl,
  104.                               const unsigned int urlId,
  105.                               const XMLCh* const elemPrefix,
  106.                               const RefVectorOf<XMLAttr>& attrList,
  107.                               const unsigned int attrCount);
  108.     virtual void endElement(const XMLElementDecl& elemDecl);
  109.     virtual void docCharacters(const XMLCh* const chars, const unsigned int length);
  110. protected:
  111.     // -----------------------------------------------------------------------
  112.     //  Match methods
  113.     // -----------------------------------------------------------------------
  114.     /**
  115.       * This method is called when the XPath handler matches the XPath
  116.       * expression. Subclasses can override this method to provide default
  117.       * handling upon a match.
  118.       */
  119.     virtual void matched(const XMLCh* const content,
  120.                          DatatypeValidator* const dv, const bool isNil);
  121. private:
  122.     // -----------------------------------------------------------------------
  123.     //  Helper methods
  124.     // -----------------------------------------------------------------------
  125.     void init(XercesXPath* const xpath);
  126.     void cleanUp();
  127.     /** 
  128.       * Clears the match values.
  129.       */
  130.     void clear();
  131.     // -----------------------------------------------------------------------
  132.     //  Data members
  133.     //
  134.     //  fShouldBufferContent
  135.     //      Application preference to buffer content or not.
  136.     //
  137.     //  fBufferContent
  138.     //      True, if we should buffer character content at this time.
  139.     //
  140.     //  fMatched
  141.     //      Indicates whether XPath has been matched or not
  142.     //
  143.     //  fNoMatchDepth
  144.     //      Indicates whether matching is successful for the given xpath
  145.     //      expression.
  146.     //
  147.     //  fCurrentStep
  148.     //      Stores current step.
  149.     //
  150.     //  fStepIndexes
  151.     //      Integer stack of step indexes.
  152.     //
  153.     //  fLocationPaths
  154.     //  fLocationPathSize
  155.     //      XPath location path, and its size.
  156.     //
  157.     //  fIdentityConstraint
  158.     //      The identity constraint we're the matcher for.  Only used for
  159.     //      selectors.
  160.     //
  161.     //  fMatchedBuffer
  162.     //      To hold match text.
  163.     // -----------------------------------------------------------------------
  164.     bool                             fShouldBufferContent;
  165.     bool                             fBufferContent;
  166.     unsigned int                     fLocationPathSize;
  167.     bool*                            fMatched;
  168.     int*                             fNoMatchDepth;
  169.     int*                             fCurrentStep;
  170.     RefVectorOf<ValueStackOf<int> >* fStepIndexes;
  171.     RefVectorOf<XercesLocationPath>* fLocationPaths;
  172.     IdentityConstraint*              fIdentityConstraint;
  173.     XMLBuffer                        fMatchedBuffer;
  174. };
  175. // ---------------------------------------------------------------------------
  176. //  XPathMatcher: Helper methods
  177. // ---------------------------------------------------------------------------
  178. inline void XPathMatcher::cleanUp() {
  179.     delete [] fMatched;
  180.     delete [] fNoMatchDepth;
  181.     delete [] fCurrentStep;
  182.     delete fStepIndexes;
  183. }
  184. #endif
  185. /**
  186.   * End of file XPathMatcher.hpp
  187.   */