exceptions.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
- /*
- * ===========================================================================
- * PRODUCTION $Log: exceptions.cpp,v $
- * PRODUCTION Revision 1000.1 2004/06/01 19:43:02 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
- * PRODUCTION
- * ===========================================================================
- */
- /* $Id: exceptions.cpp,v 1000.1 2004/06/01 19:43:02 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software/database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software/database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Author: Eugene Vasilchenko
- *
- * File Description:
- * datatool exceptions
- *
- * ---------------------------------------------------------------------------
- * $Log: exceptions.cpp,v $
- * Revision 1000.1 2004/06/01 19:43:02 gouriano
- * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
- *
- * Revision 1.8 2004/05/17 21:03:14 gorelenk
- * Added include of PCH ncbi_pch.hpp
- *
- * Revision 1.7 2003/03/11 20:06:47 kuznets
- * iterate -> ITERATE
- *
- * Revision 1.6 2003/03/10 18:55:18 gouriano
- * use new structured exceptions (based on CException)
- *
- * Revision 1.5 2000/09/26 17:38:26 vasilche
- * Fixed incomplete choiceptr implementation.
- * Removed temporary comments.
- *
- * Revision 1.4 2000/08/25 15:59:21 vasilche
- * Renamed directory tool -> datatool.
- *
- * Revision 1.3 2000/07/10 17:31:59 vasilche
- * Macro arguments made more clear.
- * All old ASN stuff moved to serialasn.hpp.
- * Changed prefix of enum info functions to GetTypeInfo_enum_.
- *
- * Revision 1.2 2000/04/07 19:26:26 vasilche
- * Added namespace support to datatool.
- * By default with argument -oR datatool will generate objects in namespace
- * NCBI_NS_NCBI::objects (aka ncbi::objects).
- * Datatool's classes also moved to NCBI namespace.
- *
- * Revision 1.1 2000/03/15 21:24:12 vasilche
- * Error diagnostic about ambiguous types made more clear.
- *
- * Revision 1.1 2000/02/01 21:46:17 vasilche
- * Added CGeneratedChoiceTypeInfo for generated choice classes.
- * Removed CMemberInfo subclasses.
- * Added support for DEFAULT/OPTIONAL members.
- * Changed class generation.
- * Moved datatool headers to include/internal/serial/tool.
- *
- * Revision 1.3 1999/11/15 19:36:14 vasilche
- * Fixed warnings on GCC
- *
- * ===========================================================================
- */
- #include <ncbi_pch.hpp>
- #include <serial/datatool/exceptions.hpp>
- #include <serial/datatool/type.hpp>
- #include <corelib/ncbiutil.hpp>
- BEGIN_NCBI_SCOPE
- CResolvedTypeSet::CResolvedTypeSet(const string& name)
- : m_Name(name)
- {
- }
- CResolvedTypeSet::CResolvedTypeSet(const string& module, const string& name)
- : m_Module(module), m_Name(name)
- {
- }
- CResolvedTypeSet::~CResolvedTypeSet(void)
- {
- }
- void CResolvedTypeSet::Add(CDataType* type)
- {
- m_Types.push_back(type);
- }
- void CResolvedTypeSet::Add(const CAmbiguiousTypes& types)
- {
- ITERATE ( list<CDataType*>, i, types.GetTypes() ) {
- m_Types.push_back(*i);
- }
- }
- CDataType* CResolvedTypeSet::GetType(void) const throw(CDatatoolException)
- {
- if ( m_Types.empty() ) {
- string msg = "type not found: ";
- if ( !m_Module.empty() ) {
- msg += m_Module;
- msg += '.';
- }
- NCBI_THROW(CNotFoundException,eType,msg+m_Name);
- }
- {
- list<CDataType*>::const_iterator i = m_Types.begin();
- CDataType* type = *i;
- ++i;
- if ( i == m_Types.end() )
- return type;
- }
- string msg = "ambiguous types: ";
- if ( !m_Module.empty() ) {
- msg += m_Module;
- msg += '.';
- }
- msg += m_Name;
- msg += " defined in:";
- ITERATE ( list<CDataType*>, i, m_Types ) {
- msg += ' ';
- msg += (*i)->GetSourceFileName();
- msg += ':';
- msg += NStr::IntToString((*i)->GetSourceLine());
- }
- NCBI_THROW2(CAmbiguiousTypes,eAmbiguious,msg, m_Types);
- }
- END_NCBI_SCOPE