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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: exception.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:38:35  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef EXCEPTION__HPP
  10. #define EXCEPTION__HPP
  11. /*  $Id: exception.hpp,v 1000.2 2004/06/01 19:38:35 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. * Author: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   Standard exception classes used in serial package
  40. */
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbiexpt.hpp>
  43. /** @addtogroup SerialExcep
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. // root class for all serialization exceptions
  49. class NCBI_XSERIAL_EXPORT CSerialException : public CException
  50. {
  51. public:
  52.     enum EErrCode {
  53.         eNotImplemented,
  54.         eEOF,
  55.         eIoError,
  56.         eFormatError,
  57.         eOverflow,
  58.         eInvalidData,
  59.         eIllegalCall,
  60.         eFail,
  61.         eNotOpen,
  62.         eMissingValue
  63.     };
  64.     virtual const char* GetErrCodeString(void) const {
  65.         switch ( GetErrCode() ) {
  66.         case eNotImplemented: return "eNotImplemented";
  67.         case eEOF:            return "eEOF";
  68.         case eIoError:        return "eIoError";
  69.         case eFormatError:    return "eFormatError";
  70.         case eOverflow:       return "eOverflow";
  71.         case eInvalidData:    return "eInvalidData";
  72.         case eIllegalCall:    return "eIllegalCall";
  73.         case eFail:           return "eFail";
  74.         case eNotOpen:        return "eNotOpen";
  75.         case eMissingValue:   return "eMissingValue";
  76.         default:              return CException::GetErrCodeString();
  77.         }
  78.     }
  79.     NCBI_EXCEPTION_DEFAULT(CSerialException,CException);
  80. public:
  81.     // Combine steram frames info into single message
  82.     void AddFrameInfo(string frame_info);
  83.     virtual void ReportExtra(ostream& out) const;
  84. private:
  85.     string m_FrameStack;
  86. };
  87. class NCBI_XSERIAL_EXPORT CUnassignedMember : public CSerialException
  88. {
  89. public:
  90.     enum EErrCode {
  91.         eGet,
  92.         eWrite,
  93.         eUnknownMember
  94.     };
  95.     virtual const char* GetErrCodeString(void) const {
  96.         switch ( GetErrCode() ) {
  97.         case eGet:            return "eGet";
  98.         case eWrite:          return "eWrite";
  99.         case eUnknownMember:  return "eUnknownMember";
  100.         default:              return CException::GetErrCodeString();
  101.         }
  102.     }
  103.     NCBI_EXCEPTION_DEFAULT(CUnassignedMember,CSerialException);
  104. };
  105. class NCBI_XSERIAL_EXPORT CInvalidChoiceSelection : public CSerialException
  106. {
  107. public:
  108.     enum EErrCode {
  109.         eFail
  110.     };
  111.     virtual const char* GetErrCodeString(void) const;
  112.     static const char* GetName(size_t index,
  113.                                const char* const names[], size_t namesCount);
  114.     CInvalidChoiceSelection(const char* file,int line,
  115.         size_t currentIndex, size_t mustBeIndex,
  116.         const char* const names[], size_t namesCount) throw();
  117. // for backward compatibility
  118.     CInvalidChoiceSelection(
  119.         size_t currentIndex, size_t mustBeIndex,
  120.         const char* const names[], size_t namesCount) throw();
  121.     CInvalidChoiceSelection(const CInvalidChoiceSelection& other) throw();
  122.     virtual ~CInvalidChoiceSelection(void) throw();
  123.     virtual const char* GetType(void) const;
  124.     typedef int TErrCode;
  125.     TErrCode GetErrCode(void) const;
  126. protected:
  127.     CInvalidChoiceSelection(void) throw();
  128.     virtual const CException* x_Clone(void) const;
  129. };
  130. END_NCBI_SCOPE
  131. #endif /* EXCEPTION__HPP */
  132. /* @} */
  133. /* ---------------------------------------------------------------------------
  134. * $Log: exception.hpp,v $
  135. * Revision 1000.2  2004/06/01 19:38:35  gouriano
  136. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  137. *
  138. * Revision 1.16  2004/05/11 15:56:10  gouriano
  139. * Change GetErrCode method prototype to return TErrCode - to be able to
  140. * safely cast EErrCode to an eInvalid
  141. *
  142. * Revision 1.15  2004/01/22 20:46:59  gouriano
  143. * Added new exception error code (eMissingValue)
  144. *
  145. * Revision 1.14  2003/10/27 19:18:03  grichenk
  146. * Reformatted object stream error messages
  147. *
  148. * Revision 1.13  2003/04/29 18:29:06  gouriano
  149. * object data member initialization verification
  150. *
  151. * Revision 1.12  2003/04/15 14:15:12  siyan
  152. * Added doxygen support
  153. *
  154. * Revision 1.11  2003/04/03 21:46:09  gouriano
  155. * verify initialization of data members
  156. *
  157. * Revision 1.10  2003/03/11 18:00:08  gouriano
  158. * reimplement CInvalidChoiceSelection exception
  159. *
  160. * Revision 1.9  2003/03/10 18:52:37  gouriano
  161. * use new structured exceptions (based on CException)
  162. *
  163. * Revision 1.8  2002/12/23 18:38:51  dicuccio
  164. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  165. * Moved all CVS logs to the end.
  166. *
  167. * Revision 1.7  2001/04/12 16:59:13  kholodov
  168. * Added: CSerialNotImplemented exception
  169. *
  170. * Revision 1.6  2001/01/05 20:10:34  vasilche
  171. * CByteSource, CIStrBuffer, COStrBuffer, CLightString, CChecksum, CWeakMap
  172. * were moved to util.
  173. *
  174. * Revision 1.5  2000/10/03 17:22:31  vasilche
  175. * Reduced header dependency.
  176. * Reduced size of debug libraries on WorkShop by 3 times.
  177. * Fixed tag allocation for parent classes.
  178. * Fixed CObject allocation/deallocation in streams.
  179. * Moved instantiation of several templates in separate source file.
  180. *
  181. * Revision 1.4  2000/07/03 18:42:33  vasilche
  182. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  183. * Reduced header dependency.
  184. *
  185. * Revision 1.3  2000/04/28 16:58:01  vasilche
  186. * Added classes CByteSource and CByteSourceReader for generic reading.
  187. * Added delayed reading of choice variants.
  188. *
  189. * Revision 1.2  2000/04/10 21:01:38  vasilche
  190. * Fixed Erase for map/set.
  191. * Added iteratorbase.hpp header for basic internal classes.
  192. *
  193. * Revision 1.1  2000/02/17 20:02:28  vasilche
  194. * Added some standard serialization exceptions.
  195. * Optimized text/binary ASN.1 reading.
  196. * Fixed wrong encoding of StringStore in ASN.1 binary format.
  197. * Optimized logic of object collection.
  198. *
  199. *
  200. * ===========================================================================
  201. */