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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: objcopy.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:38:41  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef OBJCOPY__HPP
  10. #define OBJCOPY__HPP
  11. /*  $Id: objcopy.hpp,v 1000.2 2004/06/01 19:38:41 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 <corelib/ncbistd.hpp>
  42. #include <serial/serialdef.hpp>
  43. #include <serial/typeinfo.hpp>
  44. #include <serial/objostr.hpp>
  45. #include <serial/objistr.hpp>
  46. #include <serial/hookdatakey.hpp>
  47. #include <serial/objhook.hpp>
  48. #include <serial/pathhook.hpp>
  49. /** @addtogroup ObjStreamSupport
  50.  *
  51.  * @{
  52.  */
  53. BEGIN_NCBI_SCOPE
  54. class CContainerTypeInfo;
  55. class CClassTypeInfo;
  56. class CChoiceTypeInfo;
  57. class CAliasTypeInfo;
  58. class CMemberInfo;
  59. class CCopyObjectHook;
  60. class CCopyClassMemberHook;
  61. class CCopyChoiceVariantHook;
  62. class NCBI_XSERIAL_EXPORT CObjectStreamCopier
  63. {
  64. public:
  65.     CObjectStreamCopier(CObjectIStream& in, CObjectOStream& out);
  66.     ~CObjectStreamCopier(void);
  67.     CObjectIStream& In(void) const;
  68.     CObjectOStream& Out(void) const;
  69.     void ResetLocalHooks(void);
  70.     // main copy
  71.     void Copy(const CObjectTypeInfo& type);
  72.     enum ENoFileHeader {
  73.         eNoFileHeader
  74.     };
  75.     // copy without source typename
  76.     void Copy(TTypeInfo type, ENoFileHeader noFileHeader);
  77.     // copy object
  78.     void CopyObject(TTypeInfo type);
  79.     void CopyExternalObject(TTypeInfo type);
  80.     // primitive types copy
  81.     void CopyString(void);
  82.     void CopyStringStore(void);
  83.     void CopyByteBlock(void);
  84.     void CopyAnyContentObject(void);
  85.     // complex types copy
  86.     void CopyNamedType(TTypeInfo namedTypeInfo, TTypeInfo objectType);
  87.     void CopyPointer(TTypeInfo declaredType);
  88.     void CopyContainer(const CContainerTypeInfo* containerType);
  89.     void CopyClassRandom(const CClassTypeInfo* classType);
  90.     void CopyClassSequential(const CClassTypeInfo* classType);
  91.     void CopyChoice(const CChoiceTypeInfo* choiceType);
  92.     void CopyAlias(const CAliasTypeInfo* aliasType);
  93.     typedef CObjectIStream::TFailFlags TFailFlags;
  94.     void ThrowError1(const char* file, int line,
  95.                      TFailFlags fail, const char* message);
  96.     void ThrowError1(const char* file, int line,
  97.                      TFailFlags fail, const string& message);
  98. #define ThrowError(flag, mess) ThrowError1(__FILE__, __LINE__,flag,mess)
  99.     void ExpectedMember(const CMemberInfo* memberInfo);
  100.     void DuplicatedMember(const CMemberInfo* memberInfo);
  101.     void SetPathCopyObjectHook( const string& path, CCopyObjectHook*        hook);
  102.     void SetPathCopyMemberHook( const string& path, CCopyClassMemberHook*   hook);
  103.     void SetPathCopyVariantHook(const string& path, CCopyChoiceVariantHook* hook);
  104.     void SetPathHooks(CObjectStack& stk, bool set);
  105. private:
  106.     CObjectIStream& m_In;
  107.     CObjectOStream& m_Out;
  108.     CStreamPathHook<CMemberInfo*, CCopyClassMemberHook*>   m_PathCopyMemberHooks;
  109.     CStreamPathHook<CVariantInfo*,CCopyChoiceVariantHook*> m_PathCopyVariantHooks;
  110.     CStreamObjectPathHook<CCopyObjectHook*>                m_PathCopyObjectHooks;
  111. public:
  112.     // hook support
  113.     CLocalHookSet<CCopyObjectHook> m_ObjectHookKey;
  114.     CLocalHookSet<CCopyClassMemberHook> m_ClassMemberHookKey;
  115.     CLocalHookSet<CCopyChoiceVariantHook> m_ChoiceVariantHookKey;
  116. };
  117. /* @ */
  118. #include <serial/objcopy.inl>
  119. END_NCBI_SCOPE
  120. #endif  /* OBJCOPY__HPP */
  121. /* ---------------------------------------------------------------------------
  122. * $Log: objcopy.hpp,v $
  123. * Revision 1000.2  2004/06/01 19:38:41  gouriano
  124. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  125. *
  126. * Revision 1.15  2004/04/30 13:28:39  gouriano
  127. * Remove obsolete function declarations
  128. *
  129. * Revision 1.14  2004/01/05 14:24:08  gouriano
  130. * Added possibility to set serialization hooks by stack path
  131. *
  132. * Revision 1.13  2003/10/21 21:08:45  grichenk
  133. * Fixed aliases-related bug in XML stream
  134. *
  135. * Revision 1.12  2003/08/13 15:47:02  gouriano
  136. * implemented serialization of AnyContent objects
  137. *
  138. * Revision 1.11  2003/07/29 18:47:46  vasilche
  139. * Fixed thread safeness of object stream hooks.
  140. *
  141. * Revision 1.10  2003/04/15 16:18:10  siyan
  142. * Added doxygen support
  143. *
  144. * Revision 1.9  2003/03/10 18:52:37  gouriano
  145. * use new structured exceptions (based on CException)
  146. *
  147. * Revision 1.8  2002/12/23 18:38:51  dicuccio
  148. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  149. * Moved all CVS logs to the end.
  150. *
  151. * Revision 1.7  2002/10/25 14:49:29  vasilche
  152. * NCBI C Toolkit compatibility code extracted to libxcser library.
  153. * Serial streams flags names were renamed to fXxx.
  154. *
  155. * Names of flags
  156. *
  157. * Revision 1.6  2001/05/17 14:56:51  lavr
  158. * Typos corrected
  159. *
  160. * Revision 1.5  2000/10/20 15:51:23  vasilche
  161. * Fixed data error processing.
  162. * Added interface for constructing container objects directly into output stream.
  163. * object.hpp, object.inl and object.cpp were split to
  164. * objectinfo.*, objecttype.*, objectiter.* and objectio.*.
  165. *
  166. * Revision 1.4  2000/10/13 16:28:31  vasilche
  167. * Reduced header dependency.
  168. * Avoid use of templates with virtual methods.
  169. * Reduced amount of different maps used.
  170. * All this lead to smaller compiled code size (libraries and programs).
  171. *
  172. * Revision 1.3  2000/09/29 16:18:13  vasilche
  173. * Fixed binary format encoding/decoding on 64 bit compulers.
  174. * Implemented CWeakMap<> for automatic cleaning map entries.
  175. * Added cleaning local hooks via CWeakMap<>.
  176. * Renamed ReadTypeName -> ReadFileHeader, ENoTypeName -> ENoFileHeader.
  177. * Added some user interface methods to CObjectIStream, CObjectOStream and
  178. * CObjectStreamCopier.
  179. *
  180. * Revision 1.2  2000/09/18 20:00:03  vasilche
  181. * Separated CVariantInfo and CMemberInfo.
  182. * Implemented copy hooks.
  183. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  184. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  185. *
  186. * Revision 1.1  2000/09/01 13:15:59  vasilche
  187. * Implemented class/container/choice iterators.
  188. * Implemented CObjectStreamCopier for copying data without loading into memory.
  189. *
  190. * ===========================================================================
  191. */