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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: mcontainer.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:43:17  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: mcontainer.cpp,v 1000.1 2004/06/01 19:43:17 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. *   Base class for module sets
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: mcontainer.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:43:17  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  43. *
  44. * Revision 1.6  2004/05/17 21:03:14  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.5  2000/08/25 15:59:22  vasilche
  48. * Renamed directory tool -> datatool.
  49. *
  50. * Revision 1.4  2000/04/07 19:26:28  vasilche
  51. * Added namespace support to datatool.
  52. * By default with argument -oR datatool will generate objects in namespace
  53. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  54. * Datatool's classes also moved to NCBI namespace.
  55. *
  56. * Revision 1.3  2000/02/01 21:48:02  vasilche
  57. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  58. * Removed CMemberInfo subclasses.
  59. * Added support for DEFAULT/OPTIONAL members.
  60. * Changed class generation.
  61. * Moved datatool headers to include/internal/serial/tool.
  62. *
  63. * Revision 1.2  1999/12/28 18:55:58  vasilche
  64. * Reduced size of compiled object files:
  65. * 1. avoid inline or implicit virtual methods (especially destructors).
  66. * 2. avoid std::string's methods usage in inline methods.
  67. * 3. avoid string literals ("xxx") in inline methods.
  68. *
  69. * Revision 1.1  1999/12/21 17:18:35  vasilche
  70. * Added CDelayedFostream class which rewrites file only if contents is changed.
  71. *
  72. * ===========================================================================
  73. */
  74. #include <ncbi_pch.hpp>
  75. #include <serial/datatool/mcontainer.hpp>
  76. #include <serial/datatool/namespace.hpp>
  77. BEGIN_NCBI_SCOPE
  78. CModuleContainer::CModuleContainer(void)
  79.     : m_Parent(0)
  80. {
  81. }
  82. CModuleContainer::~CModuleContainer(void)
  83. {
  84. }
  85. void CModuleContainer::SetModuleContainer(const CModuleContainer* parent)
  86. {
  87.     _ASSERT(m_Parent == 0 && parent != 0);
  88.     m_Parent = parent;
  89. }
  90. const CModuleContainer& CModuleContainer::GetModuleContainer(void) const
  91. {
  92.     _ASSERT(m_Parent != 0);
  93.     return *m_Parent;
  94. }
  95. const CNcbiRegistry& CModuleContainer::GetConfig(void) const
  96. {
  97.     return GetModuleContainer().GetConfig();
  98. }
  99. const string& CModuleContainer::GetSourceFileName(void) const
  100. {
  101.     return GetModuleContainer().GetSourceFileName();
  102. }
  103. string CModuleContainer::GetFileNamePrefix(void) const
  104. {
  105.     return GetModuleContainer().GetFileNamePrefix();
  106. }
  107. EFileNamePrefixSource CModuleContainer::GetFileNamePrefixSource(void) const
  108. {
  109.     return GetModuleContainer().GetFileNamePrefixSource();
  110. }
  111. CDataType* CModuleContainer::InternalResolve(const string& module,
  112.                                              const string& type) const
  113. {
  114.     return GetModuleContainer().InternalResolve(module, type);
  115. }
  116. const CNamespace& CModuleContainer::GetNamespace(void) const
  117. {
  118.     return GetModuleContainer().GetNamespace();
  119. }
  120. string CModuleContainer::GetNamespaceRef(const CNamespace& ns) const
  121. {
  122.     return m_Parent?
  123.         GetModuleContainer().GetNamespaceRef(ns):
  124.         GetNamespace().GetNamespaceRef(ns);
  125. }
  126. END_NCBI_SCOPE