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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: hookfunc.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:22:39  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef HOOKFUNC__HPP
  10. #define HOOKFUNC__HPP
  11. /*  $Id: hookfunc.hpp,v 1000.0 2003/10/29 17:22:39 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. /** @addtogroup HookSupport
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. class CObjectIStream;
  49. class CObjectOStream;
  50. class CObjectStreamCopier;
  51. class CTypeInfo;
  52. class CMemberInfo;
  53. class CVariantInfo;
  54. typedef void (*TTypeReadFunction)(CObjectIStream& in,
  55.                                   const CTypeInfo* objectType,
  56.                                   TObjectPtr objectPtr);
  57. typedef void (*TTypeWriteFunction)(CObjectOStream& out,
  58.                                    const CTypeInfo* objectType,
  59.                                    TConstObjectPtr objectPtr);
  60. typedef void (*TTypeCopyFunction)(CObjectStreamCopier& copier,
  61.                                   const CTypeInfo* objectType);
  62. typedef void (*TTypeSkipFunction)(CObjectIStream& in,
  63.                                   const CTypeInfo* objectType);
  64. typedef void (*TMemberReadFunction)(CObjectIStream& in,
  65.                                     const CMemberInfo* memberInfo,
  66.                                     TObjectPtr classPtr);
  67. typedef void (*TMemberWriteFunction)(CObjectOStream& out,
  68.                                      const CMemberInfo* memberInfo,
  69.                                      TConstObjectPtr classPtr);
  70. typedef void (*TMemberCopyFunction)(CObjectStreamCopier& copier,
  71.                                     const CMemberInfo* memberInfo);
  72. typedef void (*TMemberSkipFunction)(CObjectIStream& in,
  73.                                     const CMemberInfo* memberInfo);
  74. struct SMemberReadFunctions
  75. {
  76.     SMemberReadFunctions(TMemberReadFunction main = 0,
  77.                          TMemberReadFunction missing = 0)
  78.         : m_Main(main), m_Missing(missing)
  79.         {
  80.         }
  81.     TMemberReadFunction m_Main, m_Missing;
  82. };
  83. struct SMemberSkipFunctions
  84. {
  85.     SMemberSkipFunctions(TMemberSkipFunction main = 0,
  86.                          TMemberSkipFunction missing = 0)
  87.         : m_Main(main), m_Missing(missing)
  88.         {
  89.         }
  90.     TMemberSkipFunction m_Main, m_Missing;
  91. };
  92. struct SMemberCopyFunctions
  93. {
  94.     SMemberCopyFunctions(TMemberCopyFunction main = 0,
  95.                          TMemberCopyFunction missing = 0)
  96.         : m_Main(main), m_Missing(missing)
  97.         {
  98.         }
  99.     TMemberCopyFunction m_Main, m_Missing;
  100. };
  101. typedef void (*TVariantReadFunction)(CObjectIStream& in,
  102.                                      const CVariantInfo* variantInfo,
  103.                                      TObjectPtr classPtr);
  104. typedef void (*TVariantWriteFunction)(CObjectOStream& out,
  105.                                       const CVariantInfo* variantInfo,
  106.                                       TConstObjectPtr classPtr);
  107. typedef void (*TVariantCopyFunction)(CObjectStreamCopier& copier,
  108.                                      const CVariantInfo* variantInfo);
  109. typedef void (*TVariantSkipFunction)(CObjectIStream& in,
  110.                                      const CVariantInfo* variantInfo);
  111. /* @} */
  112. //#include <serial/hookfunc.inl>
  113. END_NCBI_SCOPE
  114. #endif  /* HOOKFUNC__HPP */
  115. /* ---------------------------------------------------------------------------
  116. * $Log: hookfunc.hpp,v $
  117. * Revision 1000.0  2003/10/29 17:22:39  gouriano
  118. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  119. *
  120. * Revision 1.6  2003/07/29 18:47:46  vasilche
  121. * Fixed thread safeness of object stream hooks.
  122. *
  123. * Revision 1.5  2003/04/15 14:50:09  ucko
  124. * Add missing close-comment delimiter!
  125. *
  126. * Revision 1.4  2003/04/15 14:15:18  siyan
  127. * Added doxygen support
  128. *
  129. * Revision 1.3  2003/03/26 16:13:32  vasilche
  130. * Removed TAB symbols. Some formatting.
  131. *
  132. * Revision 1.2  2002/12/23 18:38:51  dicuccio
  133. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  134. * Moved all CVS logs to the end.
  135. *
  136. * Revision 1.1  2000/10/03 17:22:31  vasilche
  137. * Reduced header dependency.
  138. * Reduced size of debug libraries on WorkShop by 3 times.
  139. * Fixed tag allocation for parent classes.
  140. * Fixed CObject allocation/deallocation in streams.
  141. * Moved instantiation of several templates in separate source file.
  142. *
  143. * ===========================================================================
  144. */