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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: delaybuf.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:21:43  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef DELAYBUF__HPP
  10. #define DELAYBUF__HPP
  11. /*  $Id: delaybuf.hpp,v 1000.0 2003/10/29 17:21:43 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 <corelib/ncbiobj.hpp>
  43. #include <serial/serialdef.hpp>
  44. #include <memory>
  45. /** @addtogroup UserCodeSupport
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. class CByteSource;
  51. class CItemInfo;
  52. class NCBI_XSERIAL_EXPORT CDelayBuffer
  53. {
  54. public:
  55.     CDelayBuffer(void)
  56.         {
  57.         }
  58.     ~CDelayBuffer(void);
  59.     bool Delayed(void) const
  60.         {
  61.             return m_Info.get() != 0;
  62.         }
  63.     operator bool(void) const
  64.         {
  65.             return Delayed();
  66.         }
  67.     bool operator!(void) const
  68.         {
  69.             return !Delayed();
  70.         }
  71.     void Forget(void);
  72.     
  73.     void Update(void)
  74.         {
  75.             if ( Delayed() )
  76.                 DoUpdate();
  77.         }
  78.     bool HaveFormat(ESerialDataFormat format) const
  79.         {
  80.             const SInfo* info = m_Info.get();
  81.             return info && info->m_DataFormat == format;
  82.         }
  83.     CByteSource& GetSource(void) const
  84.         {
  85.             return *m_Info->m_Source;
  86.         }
  87.     TMemberIndex GetIndex(void) const;
  88.     void SetData(const CItemInfo* itemInfo, TObjectPtr object,
  89.                  ESerialDataFormat dataFormat, CByteSource& data);
  90. private:
  91.     struct SInfo
  92.     {
  93.     public:
  94.         SInfo(const CItemInfo* itemInfo, TObjectPtr object,
  95.               ESerialDataFormat dataFormat, CByteSource& source);
  96.         ~SInfo(void);
  97.         // member info
  98.         const CItemInfo* m_ItemInfo;
  99.         // main object
  100.         TObjectPtr m_Object;
  101.         // data format
  102.         ESerialDataFormat m_DataFormat;
  103.         // data source
  104.         mutable CRef<CByteSource> m_Source;
  105.     };
  106.     // private method declarations to prevent implicit generation by compiler
  107.     CDelayBuffer(const CDelayBuffer&);
  108.     CDelayBuffer& operator==(const CDelayBuffer&);
  109.     static void* operator new(size_t);
  110.     void DoUpdate(void);
  111.     auto_ptr<SInfo> m_Info;
  112. };
  113. /* @} */
  114. //#include <serial/delaybuf.inl>
  115. END_NCBI_SCOPE
  116. #endif  /* DELAYBUF__HPP */
  117. /* ---------------------------------------------------------------------------
  118. * $Log: delaybuf.hpp,v $
  119. * Revision 1000.0  2003/10/29 17:21:43  gouriano
  120. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.8
  121. *
  122. * Revision 1.8  2003/04/15 14:15:07  siyan
  123. * Added doxygen support
  124. *
  125. * Revision 1.7  2002/12/23 18:38:50  dicuccio
  126. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  127. * Moved all CVS logs to the end.
  128. *
  129. * Revision 1.6  2002/11/04 21:28:59  grichenk
  130. * Fixed usage of const CRef<> and CRef<> constructor
  131. *
  132. * Revision 1.5  2000/09/18 20:00:01  vasilche
  133. * Separated CVariantInfo and CMemberInfo.
  134. * Implemented copy hooks.
  135. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  136. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  137. *
  138. * Revision 1.4  2000/08/15 19:44:38  vasilche
  139. * Added Read/Write hooks:
  140. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  141. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  142. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  143. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  144. *
  145. * Revision 1.3  2000/06/16 16:31:04  vasilche
  146. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  147. *
  148. * Revision 1.2  2000/06/01 19:06:55  vasilche
  149. * Added parsing of XML data.
  150. *
  151. * Revision 1.1  2000/04/28 16:58:01  vasilche
  152. * Added classes CByteSource and CByteSourceReader for generic reading.
  153. * Added delayed reading of choice variants.
  154. *
  155. * ===========================================================================
  156. */