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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: delaybuf.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:40:05  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: delaybuf.cpp,v 1000.1 2004/06/01 19:40:05 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: Eugene Vasilchenko
  35. *
  36. * File Description:
  37. *   !!! PUT YOUR DESCRIPTION HERE !!!
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: delaybuf.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:40:05  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  43. *
  44. * Revision 1.8  2004/05/17 21:03:02  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.7  2002/11/04 21:29:20  grichenk
  48. * Fixed usage of const CRef<> and CRef<> constructor
  49. *
  50. * Revision 1.6  2001/01/05 20:10:50  vasilche
  51. * CByteSource, CIStrBuffer, COStrBuffer, CLightString, CChecksum, CWeakMap
  52. * were moved to util.
  53. *
  54. * Revision 1.5  2000/09/18 20:00:21  vasilche
  55. * Separated CVariantInfo and CMemberInfo.
  56. * Implemented copy hooks.
  57. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  58. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  59. *
  60. * Revision 1.4  2000/08/15 19:44:47  vasilche
  61. * Added Read/Write hooks:
  62. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  63. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  64. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  65. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  66. *
  67. * Revision 1.3  2000/06/16 16:31:19  vasilche
  68. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  69. *
  70. * Revision 1.2  2000/05/03 14:38:13  vasilche
  71. * SERIAL: added support for delayed reading to generated classes.
  72. * DATATOOL: added code generation for delayed reading.
  73. *
  74. * Revision 1.1  2000/04/28 16:58:12  vasilche
  75. * Added classes CByteSource and CByteSourceReader for generic reading.
  76. * Added delayed reading of choice variants.
  77. *
  78. * ===========================================================================
  79. */
  80. #include <ncbi_pch.hpp>
  81. #include <corelib/ncbistd.hpp>
  82. #include <serial/delaybuf.hpp>
  83. #include <serial/objostr.hpp>
  84. #include <serial/objistr.hpp>
  85. #include <util/bytesrc.hpp>
  86. #include <serial/item.hpp>
  87. #include <serial/stdtypes.hpp>
  88. BEGIN_NCBI_SCOPE
  89. CDelayBuffer::~CDelayBuffer(void)
  90. {
  91. }
  92. void CDelayBuffer::SetData(const CItemInfo* itemInfo, TObjectPtr object,
  93.                            ESerialDataFormat dataFormat,
  94.                            CByteSource& data)
  95. {
  96.     _ASSERT(!Delayed());
  97.     m_Info.reset(new SInfo(itemInfo, object, dataFormat, data));
  98. }
  99. void CDelayBuffer::Forget(void)
  100. {
  101.     _ASSERT(m_Info.get() != 0);
  102.     m_Info.reset(0);
  103. }
  104. void CDelayBuffer::DoUpdate(void)
  105. {
  106.     _ASSERT(m_Info.get() != 0);
  107.     SInfo& info = *m_Info;
  108.     {
  109.         auto_ptr<CObjectIStream> in(CObjectIStream::Create(info.m_DataFormat,
  110.                                                            *info.m_Source));
  111.         info.m_ItemInfo->UpdateDelayedBuffer(*in, info.m_Object);
  112.     }
  113.     Forget();
  114. }
  115. TMemberIndex CDelayBuffer::GetIndex(void) const
  116. {
  117.     const SInfo* info = m_Info.get();
  118.     if ( !info )
  119.         return kInvalidMember;
  120.     else
  121.         return info->m_ItemInfo->GetIndex();
  122. }
  123. CDelayBuffer::SInfo::SInfo(const CItemInfo* itemInfo, TObjectPtr object,
  124.                            ESerialDataFormat format,
  125.                            CByteSource& source)
  126.     : m_ItemInfo(itemInfo), m_Object(object),
  127.       m_DataFormat(format), m_Source(&source)
  128. {
  129. }
  130. CDelayBuffer::SInfo::~SInfo(void)
  131. {
  132. }
  133. END_NCBI_SCOPE