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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: exceptions.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:43:02  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: exceptions.cpp,v 1000.1 2004/06/01 19:43:02 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. *   datatool exceptions
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: exceptions.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:43:02  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  43. *
  44. * Revision 1.8  2004/05/17 21:03:14  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.7  2003/03/11 20:06:47  kuznets
  48. * iterate -> ITERATE
  49. *
  50. * Revision 1.6  2003/03/10 18:55:18  gouriano
  51. * use new structured exceptions (based on CException)
  52. *
  53. * Revision 1.5  2000/09/26 17:38:26  vasilche
  54. * Fixed incomplete choiceptr implementation.
  55. * Removed temporary comments.
  56. *
  57. * Revision 1.4  2000/08/25 15:59:21  vasilche
  58. * Renamed directory tool -> datatool.
  59. *
  60. * Revision 1.3  2000/07/10 17:31:59  vasilche
  61. * Macro arguments made more clear.
  62. * All old ASN stuff moved to serialasn.hpp.
  63. * Changed prefix of enum info functions to GetTypeInfo_enum_.
  64. *
  65. * Revision 1.2  2000/04/07 19:26:26  vasilche
  66. * Added namespace support to datatool.
  67. * By default with argument -oR datatool will generate objects in namespace
  68. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  69. * Datatool's classes also moved to NCBI namespace.
  70. *
  71. * Revision 1.1  2000/03/15 21:24:12  vasilche
  72. * Error diagnostic about ambiguous types made more clear.
  73. *
  74. * Revision 1.1  2000/02/01 21:46:17  vasilche
  75. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  76. * Removed CMemberInfo subclasses.
  77. * Added support for DEFAULT/OPTIONAL members.
  78. * Changed class generation.
  79. * Moved datatool headers to include/internal/serial/tool.
  80. *
  81. * Revision 1.3  1999/11/15 19:36:14  vasilche
  82. * Fixed warnings on GCC
  83. *
  84. * ===========================================================================
  85. */
  86. #include <ncbi_pch.hpp>
  87. #include <serial/datatool/exceptions.hpp>
  88. #include <serial/datatool/type.hpp>
  89. #include <corelib/ncbiutil.hpp>
  90. BEGIN_NCBI_SCOPE
  91. CResolvedTypeSet::CResolvedTypeSet(const string& name)
  92.     : m_Name(name)
  93. {
  94. }
  95. CResolvedTypeSet::CResolvedTypeSet(const string& module, const string& name)
  96.     : m_Module(module), m_Name(name)
  97. {
  98. }
  99. CResolvedTypeSet::~CResolvedTypeSet(void)
  100. {
  101. }
  102. void CResolvedTypeSet::Add(CDataType* type)
  103. {
  104.     m_Types.push_back(type);
  105. }
  106. void CResolvedTypeSet::Add(const CAmbiguiousTypes& types)
  107. {
  108.     ITERATE ( list<CDataType*>, i, types.GetTypes() ) {
  109.         m_Types.push_back(*i);
  110.     }
  111. }
  112. CDataType* CResolvedTypeSet::GetType(void) const throw(CDatatoolException)
  113. {
  114.     if ( m_Types.empty() ) {
  115.         string msg = "type not found: ";
  116.         if ( !m_Module.empty() ) {
  117.             msg += m_Module;
  118.             msg += '.';
  119.         }
  120.         NCBI_THROW(CNotFoundException,eType,msg+m_Name);
  121.     }
  122.     {
  123.         list<CDataType*>::const_iterator i = m_Types.begin();
  124.         CDataType* type = *i;
  125.         ++i;
  126.         if ( i == m_Types.end() )
  127.             return type;
  128.     }
  129.     string msg = "ambiguous types: ";
  130.     if ( !m_Module.empty() ) {
  131.         msg += m_Module;
  132.         msg += '.';
  133.     }
  134.     msg += m_Name;
  135.     msg += " defined in:";
  136.     ITERATE ( list<CDataType*>, i, m_Types ) {
  137.         msg += ' ';
  138.         msg += (*i)->GetSourceFileName();
  139.         msg += ':';
  140.         msg += NStr::IntToString((*i)->GetSourceLine());
  141.     }
  142.     NCBI_THROW2(CAmbiguiousTypes,eAmbiguious,msg, m_Types);
  143. }
  144. END_NCBI_SCOPE