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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002-2003 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. #if !defined(XERCESVERSION_HPP)
  57. #define XERCESVERSION_HPP
  58. // ---------------------------------------------------------------------------
  59. // X E R C E S   V E R S I O N   H E A D E R   D O C U M E N T A T I O N
  60. /**
  61.  * User Documentation for Xerces Version Values:
  62.  *
  63.  *
  64.  *
  65.  * Xerces  Notes:
  66.  *
  67.  * Xerces Committers Documentation:
  68.  *
  69.  *    Xerces committers normally only need to modify one or two of the
  70.  *    following macros:
  71.  *
  72.  *      XERCES_VERSION_MAJOR
  73.  *      XERCES_VERSION_MINOR
  74.  *      XERCES_VERSION_REVISION
  75.  *
  76.  *    The integer values of these macros define the Xerces version number. All
  77.  *    other constants and preprocessor macros are automatically generated from
  78.  *    these three definitions.
  79.  *
  80.  * Xerces User Documentation:
  81.  *
  82.  *  The following sections in the user documentation have examples based upon
  83.  *  the following three version input values:
  84.  *
  85.  *    #define XERCES_VERSION_MAJOR 19
  86.  *    #define XERCES_VERSION_MINOR 3
  87.  *    #define XERCES_VERSION_REVISION 74
  88.  *
  89.  *  The minor and revision (patch level) numbers have two digits of resolution
  90.  *  which means that '3' becomes '03' in this example. This policy guarantees
  91.  *  that when using preprocessor macros, version 19.3.74 will be greater than
  92.  *  version 1.94.74 since the first will expand to 190374 and the second to
  93.  *  19474.
  94.  *
  95.  *  Preprocessor Macros:
  96.  *
  97.  *    _XERCES_VERSION defines the primary preprocessor macro that users will
  98.  *    introduce into their code to perform conditional compilation where the
  99.  *    version of Xerces is detected in order to enable or disable version
  100.  *    specific capabilities. The value of _XERCES_VERSION for the above example
  101.  *    will be 190374. To use it a user would perform an operation such as the
  102.  *    following:
  103.  *
  104.  *      #if _XERCES_VERSION >= 190374
  105.  *        // code specific to new version of Xerces...
  106.  *      #else
  107.  *        // old code here...
  108.  *      #endif
  109.  *
  110.  *    XERCES_FULLVERSIONSTR is a preprocessor macro that expands to a string
  111.  *    constant whose value, for the above example, will be "19_3_74".
  112.  *
  113.  *    XERCES_FULLVERSIONDOT is a preprocessor macro that expands to a string
  114.  *    constant whose value, for the above example, will be "19.3.74".
  115.  *
  116.  *    XERCES_VERSIONSTR is a preprocessor macro that expands to a string
  117.  *    constant whose value, for the above example, will be "19_3". This
  118.  *    particular macro is very dangerous if it were to be used for comparing
  119.  *    version numbers since ordering will not be guaranteed.
  120.  *
  121.  *    Xerces_DLLVersionStr is a preprocessor macro that expands to a string
  122.  *    constant whose value, for the above example, will be "19_3_74". This
  123.  *    macro is provided for backwards compatibility to pre-1.7 versions of
  124.  *    Xerces.
  125.  *
  126.  *  String Constants:
  127.  *
  128.  *    gXercesVersionStr is a global string constant whose value corresponds to
  129.  *    the value "19_3" for the above example.
  130.  *
  131.  *    gXercesFullVersionStr is a global string constant whose value corresponds
  132.  *    to the value "19_3_74" for the above example.
  133.  *
  134.  *  Numeric Constants:
  135.  *
  136.  *    gXercesMajVersion is a global integer constant whose value corresponds to
  137.  *    the major version number. For the above example its value will be 19.
  138.  *
  139.  *    gXercesMinVersion is a global integer constant whose value corresponds to
  140.  *    the minor version number. For the above example its value will be 3.
  141.  *
  142.  *    gXercesRevision is a global integer constant whose value corresponds to
  143.  *    the revision (patch) version number. For the above example its value will
  144.  *    be 74.
  145.  *
  146.  */
  147. // ---------------------------------------------------------------------------
  148. // X E R C E S   V E R S I O N   S P E C I F I C A T I O N
  149. /**
  150.  * MODIFY THESE NUMERIC VALUES TO COINCIDE WITH XERCES VERSION
  151.  * AND DO NOT MODIFY ANYTHING ELSE IN THIS VERSION HEADER FILE
  152.  */
  153. #define XERCES_VERSION_MAJOR 2
  154. #define XERCES_VERSION_MINOR 3
  155. #define XERCES_VERSION_REVISION 0
  156. /** DO NOT MODIFY BELOW THIS LINE */
  157. /**
  158.  * MAGIC THAT AUTOMATICALLY GENERATES THE FOLLOWING:
  159.  *
  160.  * Xerces_DLLVersionStr, gXercesVersionStr, gXercesFullVersionStr,
  161.  * gXercesMajVersion, gXercesMinVersion, gXercesRevision
  162.  */
  163. // ---------------------------------------------------------------------------
  164. // T W O   A R G U M E N T   C O N C A T E N A T I O N   M A C R O S
  165. // two argument concatenation routines
  166. #define CAT2_SEP_UNDERSCORE(a, b) #a "_" #b
  167. #define CAT2_SEP_PERIOD(a, b) #a "." #b
  168. #define CAT2_SEP_NIL(a, b) #a #b
  169. #define CAT2_RAW_NUMERIC(a, b) a ## b
  170. // two argument macro invokers
  171. #define INVK_CAT2_SEP_UNDERSCORE(a,b) CAT2_SEP_UNDERSCORE(a,b)
  172. #define INVK_CAT2_SEP_PERIOD(a,b)     CAT2_SEP_PERIOD(a,b)
  173. #define INVK_CAT2_STR_SEP_NIL(a,b)    CAT2_SEP_NIL(a,b)
  174. #define INVK_CAT2_RAW_NUMERIC(a,b)    CAT2_RAW_NUMERIC(a,b)
  175. // ---------------------------------------------------------------------------
  176. // T H R E E   A R G U M E N T   C O N C A T E N A T I O N   M A C R O S
  177. // three argument concatenation routines
  178. #define CAT3_SEP_UNDERSCORE(a, b, c) #a "_" #b "_" #c
  179. #define CAT3_SEP_PERIOD(a, b, c) #a "." #b "." #c
  180. #define CAT3_SEP_NIL(a, b, c) #a #b #c
  181. #define CAT3_RAW_NUMERIC(a, b, c) a ## b ## c
  182. #define CAT3_RAW_NUMERIC_SEP_UNDERSCORE(a, b, c) a ## _ ## b ## _ ## c
  183. // three argument macro invokers
  184. #define INVK_CAT3_SEP_UNDERSCORE(a,b,c) CAT3_SEP_UNDERSCORE(a,b,c)
  185. #define INVK_CAT3_SEP_PERIOD(a,b,c)     CAT3_SEP_PERIOD(a,b,c)
  186. #define INVK_CAT3_SEP_NIL(a,b,c)        CAT3_SEP_NIL(a,b,c)
  187. #define INVK_CAT3_RAW_NUMERIC(a,b,c)    CAT3_RAW_NUMERIC(a,b,c)
  188. #define INVK_CAT3_RAW_NUMERIC_SEP_UNDERSCORE(a,b,c)    CAT3_RAW_NUMERIC_SEP_UNDERSCORE(a,b,c)
  189. // ---------------------------------------------------------------------------
  190. // C A L C U L A T E   V E R S I O N   -   E X P A N D E D   F O R M
  191. #define MULTIPLY(factor,value) factor * value
  192. #define CALC_EXPANDED_FORM(a,b,c) ( MULTIPLY(10000,a) + MULTIPLY(100,b) + MULTIPLY(1,c) )
  193. // ---------------------------------------------------------------------------
  194. // X E R C E S   V E R S I O N   I N F O R M A T I O N
  195. // Xerces version strings; these particular macros cannot be used for
  196. // conditional compilation as they are not numeric constants
  197. #define XERCES_FULLVERSIONSTR INVK_CAT3_SEP_UNDERSCORE(XERCES_VERSION_MAJOR,XERCES_VERSION_MINOR,XERCES_VERSION_REVISION)
  198. #define XERCES_FULLVERSIONDOT INVK_CAT3_SEP_PERIOD(XERCES_VERSION_MAJOR,XERCES_VERSION_MINOR,XERCES_VERSION_REVISION)
  199. #define XERCES_FULLVERSIONNUM INVK_CAT3_SEP_NIL(XERCES_VERSION_MAJOR,XERCES_VERSION_MINOR,XERCES_VERSION_REVISION)
  200. #define XERCES_VERSIONSTR     INVK_CAT2_SEP_UNDERSCORE(XERCES_VERSION_MAJOR,XERCES_VERSION_MINOR)
  201. // Xerces C++ Namespace string, concatenated with full version string
  202. #define XERCES_PRODUCT xercesc
  203. #define XERCES_CPP_NAMESPACE INVK_CAT3_RAW_NUMERIC_SEP_UNDERSCORE(XERCES_PRODUCT,XERCES_VERSION_MAJOR,XERCES_VERSION_MINOR)
  204. // original from Xerces header
  205. #define Xerces_DLLVersionStr XERCES_FULLVERSIONSTR
  206. const char* const    gXercesVersionStr = XERCES_VERSIONSTR;
  207. const char* const    gXercesFullVersionStr = XERCES_FULLVERSIONSTR;
  208. const unsigned int   gXercesMajVersion = XERCES_VERSION_MAJOR;
  209. const unsigned int   gXercesMinVersion = XERCES_VERSION_MINOR;
  210. const unsigned int   gXercesRevision   = XERCES_VERSION_REVISION;
  211. // Xerces version numeric constants that can be used for conditional
  212. // compilation purposes.
  213. #define _XERCES_VERSION CALC_EXPANDED_FORM (XERCES_VERSION_MAJOR,XERCES_VERSION_MINOR,XERCES_VERSION_REVISION)
  214. #endif // XERCESVERSION_HPP