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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: feat_config_inherited.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:46:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CONFIG___FEAT_CONFIG_INHERITED__HPP
  10. #define GUI_CONFIG___FEAT_CONFIG_INHERITED__HPP
  11. /*  $Id: feat_config_inherited.hpp,v 1000.1 2004/06/01 19:46:21 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.  * Authors:  Robert Smith
  37.  *
  38.  */
  39. /// @file feat_config_inherited.hpp
  40. #include <objects/seqfeat/SeqFeatData.hpp>
  41. /** @addtogroup GUI_CONFIG
  42.  *
  43.  * @{
  44.  */
  45. BEGIN_NCBI_SCOPE
  46. ///
  47. ///  Template for configured values, indexed by feature type and subtype
  48. ///  where values can inherit from master feature types.
  49. ///
  50. template <typename V>
  51. class CFeatConfigValues {
  52. public:
  53.     CFeatConfigValues();
  54.     explicit CFeatConfigValues(V masterdefault);
  55.     void    SetValue(int type, int subtype, V value);
  56.     V       GetValue(int type, int subtype) const;
  57.     
  58.     void    SetInherited(int type, int subtype, bool b);
  59.     bool    GetInherited(int type, int subtype) const;
  60.     
  61.     void    ClearValues();
  62.     
  63. private:
  64.     struct CFeatConfigValue {
  65.         V       m_Value;
  66.         bool    m_Inherited;
  67.     };
  68.     typedef pair<int, int> TPair;
  69.     typedef map<TPair, CFeatConfigValue> TFeatConfigValuesCont; 
  70.     
  71.     TFeatConfigValuesCont   m_FeatConfigValues;
  72. };
  73. // methods of template classes.
  74. template <typename V>
  75. CFeatConfigValues<V>::CFeatConfigValues() {
  76.     SetValue(objects::CSeqFeatData::e_not_set,
  77.              objects::CSeqFeatData::eSubtype_any, V());
  78. }
  79. template <typename V>
  80. CFeatConfigValues<V>::CFeatConfigValues(V masterdefault) {
  81.     SetValue(objects::CSeqFeatData::e_not_set,
  82.              objects::CSeqFeatData::eSubtype_any, masterdefault);
  83. }
  84. template <typename V>
  85. void CFeatConfigValues<V>::ClearValues()
  86. {
  87.     m_FeatConfigValues.clear();
  88. }
  89. template <typename V>
  90. void CFeatConfigValues<V>::SetValue(int type, int subtype, V value)
  91. {
  92.     m_FeatConfigValues[TPair(type, subtype)].m_Value = value;
  93. }
  94. template <typename V>
  95. V CFeatConfigValues<V>::GetValue(int type, int subtype) const
  96. {
  97.     typename TFeatConfigValuesCont::const_iterator endit
  98.         = m_FeatConfigValues.end();
  99.     typename TFeatConfigValuesCont::const_iterator fcit
  100.         = m_FeatConfigValues.find(TPair(type, subtype));
  101.     if (fcit == endit  ||  fcit->second.m_Inherited) {
  102.         fcit = m_FeatConfigValues.find
  103.             (TPair(type, objects::CSeqFeatData::eSubtype_any));
  104.         if (fcit == endit  ||  fcit->second.m_Inherited) {
  105.             fcit = m_FeatConfigValues.find
  106.                 (TPair(objects::CSeqFeatData::e_not_set,
  107.                        objects::CSeqFeatData::eSubtype_any));
  108.             _ASSERT(fcit != endit  &&  ! fcit->second.m_Inherited);
  109.         }
  110.     }
  111.     return fcit->second.m_Value;
  112. }
  113. template <typename V>
  114. void CFeatConfigValues<V>::SetInherited(int type, int subtype, bool inherit)
  115. {
  116.     m_FeatConfigValues[TPair(type, subtype)].m_Inherited = inherit;
  117. }
  118. template <typename V>
  119. bool CFeatConfigValues<V>::GetInherited(int type, int subtype) const
  120. {
  121.     typename TFeatConfigValuesCont::const_iterator fcit
  122.         = m_FeatConfigValues.find(TPair(type, subtype));
  123.     // not found is inherited.
  124.     return (fcit == m_FeatConfigValues.end())  ||  fcit->second.m_Inherited;
  125. }
  126. END_NCBI_SCOPE
  127. /* @} */
  128. /*
  129.  * ===========================================================================
  130.  *
  131.  * $Log: feat_config_inherited.hpp,v $
  132.  * Revision 1000.1  2004/06/01 19:46:21  gouriano
  133.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  134.  *
  135.  * Revision 1.3  2004/05/11 18:55:53  dicuccio
  136.  * Changed doxygen modules - use GUI_CONFIG instead of PluginConfiguration
  137.  *
  138.  * Revision 1.2  2003/12/29 15:34:45  ucko
  139.  * #include <SeqFeatData.hpp>
  140.  *
  141.  * Revision 1.1  2003/12/29 14:17:11  rsmith
  142.  * Seperated from feat_config.hpp/cpp
  143.  *
  144.  *
  145.  * ===========================================================================
  146.  */
  147. #endif  /* GUI_CONFIG___FEAT_CONFIG_INHERITED__HPP */