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

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.  * $Log: XPathSymbols.cpp,v $
  58.  * Revision 1.1  2001/11/02 14:08:40  knoaman
  59.  * Add support for identity constraints.
  60.  *
  61.  */
  62. // ---------------------------------------------------------------------------
  63. //  Includes
  64. // ---------------------------------------------------------------------------
  65. #include <util/XMLUniDefs.hpp>
  66. #include <validators/schema/identity/XPathSymbols.hpp>
  67. // ---------------------------------------------------------------------------
  68. //  SchemaSymbols: Static data
  69. // ---------------------------------------------------------------------------
  70. const XMLCh XPathSymbols::fgSYMBOL_AND[] =
  71. {
  72.     chLatin_a, chLatin_n, chLatin_d, chNull
  73. };
  74. const XMLCh XPathSymbols::fgSYMBOL_OR[] =
  75. {
  76.     chLatin_o, chLatin_r, chNull
  77. };
  78. const XMLCh XPathSymbols::fgSYMBOL_MOD[] =
  79. {
  80.     chLatin_m, chLatin_o, chLatin_d, chNull
  81. };
  82. const XMLCh XPathSymbols::fgSYMBOL_DIV[] =
  83. {
  84.     chLatin_d, chLatin_i, chLatin_v, chNull
  85. };
  86. const XMLCh XPathSymbols::fgSYMBOL_COMMENT[] =
  87. {
  88.     chLatin_c, chLatin_o, chLatin_m, chLatin_m, chLatin_e, chLatin_n, chLatin_t, chNull
  89. };
  90. const XMLCh XPathSymbols::fgSYMBOL_TEXT[] =
  91. {
  92.     chLatin_t, chLatin_e, chLatin_x, chLatin_t, chNull
  93. };
  94. const XMLCh XPathSymbols::fgSYMBOL_PI[] =
  95. {
  96.     chLatin_p, chLatin_r, chLatin_o, chLatin_c, chLatin_e, chLatin_s, chLatin_s,
  97.     chLatin_i, chLatin_n, chLatin_g, chDash, chLatin_i, chLatin_n, chLatin_s, chLatin_t,
  98.     chLatin_r, chLatin_u, chLatin_c, chLatin_t, chLatin_i, chLatin_o, chLatin_n, chNull
  99. };
  100. const XMLCh XPathSymbols::fgSYMBOL_NODE[] =
  101. {
  102.     chLatin_n, chLatin_o, chLatin_d, chLatin_e, chNull
  103. };
  104. const XMLCh XPathSymbols::fgSYMBOL_ANCESTOR[] =
  105. {
  106.     chLatin_a, chLatin_n, chLatin_c, chLatin_e, chLatin_s, chLatin_t, chLatin_o,
  107.     chLatin_r, chNull
  108. };
  109. const XMLCh XPathSymbols::fgSYMBOL_ANCESTOR_OR_SELF[] =
  110. {
  111.     chLatin_a, chLatin_n, chLatin_c, chLatin_e, chLatin_s, chLatin_t, chLatin_o,
  112.     chLatin_r, chDash, chLatin_o, chLatin_r, chDash, chLatin_s, chLatin_e,
  113.     chLatin_l, chLatin_f, chNull
  114. };
  115. const XMLCh XPathSymbols::fgSYMBOL_ATTRIBUTE[] =
  116. {
  117.     chLatin_a, chLatin_t, chLatin_t, chLatin_r, chLatin_i, chLatin_b, chLatin_u,
  118.     chLatin_t, chLatin_e, chNull
  119. };
  120. const XMLCh XPathSymbols::fgSYMBOL_CHILD[] =
  121. {
  122.     chLatin_c, chLatin_h, chLatin_i, chLatin_l, chLatin_d, chNull
  123. };
  124. const XMLCh XPathSymbols::fgSYMBOL_DESCENDANT[] =
  125. {
  126.     chLatin_d, chLatin_e, chLatin_s, chLatin_c, chLatin_e, chLatin_n, chLatin_d,
  127.     chLatin_a, chLatin_n, chLatin_t, chNull
  128. };
  129. const XMLCh XPathSymbols::fgSYMBOL_DESCENDANT_OR_SELF[] =
  130. {
  131.     chLatin_d, chLatin_e, chLatin_s, chLatin_c, chLatin_e, chLatin_n, chLatin_d,
  132.     chLatin_a, chLatin_n, chLatin_t, chDash, chLatin_o, chLatin_r, chDash, chLatin_s,
  133. chLatin_e, chLatin_l, chLatin_f, chNull
  134. };
  135. const XMLCh XPathSymbols::fgSYMBOL_FOLLOWING[] =
  136. {
  137.     chLatin_f, chLatin_o, chLatin_l, chLatin_l, chLatin_o, chLatin_w, chLatin_i,
  138.     chLatin_n, chLatin_g, chNull
  139. };
  140. const XMLCh XPathSymbols::fgSYMBOL_FOLLOWING_SIBLING[] =
  141. {
  142.     chLatin_f, chLatin_o, chLatin_l, chLatin_l, chLatin_o, chLatin_w, chLatin_i,
  143.     chLatin_n, chLatin_g, chDash, chLatin_s, chLatin_i, chLatin_b, chLatin_l, chLatin_i,
  144.     chLatin_n, chLatin_g, chNull
  145. };
  146. const XMLCh XPathSymbols::fgSYMBOL_NAMESPACE[] =
  147. {
  148.     chLatin_n, chLatin_a, chLatin_m, chLatin_e, chLatin_s, chLatin_p, chLatin_a,
  149.     chLatin_c, chLatin_e, chNull
  150. };
  151. const XMLCh XPathSymbols::fgSYMBOL_PARENT[] =
  152. {
  153.     chLatin_p, chLatin_a, chLatin_r, chLatin_e, chLatin_n, chLatin_t, chNull
  154. };
  155. const XMLCh XPathSymbols::fgSYMBOL_PRECEDING[] =
  156. {
  157.     chLatin_p, chLatin_r, chLatin_e, chLatin_c, chLatin_e, chLatin_d, chLatin_i,
  158.     chLatin_n, chLatin_g, chNull
  159. };
  160. const XMLCh XPathSymbols::fgSYMBOL_PRECEDING_SIBLING[] =
  161. {
  162.     chLatin_p, chLatin_r, chLatin_e, chLatin_c, chLatin_e, chLatin_d, chLatin_i,
  163.     chLatin_n, chLatin_g, chDash, chLatin_s, chLatin_i, chLatin_b, chLatin_l, chLatin_i,
  164.     chLatin_n, chLatin_g, chNull
  165. };
  166. const XMLCh XPathSymbols::fgSYMBOL_SELF[] =
  167. {
  168.     chLatin_s, chLatin_e, chLatin_l, chLatin_f, chNull
  169. };
  170. /**
  171.   * End of file XPathSymbols.cpp
  172.   */