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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: choice.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:14:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.23
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CHOICE__HPP
  10. #define CHOICE__HPP
  11. /*  $Id: choice.hpp,v 1000.1 2004/04/12 17:14:21 gouriano Exp $
  12. * ===========================================================================
  13. *
  14. *                            PUBLIC DOMAIN NOTICE
  15. *               National Center for Biotechnology Information
  16. *
  17. *  This software/database is a "United States Government Work" under the
  18. *  terms of the United States Copyright Act.  It was written as part of
  19. *  the author's official duties as a United States Government employee and
  20. *  thus cannot be copyrighted.  This software/database is freely available
  21. *  to the public for use. The National Library of Medicine and the U.S.
  22. *  Government have not placed any restriction on its use or reproduction.
  23. *
  24. *  Although all reasonable efforts have been taken to ensure the accuracy
  25. *  and reliability of the software and data, the NLM and the U.S.
  26. *  Government do not and cannot warrant the performance or results that
  27. *  may be obtained by using this software or data. The NLM and the U.S.
  28. *  Government disclaim all warranties, express or implied, including
  29. *  warranties of performance, merchantability or fitness for any particular
  30. *  purpose.
  31. *
  32. *  Please cite the author in any work or product based on this material.
  33. *
  34. * ===========================================================================
  35. *
  36. * Author: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   !!! PUT YOUR DESCRIPTION HERE !!!
  40. */
  41. #include <serial/typeinfo.hpp>
  42. #include <serial/typeref.hpp>
  43. #include <serial/classinfob.hpp>
  44. #include <serial/variant.hpp>
  45. /** @addtogroup TypeInfoCPP
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. class CChoiceTypeInfoReader;
  51. class CClassInfoHelperBase;
  52. class CChoiceTypeInfoFunctions;
  53. class NCBI_XSERIAL_EXPORT CChoiceTypeInfo : public CClassTypeInfoBase
  54. {
  55.     typedef CClassTypeInfoBase CParent;
  56. public:
  57.     typedef TMemberIndex (*TWhichFunction)(const CChoiceTypeInfo* choiceType,
  58.                                            TConstObjectPtr choicePtr);
  59.     typedef void (*TResetFunction)(const CChoiceTypeInfo* choiceType,
  60.                                    TObjectPtr choicePtr);
  61.     typedef void (*TSelectFunction)(const CChoiceTypeInfo* choiceType,
  62.                                     TObjectPtr choicePtr, TMemberIndex index);
  63.     typedef void (*TSelectDelayFunction)(const CChoiceTypeInfo* choiceType,
  64.                                          TObjectPtr choicePtr,
  65.                                          TMemberIndex index);
  66.     typedef TObjectPtr (*TGetDataFunction)(const CChoiceTypeInfo* choiceType,
  67.                                            TObjectPtr choicePtr,
  68.                                            TMemberIndex index);
  69.     CChoiceTypeInfo(size_t size, const char* name,
  70.                     const void* nonCObject, TTypeCreate createFunc,
  71.                     const type_info& ti,
  72.                     TWhichFunction whichFunc,
  73.                     TSelectFunction selectFunc,
  74.                     TResetFunction resetFunc);
  75.     CChoiceTypeInfo(size_t size, const char* name,
  76.                     const CObject* cObject, TTypeCreate createFunc,
  77.                     const type_info& ti,
  78.                     TWhichFunction whichFunc,
  79.                     TSelectFunction selectFunc,
  80.                     TResetFunction resetFunc);
  81.     CChoiceTypeInfo(size_t size, const string& name,
  82.                     const void* nonCObject, TTypeCreate createFunc,
  83.                     const type_info& ti,
  84.                     TWhichFunction whichFunc,
  85.                     TSelectFunction selectFunc,
  86.                     TResetFunction resetFunc);
  87.     CChoiceTypeInfo(size_t size, const string& name,
  88.                     const CObject* cObject, TTypeCreate createFunc,
  89.                     const type_info& ti,
  90.                     TWhichFunction whichFunc,
  91.                     TSelectFunction selectFunc,
  92.                     TResetFunction resetFunc);
  93.     const CItemsInfo& GetVariants(void) const;
  94.     const CVariantInfo* GetVariantInfo(TMemberIndex index) const;
  95.     const CVariantInfo* GetVariantInfo(const CIterator& i) const;
  96.     const CVariantInfo* GetVariantInfo(const string& name) const;
  97.     CVariantInfo* AddVariant(const char* variantId,
  98.                              const void* variantPtr,
  99.                              const CTypeRef& variantType);
  100.     CVariantInfo* AddVariant(const CMemberId& variantId,
  101.                              const void* variantPtr,
  102.                              const CTypeRef& variantType);
  103.     virtual bool IsDefault(TConstObjectPtr object) const;
  104.     virtual bool Equals(TConstObjectPtr obj1, TConstObjectPtr obj2,
  105.                         ESerialRecursionMode how = eRecursive) const;
  106.     virtual void SetDefault(TObjectPtr dst) const;
  107.     virtual void Assign(TObjectPtr dst, TConstObjectPtr src,
  108.                         ESerialRecursionMode how = eRecursive) const;
  109.     // iterators interface
  110.     TMemberIndex GetIndex(TConstObjectPtr object) const;
  111.     void ResetIndex(TObjectPtr object) const;
  112.     void SetIndex(TObjectPtr object, TMemberIndex index) const;
  113.     void SetDelayIndex(TObjectPtr object, TMemberIndex index) const;
  114.     TConstObjectPtr GetData(TConstObjectPtr object, TMemberIndex index) const;
  115.     TObjectPtr GetData(TObjectPtr object, TMemberIndex index) const;
  116. protected:
  117.     void SetSelectDelayFunction(TSelectDelayFunction func);
  118.     friend class CChoiceTypeInfoFunctions;
  119. private:
  120.     void InitChoiceTypeInfoFunctions(void);
  121. protected:
  122.     TWhichFunction m_WhichFunction;
  123.     TResetFunction m_ResetFunction;
  124.     TSelectFunction m_SelectFunction;
  125.     TSelectDelayFunction m_SelectDelayFunction;
  126. };
  127. /* @} */
  128. #include <serial/choice.inl>
  129. END_NCBI_SCOPE
  130. #endif  /* CHOICE__HPP */
  131. /* ---------------------------------------------------------------------------
  132. * $Log: choice.hpp,v $
  133. * Revision 1000.1  2004/04/12 17:14:21  gouriano
  134. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.23
  135. *
  136. * Revision 1.23  2004/03/25 15:56:27  gouriano
  137. * Added possibility to copy and compare serial object non-recursively
  138. *
  139. * Revision 1.22  2003/04/15 14:14:54  siyan
  140. * Added doxygen support
  141. *
  142. * Revision 1.21  2002/12/23 18:38:50  dicuccio
  143. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  144. * Moved all CVS logs to the end.
  145. *
  146. * Revision 1.20  2002/12/12 21:10:25  gouriano
  147. * implemented handling of complex XML containers
  148. *
  149. * Revision 1.19  2000/10/03 17:22:30  vasilche
  150. * Reduced header dependency.
  151. * Reduced size of debug libraries on WorkShop by 3 times.
  152. * Fixed tag allocation for parent classes.
  153. * Fixed CObject allocation/deallocation in streams.
  154. * Moved instantiation of several templates in separate source file.
  155. *
  156. * Revision 1.18  2000/09/26 18:03:21  vasilche
  157. * Added missing class keyword.
  158. *
  159. * Revision 1.17  2000/09/26 17:38:06  vasilche
  160. * Fixed incomplete choiceptr implementation.
  161. * Removed temporary comments.
  162. *
  163. * Revision 1.16  2000/09/18 19:59:59  vasilche
  164. * Separated CVariantInfo and CMemberInfo.
  165. * Implemented copy hooks.
  166. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  167. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  168. *
  169. * Revision 1.15  2000/09/01 13:15:57  vasilche
  170. * Implemented class/container/choice iterators.
  171. * Implemented CObjectStreamCopier for copying data without loading into memory.
  172. *
  173. * Revision 1.14  2000/08/15 19:44:38  vasilche
  174. * Added Read/Write hooks:
  175. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  176. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  177. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  178. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  179. *
  180. * Revision 1.13  2000/07/03 18:42:32  vasilche
  181. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  182. * Reduced header dependency.
  183. *
  184. * Revision 1.12  2000/06/16 16:31:03  vasilche
  185. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  186. *
  187. * Revision 1.11  2000/06/01 19:06:54  vasilche
  188. * Added parsing of XML data.
  189. *
  190. * Revision 1.10  2000/04/28 16:58:01  vasilche
  191. * Added classes CByteSource and CByteSourceReader for generic reading.
  192. * Added delayed reading of choice variants.
  193. *
  194. * Revision 1.9  2000/04/06 16:10:50  vasilche
  195. * Fixed bug with iterators in choices.
  196. * Removed unneeded calls to ReadExternalObject/WriteExternalObject.
  197. * Added output buffering to text ASN.1 data.
  198. *
  199. * Revision 1.8  2000/04/03 18:47:09  vasilche
  200. * Added main include file for generated headers.
  201. * serialimpl.hpp is included in generated sources with GetTypeInfo methods
  202. *
  203. * Revision 1.7  2000/03/07 14:05:28  vasilche
  204. * Added stream buffering to ASN.1 binary input.
  205. * Optimized class loading/storing.
  206. * Fixed bugs in processing OPTIONAL fields.
  207. *
  208. * Revision 1.6  2000/02/17 20:02:27  vasilche
  209. * Added some standard serialization exceptions.
  210. * Optimized text/binary ASN.1 reading.
  211. * Fixed wrong encoding of StringStore in ASN.1 binary format.
  212. * Optimized logic of object collection.
  213. *
  214. * Revision 1.5  2000/02/01 21:44:34  vasilche
  215. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  216. * Added buffering to CObjectIStreamAsn.
  217. * Removed CMemberInfo subclasses.
  218. * Added support for DEFAULT/OPTIONAL members.
  219. *
  220. * Revision 1.4  1999/12/28 18:55:39  vasilche
  221. * Reduced size of compiled object files:
  222. * 1. avoid inline or implicit virtual methods (especially destructors).
  223. * 2. avoid std::string's methods usage in inline methods.
  224. * 3. avoid string literals ("xxx") in inline methods.
  225. *
  226. * Revision 1.3  1999/12/17 19:04:52  vasilche
  227. * Simplified generation of GetTypeInfo methods.
  228. *
  229. * Revision 1.2  1999/10/08 21:00:39  vasilche
  230. * Implemented automatic generation of unnamed ASN.1 types.
  231. *
  232. * Revision 1.1  1999/09/24 18:20:05  vasilche
  233. * Removed dependency on NCBI toolkit.
  234. *
  235. *
  236. * ===========================================================================
  237. */