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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_code.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:38:49  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: soap_code.hpp,v 1000.0 2003/10/29 17:38:49 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.  *   SOAP Code object
  38.  *
  39.  * ===========================================================================
  40.  */
  41. #ifndef SOAP_CODE_HPP
  42. #define SOAP_CODE_HPP
  43. // standard includes
  44. #include <serial/serialbase.hpp>
  45. // generated includes
  46. #include <string>
  47. BEGIN_NCBI_SCOPE
  48. // forward declarations
  49. class CSoapSubcode;
  50. // generated classes
  51. class CSoapCode : public CSerialObject
  52. {
  53.     typedef CSerialObject Tparent;
  54. public:
  55.     // constructor
  56.     CSoapCode(void);
  57.     // destructor
  58.     virtual ~CSoapCode(void);
  59.     // type info
  60.     DECLARE_INTERNAL_TYPE_INFO();
  61.     enum ESoap_Faultcode {
  62.         e_not_set = 0,
  63.         eDataEncodingUnknown = 1,
  64.         eMustUnderstand,
  65.         eReceiver,
  66.         eSender,
  67.         eVersionMismatch
  68.     };
  69.     // types
  70.     typedef std::string TSoapValue;
  71.     typedef CSoapSubcode TSoapSubcode;
  72.     // getters
  73.     // setters
  74.     bool IsSetFaultcode(void) const;
  75.     bool CanGetFaultcode(void) const;
  76.     void ResetFaultcode(void);
  77.     ESoap_Faultcode GetFaultcode(void) const;
  78.     void SetFaultcode(ESoap_Faultcode value);
  79.     // mandatory
  80.     // typedef std::string TSoapValue
  81.     bool IsSetSoapValue(void) const;
  82.     bool CanGetSoapValue(void) const;
  83.     void ResetSoapValue(void);
  84.     const TSoapValue& GetSoapValue(void) const;
  85.     void SetSoapValue(const TSoapValue& value);
  86.     TSoapValue& SetSoapValue(void);
  87.     // optional
  88.     // typedef CSoapSubcode TSoapSubcode
  89.     bool IsSetSoapSubcode(void) const;
  90.     bool CanGetSoapSubcode(void) const;
  91.     void ResetSoapSubcode(void);
  92.     const TSoapSubcode& GetSoapSubcode(void) const;
  93.     void SetSoapSubcode(TSoapSubcode& value);
  94.     TSoapSubcode& SetSoapSubcode(void);
  95.     // reset whole object
  96.     virtual void Reset(void);
  97. private:
  98.     // Prohibit copy constructor and assignment operator
  99.     CSoapCode(const CSoapCode&);
  100.     CSoapCode& operator=(const CSoapCode&);
  101.     ESoap_Faultcode m_Faultcode;
  102.     // data
  103.     Uint4 m_set_State[1];
  104.     std::string m_SoapValue;
  105.     CRef< TSoapSubcode > m_SoapSubcode;
  106.     static string x_FaultcodeToValue(ESoap_Faultcode code);
  107.     static ESoap_Faultcode x_ValueToFaultcode(const string& value);
  108. };
  109. ///////////////////////////////////////////////////////////
  110. ///////////////////// inline methods //////////////////////
  111. ///////////////////////////////////////////////////////////
  112. inline
  113. bool CSoapCode::IsSetFaultcode(void) const
  114. {
  115.     return IsSetSoapValue();
  116. }
  117. inline
  118. bool CSoapCode::CanGetFaultcode(void) const
  119. {
  120.     return CanGetSoapValue();
  121. }
  122. inline
  123. bool CSoapCode::IsSetSoapValue(void) const
  124. {
  125.     return ((m_set_State[0] & 0x3) != 0);
  126. }
  127. inline
  128. bool CSoapCode::CanGetSoapValue(void) const
  129. {
  130.     return IsSetSoapValue();
  131. }
  132. inline
  133. const std::string& CSoapCode::GetSoapValue(void) const
  134. {
  135.     if (!CanGetSoapValue()) {
  136.         ThrowUnassigned(0);
  137.     }
  138.     return m_SoapValue;
  139. }
  140. inline
  141. void CSoapCode::SetSoapValue(const std::string& value)
  142. {
  143.     m_SoapValue = value;
  144.     m_set_State[0] |= 0x3;
  145. }
  146. inline
  147. std::string& CSoapCode::SetSoapValue(void)
  148. {
  149. #ifdef _DEBUG
  150.     if (!IsSetSoapValue()) {
  151.         m_SoapValue = ms_UnassignedStr;
  152.     }
  153. #endif
  154.     m_set_State[0] |= 0x1;
  155.     return m_SoapValue;
  156. }
  157. inline
  158. bool CSoapCode::IsSetSoapSubcode(void) const
  159. {
  160.     return m_SoapSubcode;
  161. }
  162. inline
  163. bool CSoapCode::CanGetSoapSubcode(void) const
  164. {
  165.     return IsSetSoapSubcode();
  166. }
  167. inline
  168. const CSoapSubcode& CSoapCode::GetSoapSubcode(void) const
  169. {
  170.     if (!CanGetSoapSubcode()) {
  171.         ThrowUnassigned(1);
  172.     }
  173.     return (*m_SoapSubcode);
  174. }
  175. ///////////////////////////////////////////////////////////
  176. ////////////////// end of inline methods //////////////////
  177. ///////////////////////////////////////////////////////////
  178. END_NCBI_SCOPE
  179. #endif // SOAP_CODE_HPP
  180. /* --------------------------------------------------------------------------
  181. * $Log: soap_code.hpp,v $
  182. * Revision 1000.0  2003/10/29 17:38:49  gouriano
  183. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  184. *
  185. * Revision 1.1  2003/09/25 19:46:21  gouriano
  186. * Added soap Fault object
  187. *
  188. *
  189. * ===========================================================================
  190. */