]> Creatis software - gdcm.git/blob - src/gdcmException.cxx
* Erroneous leading white fix:
[gdcm.git] / src / gdcmException.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmException.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/06/20 18:08:47 $
7   Version:   $Revision: 1.16 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmException.h"
20
21 #include <typeinfo>
22 #include <stdio.h>
23
24 //-----------------------------------------------------------------------------
25 // gdcmException
26
27 /**
28  * \ingroup gdcmException
29  * \brief constructor
30  * @param f
31  * @param msg  
32  */
33 gdcmException::gdcmException(const std::string &f, const std::string& msg) throw()
34 #ifdef __GNUC__
35   try
36 #endif
37   : from(f), error(msg) {
38   }
39 #ifdef __GNUC__
40 catch(...) {
41   fatal("gdcmException::gdcmException(const std::string&, const std::string&, const std::string&)");
42 }
43 #endif
44
45
46 /**
47  * \ingroup gdcmException
48  * \brief fatal
49  * @param from 
50  */
51  void gdcmException::fatal(const char *from) throw() {
52   try {
53     std::cerr << "Fatal: exception received in " << from 
54          << " while handling exception." << std::endl;
55     exit(-1);
56   }
57   catch(...) {
58     try {
59       std::cerr << "Fatal: exception received in Exception::fatal while handling exception."
60            << std::endl;
61       exit(-1);
62     }
63     catch(...) {
64       exit(-1);
65     }
66   }  
67 }
68
69 /**
70  * \ingroup gdcmException
71  * \brief getName
72  * @return string
73  */
74  std::string gdcmException::getName() const throw() {
75   try {
76 #ifdef __GNUC__   // GNU C++ compiler class name demangling
77       unsigned int nested = 1, i, nb, offset;
78       std::string one;
79
80       std::string name;
81       std::string iname = typeid(*this).name();
82       if(iname[0] == 'Q') {
83         nested = iname[1] - '0';
84         iname = std::string(iname, 2, std::string::npos);
85       }
86       for(i = 0; i < nested; i++) {
87         ::sscanf(iname.c_str(), "%u%n", &nb, &offset);
88         iname = std::string(iname, offset, std::string::npos);
89         name += std::string(iname, 0, nb);
90         if(i + 1 < nested) name += "::";
91         iname = std::string(iname, nb, std::string::npos);
92       }
93       return name;
94 #else           // no class name demangling
95       //name = typeid(*this).name();
96       return "Exception";
97 #endif
98   }
99   catch(...) {
100     fatal("Exception::getName(std::string &)");
101     return "";
102   }
103 }
104
105 /**
106  * \ingroup gdcmException
107  * \brief gdcmException
108  */
109  gdcmException::operator const char *() const throw() {
110   return getName().c_str();
111 }
112
113 //-----------------------------------------------------------------------------
114 /**
115  * \ingroup gdcmException
116  * \brief gdcmException::operator <<
117  */
118  std::ostream& operator<<(std::ostream &os, const gdcmException &e) {
119   try {  
120     os << "Exception " << e.getName() << " thrown: " << e.getError() << std::endl;
121   }
122   catch(...) {
123     gdcmException::fatal("operator<<(std::ostream &, const gdcmException&)");
124   }
125   return os;
126 }
127
128 //-----------------------------------------------------------------------------