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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: igraph_data.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:49:27  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: igraph_data.cpp,v 1000.1 2004/06/01 20:49:27 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:  Andrey Yazhuk
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/graph/igraph_data.hpp>
  41. BEGIN_NCBI_SCOPE
  42. ///////////////////////////////////////////////////////////////////////////////
  43. /// IDataArray
  44. IDataArray::~IDataArray()
  45. {
  46. };
  47. ///////////////////////////////////////////////////////////////////////////////
  48. /// class CSeriesBase
  49. CSeriesBase::CSeriesBase()
  50. : m_Length(0)
  51. {
  52. }
  53. CSeriesBase::CSeriesBase(int Length)
  54. : m_Length(Length)
  55. {
  56. }
  57. CSeriesBase::~CSeriesBase()
  58. {
  59.     RemoveAllArrays();
  60. }
  61. int CSeriesBase::GetLength() const
  62. {   
  63.     return m_Length;    
  64. }
  65. int CSeriesBase::GetArraysCount() const
  66. {
  67.     return m_vpArrays.size();
  68. }
  69. CSeriesBase::EDataType   CSeriesBase::GetArrayType(int iArray) const
  70. {
  71.     AssertArrayIndex(iArray);
  72.     return m_vpArrays[iArray]->GetType();
  73. }
  74. //*string  GetArrayName(int iArray) const
  75. IDataArray* CSeriesBase::GetArray(int iArray) const
  76. {
  77.     AssertArrayIndex(iArray);
  78.     return m_vpArrays[iArray];
  79. }
  80. //int     GetIndexByName(const string& Name);
  81. void    CSeriesBase::CreateArrays() 
  82. {
  83.     RemoveAllArrays();
  84. }
  85. void    CSeriesBase::CreateArrays(int Length)
  86. {
  87.     m_Length = Length;
  88.     CreateArrays();    
  89. }
  90. void    CSeriesBase::AddArray(/*const string& Name,*/ IDataArray* pArray)
  91. {
  92.     //###_ASSERT(pArray && pArray->GetSize()==m_Length);
  93.     m_vpArrays.push_back(pArray);
  94. }
  95. void    CSeriesBase::InsertArray(int iArray,/* const string& Name,*/ IDataArray* pArray)
  96. {
  97.     _ASSERT(pArray && pArray->GetSize()==m_Length);
  98.     AssertArrayIndex(iArray);
  99.     m_vpArrays.insert(m_vpArrays.begin() + iArray, pArray);
  100. }
  101. void    CSeriesBase::RemoveAllArrays()
  102. {
  103.     NON_CONST_ITERATE(vector<IDataArray*>, it, m_vpArrays)    {
  104.         delete *it;
  105.     }
  106. }
  107.     
  108. // type-safe functions returning specialized arrays
  109. INumericArray*  CSeriesBase::x_GetNumericArray(int iArray)
  110. {
  111.     AssertArrayIndex(iArray);
  112.     IDataArray* pAr = m_vpArrays[iArray];
  113.     return dynamic_cast<INumericArray*>(pAr);
  114. }
  115. IStringArray*   CSeriesBase::x_GetStringArray(int iArray)
  116. {
  117.     AssertArrayIndex(iArray);
  118.     IDataArray* pAr = m_vpArrays[iArray];
  119.     return dynamic_cast<IStringArray*>(pAr);
  120. }
  121. IColorArray*    CSeriesBase::x_GetColorArray(int iArray)
  122. {
  123.     AssertArrayIndex(iArray);
  124.     IDataArray* pAr = m_vpArrays[iArray];
  125.     return dynamic_cast<IColorArray*>(pAr);
  126. }
  127. IPointerArray*  CSeriesBase::x_GetPointerArray(int iArray)
  128. {
  129.     AssertArrayIndex(iArray);
  130.     IDataArray* pAr = m_vpArrays[iArray];
  131.     return dynamic_cast<IPointerArray*>(pAr);
  132. }
  133. END_NCBI_SCOPE
  134. /*
  135.  * ===========================================================================
  136.  * $Log: igraph_data.cpp,v $
  137.  * Revision 1000.1  2004/06/01 20:49:27  gouriano
  138.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  139.  *
  140.  * Revision 1.4  2004/05/21 22:27:42  gorelenk
  141.  * Added PCH ncbi_pch.hpp
  142.  *
  143.  * Revision 1.3  2003/08/11 16:10:57  yazhuk
  144.  * Compilation fixes for GCC
  145.  *
  146.  * Revision 1.2  2003/08/08 15:59:36  yazhuk
  147.  * Comments added
  148.  *
  149.  * ===========================================================================
  150.  */
  151.