soap_body.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_body.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:55:11  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: soap_body.hpp,v 1000.0 2003/10/29 17:55:11 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Andrei Gourianov
  35.  *
  36.  * File Description:
  37.  *   Holds SOAP message Body contents
  38.  *
  39.  * ===========================================================================
  40.  */
  41. #ifndef SOAP_BODY_HPP
  42. #define SOAP_BODY_HPP
  43. // standard includes
  44. #include <serial/serialbase.hpp>
  45. // generated includes
  46. #include <list>
  47. BEGIN_NCBI_SCOPE
  48. // generated classes
  49. class CSoapBody : public CSerialObject
  50. {
  51.     typedef CSerialObject Tparent;
  52. public:
  53.     // constructor
  54.     CSoapBody(void);
  55.     // destructor
  56.     virtual ~CSoapBody(void);
  57.     // type info
  58.     DECLARE_INTERNAL_TYPE_INFO();
  59.     class C_E : public CSerialObject
  60.     {
  61.         typedef CSerialObject Tparent;
  62.     public:
  63.         // constructor
  64.         C_E(void);
  65.         // destructor
  66.         ~C_E(void);
  67.     
  68.         // type info
  69.         DECLARE_INTERNAL_TYPE_INFO();
  70.     
  71.         // types
  72.         typedef CAnyContentObject TAnyContent;
  73.     
  74.         // getters
  75.         // setters
  76.     
  77.         // mandatory
  78.         // typedef CAnyContentObject TAnyContent
  79.         bool IsSetAnyContent(void) const;
  80.         bool CanGetAnyContent(void) const;
  81.         void ResetAnyContent(void);
  82.         const TAnyContent& GetAnyContent(void) const;
  83.         void SetAnyContent(TAnyContent& value);
  84.         TAnyContent& SetAnyContent(void);
  85.     
  86.         // reset whole object
  87.         void Reset(void);
  88.     
  89.     
  90.     private:
  91.         // Prohibit copy constructor and assignment operator
  92.         C_E(const C_E&);
  93.         C_E& operator=(const C_E&);
  94.     
  95.         // data
  96.         CRef< TAnyContent > m_AnyContent;
  97.     };
  98.     // types
  99.     typedef std::list< CRef< C_E > > Tdata;
  100.     // getters
  101.     // setters
  102.     // mandatory
  103.     // typedef std::list< CRef< C_E > > Tdata
  104.     bool IsSet(void) const;
  105.     bool CanGet(void) const;
  106.     void Reset(void);
  107.     const Tdata& Get(void) const;
  108.     Tdata& Set(void);
  109.     operator const Tdata& (void) const;
  110.     operator Tdata& (void);
  111. private:
  112.     // Prohibit copy constructor and assignment operator
  113.     CSoapBody(const CSoapBody&);
  114.     CSoapBody& operator=(const CSoapBody&);
  115.     // data
  116.     Uint4 m_set_State[1];
  117.     Tdata m_data;
  118. };
  119. ///////////////////////////////////////////////////////////
  120. ///////////////////// inline methods //////////////////////
  121. ///////////////////////////////////////////////////////////
  122. inline
  123. bool CSoapBody::C_E::IsSetAnyContent(void) const
  124. {
  125.     return m_AnyContent;
  126. }
  127. inline
  128. bool CSoapBody::C_E::CanGetAnyContent(void) const
  129. {
  130.     return IsSetAnyContent();
  131. }
  132. inline
  133. const CAnyContentObject& CSoapBody::C_E::GetAnyContent(void) const
  134. {
  135.     if (!CanGetAnyContent()) {
  136.         ThrowUnassigned(0);
  137.     }
  138.     return (*m_AnyContent);
  139. }
  140. inline
  141. CAnyContentObject& CSoapBody::C_E::SetAnyContent(void)
  142. {
  143.     return (*m_AnyContent);
  144. }
  145. inline
  146. bool CSoapBody::IsSet(void) const
  147. {
  148.     return ((m_set_State[0] & 0x3) != 0);
  149. }
  150. inline
  151. bool CSoapBody::CanGet(void) const
  152. {
  153.     return true;
  154. }
  155. inline
  156. const std::list< CRef< CSoapBody::C_E > >& CSoapBody::Get(void) const
  157. {
  158.     return m_data;
  159. }
  160. inline
  161. std::list< CRef< CSoapBody::C_E > >& CSoapBody::Set(void)
  162. {
  163.     m_set_State[0] |= 0x1;
  164.     return m_data;
  165. }
  166. inline
  167. CSoapBody::operator const std::list< CRef< CSoapBody::C_E > >& (void) const
  168. {
  169.     return m_data;
  170. }
  171. inline
  172. CSoapBody::operator std::list< CRef< CSoapBody::C_E > >& (void)
  173. {
  174.     m_set_State[0] |= 0x1;
  175.     return m_data;
  176. }
  177. ///////////////////////////////////////////////////////////
  178. ////////////////// end of inline methods //////////////////
  179. ///////////////////////////////////////////////////////////
  180. END_NCBI_SCOPE
  181. #endif // SOAP_BODY_HPP
  182. /* --------------------------------------------------------------------------
  183. * $Log: soap_body.hpp,v $
  184. * Revision 1000.0  2003/10/29 17:55:11  gouriano
  185. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  186. *
  187. * Revision 1.2  2003/09/25 19:45:33  gouriano
  188. * Added soap Fault object
  189. *
  190. *
  191. * ===========================================================================
  192. */