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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002 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: Path390.hpp,v 1.1 2002/11/22 14:57:32 tng Exp $
  58.  */
  59. #ifndef PATH390_HPP
  60. #define PATH390_HPP
  61. #include <xercesc/util/XercesDefs.hpp>
  62. XERCES_CPP_NAMESPACE_BEGIN
  63. class  Path390
  64. {
  65.  public:
  66.     // Constructors and Destructor
  67.     Path390();
  68.     ~Path390();
  69.     Path390(char *s);
  70.     // Set a new path in the object. This will overlay any existing path and
  71.     // re-initialize the object.
  72.     void setPath(char *s);
  73.     // This performs a complete parse of the path. It returns the error code or 0
  74.     // if there was no error.
  75.     int  fullParse();
  76.     // This returns the path in a format as required by fopen
  77.     char * getfopenPath();
  78.     // This returns the parameters in a format as required by fopen
  79.     char * getfopenParms();
  80.     // This returns the type of the path. See the constants defined below.
  81.     int  getPathType();
  82.     // This returns the error code that was found during the parse
  83.     int  getError();
  84.     // Returns whether the path is relative or absolute
  85.     bool isRelative();
  86.     // Returns whether or not type=record shows up in the path.
  87.     bool isRecordType();
  88.  private:
  89.     int _pathtype;
  90.     char * _orgpath;
  91.     int _orglen;
  92.     char * _resultpath;
  93.     bool _absolute;
  94.     bool _uriabsolute;
  95.     bool _dsnabsolute;
  96.     char * _curpos;
  97.     int _parsestate;
  98.     int _numperiods;
  99.     int _numsemicolons;
  100.     int _error;
  101.     char * _orgparms;
  102.     int _orgparmlen;
  103.     char * _lastsemi;
  104.     char * _lastslash;
  105.     char * _lastparen;
  106.     char * _parmStart;
  107.     char * _pathEnd;
  108.     char * _extStart;
  109.     int _typerecord;
  110.     // internal only methods:
  111.     void _determine_uri_abs();
  112.     void _determine_type();
  113.     void _determine_punct();
  114.     void _determine_parms();
  115.     void _parse_rest();
  116. };
  117. // Internal constants for the _parsestate variable:
  118. #define PARSE_NONE         0
  119. #define PARSE_ABSOLUTE_URI 1
  120. #define PARSE_PATHTYPE     2
  121. #define PARSE_PUNCT        3
  122. #define PARSE_PARMS        4
  123. #define PARSE_PARSED       5
  124. // These are the possible error return codes:
  125. #define NO_ERROR                        0
  126. #define ERROR_SEMICOLON_NOT_ALLOWED    101
  127. #define ERROR_PERIOD_NOT_ALLOWED       102
  128. #define ERROR_NO_PAREN_ALLOWED         103
  129. #define ERROR_ABS_PATH_REQUIRED        104
  130. #define ERROR_NO_EXTRA_PERIODS_ALLOWED 105
  131. #define ERROR_MUST_BE_ABSOLUTE         106
  132. #define ERROR_BAD_DD                   107
  133. #define ERROR_BAD_DSN2                 108
  134. #define ERROR_NO_EXTRA_SEMIS_ALLOWED   109
  135. // Constants for the _pathtype variable and the return value from getPathType() method:
  136. #define PATH390_HFS      1
  137. #define PATH390_DSN1     2 // format is dsn:/chrisl/data/xml/member1.
  138. #define PATH390_DSN2     3 // format is dsn://'chrisl.data.xml(member1)'
  139. #define PATH390_DD       4
  140. #define PATH390_OTHER    5
  141. XERCES_CPP_NAMESPACE_END
  142. #endif