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

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: Op.cpp,v $
  58.  * Revision 1.3  2001/06/01 14:15:36  knoaman
  59.  * Add a return value to satisfy compilers that complain about
  60.  * no return value, although that code will not be executed.
  61.  *
  62.  * Revision 1.2  2001/05/11 13:26:43  tng
  63.  * Copyright update.
  64.  *
  65.  * Revision 1.1  2001/03/02 19:22:47  knoaman
  66.  * Schema: Regular expression handling part I
  67.  *
  68.  */
  69. // ---------------------------------------------------------------------------
  70. //  Includes
  71. // ---------------------------------------------------------------------------
  72. #include <util/regx/Op.hpp>
  73. #include <util/XMLString.hpp>
  74. // ---------------------------------------------------------------------------
  75. //  Op: Constructors and Destructors
  76. // ---------------------------------------------------------------------------
  77. Op::Op(const short type) : fOpType(type),
  78.                            fNextOp(0) {
  79. }
  80. // ---------------------------------------------------------------------------
  81. //  Op: Getter methods
  82. // ---------------------------------------------------------------------------
  83. int Op::getSize() const {
  84. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  85.     return 0; // for compilers that complain about no return value    
  86. }
  87. XMLInt32 Op::getData() const {
  88. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  89.     return 0; // for compilers that complain about no return value
  90. }
  91. XMLInt32 Op::getData2() const {
  92. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  93.     return 0; // for compilers that complain about no return value
  94. }
  95. int Op::getRefNo() const {
  96. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  97.     return 0; // for compilers that complain about no return value
  98. }
  99. const Op* Op::elementAt(int index) const {
  100. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  101.     return 0; // for compilers that complain about no return value
  102. }
  103. const Op* Op::getChild() const {
  104. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  105.     return 0; // for compilers that complain about no return value
  106. }
  107. const Op* Op::getConditionFlow() const {
  108. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  109.     return 0; // for compilers that complain about no return value
  110. }
  111. const Op* Op::getYesFlow() const {
  112. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  113.     return 0; // for compilers that complain about no return value
  114. }
  115. const Op* Op::getNoFlow() const {
  116. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  117.     return 0; // for compilers that complain about no return value
  118. }
  119. const XMLCh* Op::getLiteral() const {
  120. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  121.     return 0; // for compilers that complain about no return value
  122. }
  123. const Token* Op::getToken() const {
  124. ThrowXML(RuntimeException, XMLExcepts::Regex_NotSupported);
  125.     return 0; // for compilers that complain about no return value
  126. }
  127. // ---------------------------------------------------------------------------
  128. //  CharOp: Constructors and Destuctors
  129. // ---------------------------------------------------------------------------
  130. CharOp::CharOp(const short type, const XMLInt32 charData)
  131.     : Op(type)
  132.       , fCharData(charData) {
  133. }
  134. // ---------------------------------------------------------------------------
  135. //  CharOp: Getter methods
  136. // ---------------------------------------------------------------------------
  137. XMLInt32 CharOp::getData() const {
  138. return fCharData;
  139. }
  140. // ---------------------------------------------------------------------------
  141. //  UnionOp: Constructors and Destuctors
  142. // ---------------------------------------------------------------------------
  143. UnionOp::UnionOp(const short type, const int size)
  144.     : Op(type)
  145.       , fBranches(new RefVectorOf<Op> (size, false)) {
  146. }
  147. // ---------------------------------------------------------------------------
  148. //  UnionOp: Getter/Setter methods
  149. // ---------------------------------------------------------------------------
  150. int UnionOp::getSize() const {
  151. return fBranches->size();
  152. }
  153. const Op* UnionOp::elementAt(int index) const {
  154. return fBranches->elementAt(index);
  155. }
  156. void UnionOp::addElement(Op* const op) {
  157. fBranches->addElement(op);
  158. }
  159. // ---------------------------------------------------------------------------
  160. //  ChildOp: Constructors and Destuctors
  161. // ---------------------------------------------------------------------------
  162. ChildOp::ChildOp(const short type)
  163.     : Op(type)
  164.       , fChild(0) {
  165. }
  166. // ---------------------------------------------------------------------------
  167. //  ChildOp: Getter/Setter methods
  168. // ---------------------------------------------------------------------------
  169. const Op* ChildOp::getChild() const {
  170. return fChild;
  171. }
  172. void ChildOp::setChild(const Op* const child) {
  173. fChild = child;
  174. }
  175. // ---------------------------------------------------------------------------
  176. //  ModifierOp: Constructors and Destuctors
  177. // ---------------------------------------------------------------------------
  178. ModifierOp::ModifierOp(const short type, const XMLInt32 v1, const XMLInt32 v2)
  179.     : ChildOp(type)
  180.       , fVal1(v1)
  181.       , fVal2(v2) {
  182. }
  183. // ---------------------------------------------------------------------------
  184. //  ModifierOp: Getter methods
  185. // ---------------------------------------------------------------------------
  186. XMLInt32 ModifierOp::getData() const {
  187. return fVal1;
  188. }
  189. XMLInt32 ModifierOp::getData2() const {
  190. return fVal2;
  191. }
  192. // ---------------------------------------------------------------------------
  193. //  RangeOp: Constructors and Destuctors
  194. // ---------------------------------------------------------------------------
  195. RangeOp::RangeOp(const short type, const Token* const token)
  196.     : Op (type)
  197.       , fToken(token) {
  198. }
  199. // ---------------------------------------------------------------------------
  200. //  RangeOp: Getter methods
  201. // ---------------------------------------------------------------------------
  202. const Token* RangeOp::getToken() const {
  203. return fToken;
  204. }
  205. // ---------------------------------------------------------------------------
  206. //  StringOp: Constructors and Destuctors
  207. // ---------------------------------------------------------------------------
  208. StringOp::StringOp(const short type, const XMLCh* const literal)
  209.     : Op (type)
  210.       , fLiteral(XMLString::replicate(literal)) {
  211. }
  212. // ---------------------------------------------------------------------------
  213. //  StringOp: Getter methods
  214. // ---------------------------------------------------------------------------
  215. const XMLCh* StringOp::getLiteral() const {
  216. return fLiteral;
  217. }
  218. // ---------------------------------------------------------------------------
  219. //  ConditionOp: Constructors and Destuctors
  220. // ---------------------------------------------------------------------------
  221. ConditionOp::ConditionOp(const short type, const int refNo,
  222.                          const Op* const condFlow, const Op* const yesFlow,
  223.                          const Op* const noFlow)
  224.     : Op (type)
  225.       , fRefNo(refNo)
  226.       , fConditionOp(condFlow)
  227.       , fYesOp(yesFlow)
  228.       , fNoOp(noFlow) {
  229. }
  230. // ---------------------------------------------------------------------------
  231. //  ConditionOp: Getter methods
  232. // ---------------------------------------------------------------------------
  233. int ConditionOp::getRefNo() const {
  234. return fRefNo;
  235. }
  236. const Op* ConditionOp::getConditionFlow() const {
  237. return fConditionOp;
  238. }
  239. const Op* ConditionOp::getYesFlow() const {
  240. return fYesOp;
  241. }
  242. const Op* ConditionOp::getNoFlow() const {
  243. return fNoOp;
  244. }
  245. /**
  246.   * End file Op.cpp
  247.   */