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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: serialobj_doc.cpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 20:44:42  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: serialobj_doc.cpp,v 1000.4 2004/06/01 20:44:42 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.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CSerialObjDocument -- document specific for sequence annotment data
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "serialobj_doc.hpp"
  41. #include <serial/serial.hpp>
  42. #include <serial/objostrasn.hpp>
  43. #include <gui/core/plugin_utils.hpp>
  44. BEGIN_NCBI_SCOPE
  45. USING_SCOPE(objects);
  46. CSerialObjDocument::CSerialObjDocument(CScope& scope,
  47.                                        const CSerialObject& obj)
  48. {
  49.     _TRACE("CSerialObjDocument(" << obj.GetThisTypeInfo()->GetName() << ")");
  50.     m_Scope.Reset(&scope);
  51.     m_Object.Reset(const_cast<CSerialObject*> (&obj));
  52.     m_Title      = x_GetTitle();
  53.     m_ShortTitle = x_GetShortTitle();
  54. }
  55. CSerialObjDocument::~CSerialObjDocument()
  56. {
  57. }
  58. //
  59. // retrieve a full title describing our object
  60. //
  61. string CSerialObjDocument::x_GetTitle(void) const
  62. {
  63.     if ( !m_Object ) {
  64.         return string("empty document");
  65.     }
  66.     return CPluginUtils::GetLabel(*m_Object, m_Scope);
  67. }
  68. string CSerialObjDocument::x_GetShortTitle(void) const
  69. {
  70.     if ( !m_Object ) {
  71.         return string("empty document");
  72.     }
  73.     return m_Object->GetThisTypeInfo()->GetName();
  74. }
  75. // serialization: write our contents to a stream
  76. void CSerialObjDocument::Write(CObjectOStream& os) const
  77. {
  78.     if ( !m_Scope  ||  !m_Object ) {
  79.         return;
  80.     }
  81.     os.Write(m_Object.GetPointer(), m_Object->GetThisTypeInfo());
  82. }
  83. END_NCBI_SCOPE
  84. /*
  85.  * ===========================================================================
  86.  * $Log: serialobj_doc.cpp,v $
  87.  * Revision 1000.4  2004/06/01 20:44:42  gouriano
  88.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  89.  *
  90.  * Revision 1.5  2004/05/21 22:27:40  gorelenk
  91.  * Added PCH ncbi_pch.hpp
  92.  *
  93.  * Revision 1.4  2004/01/07 15:49:32  dicuccio
  94.  * Adjusted for API change in CPluginUtils::GetLabel()
  95.  *
  96.  * Revision 1.3  2003/11/06 20:06:29  dicuccio
  97.  * Moved USING_SCOPE(objects) to implementation files
  98.  *
  99.  * Revision 1.2  2003/11/04 12:44:09  friedman
  100.  * Explicit destructor added
  101.  *
  102.  * Revision 1.1  2003/09/16 14:00:31  dicuccio
  103.  * Initial revision
  104.  *
  105.  * Revision 1.7  2003/07/25 14:57:53  kuznets
  106.  * Added m_Object->CanGetDesc() protection (x_GetShortTitle)
  107.  *
  108.  * Revision 1.6  2003/06/25 17:02:54  dicuccio
  109.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  110.  * implementation file.  Lots of #include file clean-ups.
  111.  *
  112.  * Revision 1.5  2003/06/17 15:35:42  kuznets
  113.  * Added checking if annotation has the valid description
  114.  * CSerialObjDocument::x_GetTitle(void)
  115.  *
  116.  * Revision 1.4  2003/06/02 16:06:18  dicuccio
  117.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  118.  *     - src/objects/asn2asn --> arc/app/asn2asn
  119.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  120.  *     - src/objects/objmgr --> src/objmgr
  121.  *     - src/objects/util --> src/objmgr/util
  122.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  123.  *     - src/objects/flat --> src/objtools/flat
  124.  *     - src/objects/validator --> src/objtools/validator
  125.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  126.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  127.  * replaces the three libmmdb? libs.
  128.  *
  129.  * Revision 1.3  2003/05/19 13:35:59  dicuccio
  130.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged gui/core/algo, gui/core/doc/,
  131.  * and gui/core/view/ into one library (gui/core/)
  132.  *
  133.  * Revision 1.2  2003/04/29 14:46:09  dicuccio
  134.  * Removed last vestiges of old typing system
  135.  *
  136.  * Revision 1.1  2003/04/24 16:25:00  dicuccio
  137.  * Initial revision
  138.  *
  139.  * ===========================================================================
  140.  */