RedirectHandlers.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:7k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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) 1999, 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: RedirectHandlers.cpp,v 1.7 2002/02/01 22:38:26 peiyongz Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  Includes
  61. // ---------------------------------------------------------------------------
  62. #include <xercesc/util/XMLUniDefs.hpp>
  63. #include <xercesc/util/XMLUni.hpp>
  64. #include <xercesc/sax/AttributeList.hpp>
  65. #include <xercesc/sax/SAXParseException.hpp>
  66. #include <xercesc/sax/SAXException.hpp>
  67. #include <xercesc/framework/LocalFileInputSource.hpp>
  68. #include "Redirect.hpp"
  69. #include <string.h>
  70. // ---------------------------------------------------------------------------
  71. //  Local constant data
  72. //
  73. //  gFileToTrap
  74. //      This is the file that we are looking for in the entity handler, to
  75. //      redirect to another file.
  76. //
  77. //  gRedirectToFile
  78. //      This is the file that we are going to redirect the parser to.
  79. // ---------------------------------------------------------------------------
  80. static const XMLCh  gFileToTrap[] =
  81. {
  82.         chLatin_p, chLatin_e, chLatin_r, chLatin_s, chLatin_o, chLatin_n
  83.     ,   chLatin_a, chLatin_l, chPeriod,  chLatin_d, chLatin_t, chLatin_d, chNull
  84. };
  85. static const XMLCh  gRedirectToFile[] =
  86. {
  87.         chLatin_r, chLatin_e, chLatin_d, chLatin_i, chLatin_r, chLatin_e
  88.     ,   chLatin_c, chLatin_t, chPeriod,  chLatin_d, chLatin_t, chLatin_d, chNull
  89. };
  90. // ---------------------------------------------------------------------------
  91. //  RedirectHandlers: Constructors and Destructor
  92. // ---------------------------------------------------------------------------
  93. RedirectHandlers::RedirectHandlers() :
  94.     fElementCount(0)
  95.     , fAttrCount(0)
  96.     , fCharacterCount(0)
  97.     , fSpaceCount(0)
  98. {
  99. }
  100. RedirectHandlers::~RedirectHandlers()
  101. {
  102. }
  103. // ---------------------------------------------------------------------------
  104. //  RedirectHandlers: Implementation of the SAX DocumentHandler interface
  105. // ---------------------------------------------------------------------------
  106. void RedirectHandlers::startElement(const   XMLCh* const    name
  107.                                     ,       AttributeList&  attributes)
  108. {
  109.     fElementCount++;
  110.     fAttrCount += attributes.getLength();
  111. }
  112. void RedirectHandlers::characters(  const   XMLCh* const    chars
  113.                                     , const unsigned int    length)
  114. {
  115.     fCharacterCount += length;
  116. }
  117. void RedirectHandlers::ignorableWhitespace( const   XMLCh* const chars
  118.                                             , const unsigned int length)
  119. {
  120.     fSpaceCount += length;
  121. }
  122. void RedirectHandlers::resetDocument()
  123. {
  124.     fAttrCount = 0;
  125.     fCharacterCount = 0;
  126.     fElementCount = 0;
  127.     fSpaceCount = 0;
  128. }
  129. // ---------------------------------------------------------------------------
  130. //  RedirectHandlers: Overrides of the SAX ErrorHandler interface
  131. // ---------------------------------------------------------------------------
  132. void RedirectHandlers::error(const SAXParseException& e)
  133. {
  134.     cerr << "nError at (file " << StrX(e.getSystemId())
  135.  << ", line " << e.getLineNumber()
  136.  << ", char " << e.getColumnNumber()
  137.          << "): " << StrX(e.getMessage()) << endl;
  138. }
  139. void RedirectHandlers::fatalError(const SAXParseException& e)
  140. {
  141.     cerr << "nFatal Error at (file " << StrX(e.getSystemId())
  142.  << ", line " << e.getLineNumber()
  143.  << ", char " << e.getColumnNumber()
  144.          << "): " << StrX(e.getMessage()) << endl;
  145. }
  146. void RedirectHandlers::warning(const SAXParseException& e)
  147. {
  148.     cerr << "nWarning at (file " << StrX(e.getSystemId())
  149.  << ", line " << e.getLineNumber()
  150.  << ", char " << e.getColumnNumber()
  151.          << "): " << StrX(e.getMessage()) << endl;
  152. }
  153. // -----------------------------------------------------------------------
  154. //  Handlers for the SAX EntityResolver interface
  155. // -----------------------------------------------------------------------
  156. InputSource* RedirectHandlers::resolveEntity(const   XMLCh* const    publicId
  157.                                              , const XMLCh* const    systemId)
  158. {
  159.     //
  160.     //  If its our file, then create a new URL input source for the file that
  161.     //  we want to really be used. Otherwise, just return zero to let the
  162.     //  default action occur.
  163.     //
  164.     //  We cannot assume that the XMLCh type is ok to pass to wcscmp(), so
  165.     //  just do a comparison ourselves.
  166.     //
  167.     const XMLCh* s1 = publicId;
  168.     const XMLCh* s2 = systemId;
  169.     while (true)
  170.     {
  171.         // Break out on any difference
  172.         if (*s1 != *s2)
  173.             return 0;
  174.         // If one is null, then both were null, so they are equal
  175.         if (!*s1)
  176.             break;
  177.         // Else get the next char
  178.         s1++;
  179.         s2++;
  180.     }
  181.     // They were equal, so redirect to our other file
  182.     return new LocalFileInputSource(gRedirectToFile);
  183. }