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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gb_release_file.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:36:32  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gb_release_file.cpp,v 1000.0 2004/06/01 19:36:32 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:  Mati Shomrat
  35. * File Description:
  36. *   Utility class for processing Genbank release files.
  37. *
  38. */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbistd.hpp>
  41. #include <serial/objhook.hpp>
  42. #include <serial/objistr.hpp>
  43. #include <serial/objectiter.hpp>
  44. #include <serial/objectio.hpp>
  45. #include <objects/seqset/Seq_entry.hpp>
  46. #include <objects/seqset/Bioseq_set.hpp>
  47. #include <vector>
  48. #include <algorithm>
  49. #include <objects/seqset/gb_release_file.hpp>
  50. BEGIN_NCBI_SCOPE
  51. USING_SCOPE(objects);
  52. ////////////////////////////////////////////////////////////////////////////
  53. //
  54. //  CGBReleaseFileImpl
  55. class CGBReleaseFileImpl : public CReadClassMemberHook
  56. {
  57. public:
  58.     typedef CGBReleaseFile::ISeqEntryHandler*   THandler;
  59.     CGBReleaseFileImpl(const string& file_name);
  60.     void Read(void);
  61.     void RegisterHandler(THandler handler);
  62.     virtual void ReadClassMember(CObjectIStream& in, const CObjectInfoMI& member);
  63. private:
  64.     THandler                    m_Handler;
  65.     auto_ptr<CObjectIStream>    m_In;
  66.     CBioseq_set                 m_Seqset;
  67.     bool                        m_Stopped;
  68. };
  69. CGBReleaseFileImpl::CGBReleaseFileImpl(const string& file_name) :
  70.     m_In(CObjectIStream::Open(file_name, eSerial_AsnBinary)),
  71.     m_Stopped(false)
  72. {
  73.     _ASSERT(m_In.get() != 0  &&  m_In->InGoodState());
  74. }
  75. void CGBReleaseFileImpl::RegisterHandler(THandler handler)
  76. {
  77.     m_Handler = handler;
  78. }
  79. void CGBReleaseFileImpl::Read(void)
  80. {
  81.     // install the read hook on the top level Bioseq-set's sequence of entries
  82.     CObjectTypeInfo info(CBioseq_set::GetTypeInfo());
  83.     info.FindMember("seq-set").SetLocalReadHook(*m_In, this);
  84.     
  85.     try {
  86.         // read in the file, this will execute the handler's code for each
  87.         // Seq-entry read.
  88.         m_In->Read(&m_Seqset, CBioseq_set::GetTypeInfo());
  89.     } catch (const CException&) {
  90.         if ( !m_Stopped ) {
  91.             throw;
  92.         }
  93.     }
  94. }
  95. void CGBReleaseFileImpl::ReadClassMember
  96. (CObjectIStream& in,
  97.  const CObjectInfoMI& member)
  98. {
  99.     // remove the read hook
  100.     member.ResetLocalReadHook(in);
  101.     // iterate over the sequence of entries
  102.     for ( CIStreamContainerIterator it(in, member); it; ++it ) {
  103.         CRef<CSeq_entry> se(new CSeq_entry);
  104.         it >> *se;
  105.         if ( se ) {
  106.             if ( !m_Handler->HandleSeqEntry(se) ) {
  107.                 m_Stopped = true;
  108.                 break;
  109.             }
  110.         }
  111.     }
  112. }
  113. /////////////////////////////////////////////////////////////////////////////
  114. //
  115. //  CGBReleaseFile
  116. CGBReleaseFile::CGBReleaseFile(const string& file_name) :
  117.     m_Impl(new CGBReleaseFileImpl(file_name))
  118. {
  119.     _ASSERT(m_Impl);
  120. }
  121. CGBReleaseFile::~CGBReleaseFile(void)
  122. {
  123. }
  124. void CGBReleaseFile::Read(void)
  125. {
  126.     x_GetImpl().Read();
  127. }
  128. void CGBReleaseFile::RegisterHandler(ISeqEntryHandler* handler)
  129. {
  130.     x_GetImpl().RegisterHandler(handler);
  131. }
  132. CGBReleaseFileImpl& CGBReleaseFile::x_GetImpl(void)
  133. {
  134.     return reinterpret_cast<CGBReleaseFileImpl&>(*m_Impl);
  135. }
  136. END_NCBI_SCOPE
  137. /*
  138. * ===========================================================================
  139. *
  140. * $Log: gb_release_file.cpp,v $
  141. * Revision 1000.0  2004/06/01 19:36:32  gouriano
  142. * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  143. *
  144. * Revision 1.2  2004/05/19 17:26:48  gorelenk
  145. * Added include of PCH - ncbi_pch.hpp
  146. *
  147. * Revision 1.1  2004/05/19 14:41:29  shomrat
  148. * Initial Revision
  149. *
  150. *
  151. * ===========================================================================
  152. */