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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: blob_splitter_impl.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:33:29  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef NCBI_OBJMGR_SPLIT_BLOB_SPLITTER_IMPL__HPP
  10. #define NCBI_OBJMGR_SPLIT_BLOB_SPLITTER_IMPL__HPP
  11. /*  $Id: blob_splitter_impl.hpp,v 1000.0 2004/04/12 17:33:29 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. *   Application for splitting blobs withing ID1 cache
  40. *
  41. * ===========================================================================
  42. */
  43. #include <corelib/ncbistd.hpp>
  44. #include <corelib/ncbiobj.hpp>
  45. #include <memory>
  46. #include <map>
  47. #include <vector>
  48. #include <objmgr/split/blob_splitter_params.hpp>
  49. #include <objmgr/split/split_blob.hpp>
  50. #include <objmgr/split/chunk_info.hpp>
  51. #include <objmgr/split/object_splitinfo.hpp>
  52. #include <objmgr/split/size.hpp>
  53. BEGIN_NCBI_SCOPE
  54. class CObjectOStream;
  55. BEGIN_SCOPE(objects)
  56. class CSeq_entry;
  57. class CBioseq;
  58. class CBioseq_set;
  59. class CSeq_annot;
  60. class CSeq_feat;
  61. class CSeq_align;
  62. class CSeq_graph;
  63. class CID2S_Split_Info;
  64. class CID2S_Chunk_Id;
  65. class CID2S_Chunk;
  66. class CBlobSplitter;
  67. class CBlobSplitterImpl;
  68. class CAnnotObject_SplitInfo;
  69. class CLocObjects_SplitInfo;
  70. class CSeq_annot_SplitInfo;
  71. class CBioseq_SplitInfo;
  72. struct SAnnotPiece;
  73. struct SIdAnnotPieces;
  74. class CAnnotPieces;
  75. struct SChunkInfo;
  76. class CBlobSplitterImpl
  77. {
  78. public:
  79.     CBlobSplitterImpl(const SSplitterParams& params);
  80.     ~CBlobSplitterImpl(void);
  81.     typedef map<int, CBioseq_SplitInfo> TBioseqs;
  82.     typedef map<int, SChunkInfo> TChunks;
  83.     typedef map<CID2S_Chunk_Id, CRef<CID2S_Chunk> > TID2Chunks;
  84.     bool Split(const CSeq_entry& entry);
  85.     const CSplitBlob& GetBlob(void) const
  86.         {
  87.             return m_SplitBlob;
  88.         }
  89.     void Reset(void);
  90.     void CopySkeleton(CSeq_entry& dst, const CSeq_entry& src);
  91.     void CopySkeleton(CBioseq_set& dst, const CBioseq_set& src);
  92.     void CopySkeleton(CBioseq& dst, const CBioseq& src);
  93.     bool CopyAnnot(CBioseq_SplitInfo& bioseq_info, const CSeq_annot& annot);
  94.     void CollectPieces(void);
  95.     void SplitPieces(void);
  96.     void MakeID2SObjects(void);
  97.     void AttachToSkeleton(const SChunkInfo& info);
  98.     static size_t CountAnnotObjects(const CSeq_annot& annot);
  99.     static size_t CountAnnotObjects(const CSeq_entry& entry);
  100.     static size_t CountAnnotObjects(const CID2S_Chunk& chunk);
  101.     static size_t CountAnnotObjects(const TID2Chunks& chunks);
  102.     typedef vector<CAnnotObject_SplitInfo> TAnnotObjects;
  103.     CRef<CSeq_annot> MakeSeq_annot(const CSeq_annot& src,
  104.                                    const TAnnotObjects& objs);
  105.     void MakeID2Chunk(int id, const SChunkInfo& info);
  106.     SChunkInfo* NextChunk(SChunkInfo* chunk, const CSize& size);
  107. private:
  108.     // params
  109.     SSplitterParams m_Params;
  110.     // split result
  111.     CSplitBlob m_SplitBlob;
  112.     // split state
  113.     CRef<CSeq_entry> m_Skeleton;
  114.     CRef<CID2S_Split_Info> m_Split_Info;
  115.     TID2Chunks m_ID2_Chunks;
  116.     int m_NextBioseq_set_Id;
  117.     TBioseqs m_Bioseqs;
  118.     AutoPtr<CAnnotPieces> m_Pieces;
  119.     TChunks m_Chunks;
  120. };
  121. END_SCOPE(objects)
  122. END_NCBI_SCOPE
  123. /*
  124. * ---------------------------------------------------------------------------
  125. * $Log: blob_splitter_impl.hpp,v $
  126. * Revision 1000.0  2004/04/12 17:33:29  gouriano
  127. * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.6
  128. *
  129. * Revision 1.6  2004/01/07 17:36:19  vasilche
  130. * Moved id2_split headers to include/objmgr/split.
  131. * Fixed include path to genbank.
  132. *
  133. * Revision 1.5  2003/12/03 19:40:57  kuznets
  134. * Minor file rename
  135. *
  136. * Revision 1.4  2003/12/03 19:30:44  kuznets
  137. * Misprint fixed
  138. *
  139. * Revision 1.3  2003/12/02 19:12:23  vasilche
  140. * Fixed compilation on MSVC.
  141. *
  142. * Revision 1.2  2003/11/26 23:04:58  vasilche
  143. * Removed extra semicolons after BEGIN_SCOPE and END_SCOPE.
  144. *
  145. * Revision 1.1  2003/11/12 16:18:27  vasilche
  146. * First implementation of ID2 blob splitter withing cache.
  147. *
  148. * ===========================================================================
  149. */
  150. #endif//NCBI_OBJMGR_SPLIT_BLOB_SPLITTER_IMPL__HPP