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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: chunk_info.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:24:58  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: chunk_info.cpp,v 1000.2 2004/06/01 19:24:58 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. *   Application for splitting blobs withing ID1 cache
  38. *
  39. * ===========================================================================
  40. */
  41. #include <ncbi_pch.hpp>
  42. #include <objmgr/split/chunk_info.hpp>
  43. #include <objmgr/split/object_splitinfo.hpp>
  44. #include <objmgr/split/annot_piece.hpp>
  45. BEGIN_NCBI_SCOPE
  46. BEGIN_SCOPE(objects)
  47. void SChunkInfo::Add(const CSeq_annot_SplitInfo& info)
  48. {
  49.     _TRACE("SChunkInfo::Add(const CSeq_annot_SplitInfo&)");
  50.     TAnnotObjects& objs = m_Annots[info.m_Id][info.m_Src_annot];
  51.     Add(objs, info.m_LandmarkObjects);
  52.     Add(objs, info.m_ComplexLocObjects);
  53.     ITERATE ( TSimpleLocObjects, it, info.m_SimpleLocObjects ) {
  54.         Add(objs, it->second);
  55.     }
  56. }
  57. void SChunkInfo::Add(TAnnotObjects& objs, const CLocObjects_SplitInfo& info)
  58. {
  59.     _TRACE("SChunkInfo::Add(TAnnotObjects& objst, CLocObjects_SplitInfo&)");
  60.     ITERATE ( CLocObjects_SplitInfo, it, info ) {
  61.         objs.push_back(*it);
  62.         m_Size += it->m_Size;
  63.     }
  64. }
  65. void SChunkInfo::Add(const SAnnotPiece& piece)
  66. {
  67.     _TRACE("SChunkInfo::Add(const SAnnotPiece&)");
  68.     const CSeq_annot_SplitInfo& info = *piece.m_Seq_annot;
  69.     if ( piece.m_Object ) {
  70.         TAnnotObjects& objs = m_Annots[info.m_Id][info.m_Src_annot];
  71.         objs.push_back(*piece.m_Object);
  72.         m_Size += piece.m_Size;
  73.     }
  74.     else {
  75.         Add(info);
  76.     }
  77. }
  78. void SChunkInfo::Add(const SIdAnnotPieces& pieces)
  79. {
  80.     _TRACE("SChunkInfo::Add(const SIdAnnotPieces&)");
  81.     ITERATE ( SIdAnnotPieces, it, pieces ) {
  82.         Add(*it);
  83.     }
  84. }
  85. size_t SChunkInfo::CountAnnotObjects(void) const
  86. {
  87.     size_t count = 0;
  88.     ITERATE ( TChunkAnnots, i, m_Annots ) {
  89.         ITERATE ( TIdAnnots, j, i->second ) {
  90.             count += j->second.size();
  91.         }
  92.     }
  93.     return count;
  94. }
  95. END_SCOPE(objects)
  96. END_NCBI_SCOPE
  97. /*
  98. * ---------------------------------------------------------------------------
  99. * $Log: chunk_info.cpp,v $
  100. * Revision 1000.2  2004/06/01 19:24:58  gouriano
  101. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  102. *
  103. * Revision 1.4  2004/05/21 21:42:14  gorelenk
  104. * Added PCH ncbi_pch.hpp
  105. *
  106. * Revision 1.3  2004/01/07 17:36:25  vasilche
  107. * Moved id2_split headers to include/objmgr/split.
  108. * Fixed include path to genbank.
  109. *
  110. * Revision 1.2  2003/11/26 23:04:58  vasilche
  111. * Removed extra semicolons after BEGIN_SCOPE and END_SCOPE.
  112. *
  113. * Revision 1.1  2003/11/12 16:18:29  vasilche
  114. * First implementation of ID2 blob splitter withing cache.
  115. *
  116. * ===========================================================================
  117. */