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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: exception.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:40:12  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: exception.cpp,v 1000.1 2004/06/01 19:40:12 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. *   Standard serialization exceptions
  38. */
  39. #include <ncbi_pch.hpp>
  40. #include <serial/exception.hpp>
  41. BEGIN_NCBI_SCOPE
  42. void CSerialException::AddFrameInfo(string frame_info)
  43. {
  44.     m_FrameStack = frame_info + m_FrameStack;
  45. }
  46. void CSerialException::ReportExtra(ostream& out) const
  47. {
  48.     if ( !m_FrameStack.empty() ) {
  49.         out << " at " << m_FrameStack;
  50.     }
  51. }
  52. const char* CInvalidChoiceSelection::GetErrCodeString(void) const
  53. {
  54.     switch ( GetErrCode() ) {
  55.     case eFail:  return "eFail";
  56.     default:     return CException::GetErrCodeString();
  57.     }
  58. }
  59. const char* CInvalidChoiceSelection::GetName(
  60.     size_t index, const char* const names[], size_t namesCount)
  61. {
  62.     if ( index > namesCount )
  63.         return "?unknown?";
  64.     return names[index];
  65.     
  66. }
  67. CInvalidChoiceSelection::CInvalidChoiceSelection(
  68.     const char* file,int line,
  69.     size_t currentIndex, size_t mustBeIndex,
  70.     const char* const names[], size_t namesCount) throw()
  71.         : CSerialException(file, line, 0,
  72.           (CSerialException::EErrCode) CException::eInvalid,"")
  73. {
  74.     x_Init(file,line,
  75.            string("Invalid choice selection: ")+
  76.            GetName(currentIndex, names, namesCount)+". "
  77.            "Expected: "+
  78.            GetName(mustBeIndex, names, namesCount),0);
  79.     x_InitErrCode((CException::EErrCode)(CInvalidChoiceSelection::eFail));
  80. }
  81. CInvalidChoiceSelection::CInvalidChoiceSelection(
  82.     size_t currentIndex, size_t mustBeIndex,
  83.     const char* const names[], size_t namesCount) throw()
  84.         : CSerialException("unknown", 0, 0,
  85.           (CSerialException::EErrCode) CException::eInvalid,"")
  86. {
  87.     x_Init("unknown", 0,
  88.            string("Invalid choice selection: ")+
  89.            GetName(currentIndex, names, namesCount)+". "
  90.            "Expected: "+
  91.            GetName(mustBeIndex, names, namesCount),0);
  92.     x_InitErrCode((CException::EErrCode)(CInvalidChoiceSelection::eFail));
  93. }
  94. CInvalidChoiceSelection::CInvalidChoiceSelection(
  95.     const CInvalidChoiceSelection& other) throw()
  96.     : CSerialException(other)
  97. {
  98.     x_Assign(other);
  99. }
  100. CInvalidChoiceSelection::~CInvalidChoiceSelection(void) throw()
  101. {
  102. }
  103. const char* CInvalidChoiceSelection::GetType(void) const
  104. {
  105.     return "CInvalidChoiceSelection";
  106. }
  107. CInvalidChoiceSelection::TErrCode CInvalidChoiceSelection::GetErrCode(void) const
  108. {
  109.     return typeid(*this) == typeid(CInvalidChoiceSelection) ?
  110.         (CInvalidChoiceSelection::TErrCode) x_GetErrCode() :
  111.         (CInvalidChoiceSelection::TErrCode) CException::eInvalid;
  112. }
  113. CInvalidChoiceSelection::CInvalidChoiceSelection(void) throw()
  114. {
  115. }
  116. const CException* CInvalidChoiceSelection::x_Clone(void) const
  117. {
  118.     return new CInvalidChoiceSelection(*this);
  119. }
  120. END_NCBI_SCOPE
  121. /* ---------------------------------------------------------------------------
  122. * $Log: exception.cpp,v $
  123. * Revision 1000.1  2004/06/01 19:40:12  gouriano
  124. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  125. *
  126. * Revision 1.13  2004/05/17 21:03:02  gorelenk
  127. * Added include of PCH ncbi_pch.hpp
  128. *
  129. * Revision 1.12  2004/05/11 15:56:36  gouriano
  130. * Change GetErrCode method prototype to return TErrCode - to be able to
  131. * safely cast EErrCode to an eInvalid
  132. *
  133. * Revision 1.11  2003/10/27 19:18:03  grichenk
  134. * Reformatted object stream error messages
  135. *
  136. * Revision 1.10  2003/03/11 17:59:39  gouriano
  137. * reimplement CInvalidChoiceSelection exception
  138. *
  139. * Revision 1.9  2003/03/10 18:54:25  gouriano
  140. * use new structured exceptions (based on CException)
  141. *
  142. * Revision 1.8  2002/12/23 18:59:52  dicuccio
  143. * Fixed an 80-chr boundary violation.  Log to end.
  144. *
  145. * Revision 1.7  2002/12/23 18:41:19  dicuccio
  146. * Added previously unimplemented class ctors / dtors (classes declared but not
  147. * defined)
  148. *
  149. * Revision 1.6  2001/04/17 03:58:39  vakatov
  150. * CSerialNotImplemented:: -- constructor and destructor added
  151. *
  152. * Revision 1.5  2001/01/05 20:10:50  vasilche
  153. * CByteSource, CIStrBuffer, COStrBuffer, CLightString, CChecksum, CWeakMap
  154. * were moved to util.
  155. *
  156. * Revision 1.4  2000/07/05 13:20:22  vasilche
  157. * Fixed bug on 64 bit compilers.
  158. *
  159. * Revision 1.3  2000/07/03 20:47:22  vasilche
  160. * Removed unused variables/functions.
  161. *
  162. * Revision 1.2  2000/07/03 18:42:43  vasilche
  163. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  164. * Reduced header dependency.
  165. *
  166. * Revision 1.1  2000/02/17 20:02:43  vasilche
  167. * Added some standard serialization exceptions.
  168. * Optimized text/binary ASN.1 reading.
  169. * Fixed wrong encoding of StringStore in ASN.1 binary format.
  170. * Optimized logic of object collection.
  171. *
  172. * ===========================================================================
  173. */