]> Creatis software - gdcm.git/blob - src/gdcmException.cxx
Coding Style + Doxygenation
[gdcm.git] / src / gdcmException.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmException.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/06 20:03:27 $
7   Version:   $Revision: 1.23 $
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.html 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 namespace gdcm 
23 {
24
25 //-----------------------------------------------------------------------------
26 // Exception
27
28 /**
29  * \ingroup Exception
30  * \brief constructor
31  * @param f
32  * @param msg  
33  */
34 Exception::Exception(const std::string &f, const std::string &msg) throw()
35 #ifdef __GNUC__
36   try
37 #endif
38   : From(f), Error(msg) {
39   }
40 #ifdef __GNUC__
41 catch(...) {
42   fatal("Exception::Exception(const std::string&, const std::string&, const std::string&)");
43 }
44 #endif
45
46
47 /**
48  * \ingroup Exception
49  * \brief fatal
50  * @param from 
51  */
52 void Exception::fatal(const char *from) throw() {
53    try
54    {
55       std::cerr << "Fatal: exception received in " << from 
56                 << " while handling exception." << std::endl;
57       exit(-1);
58    }
59    catch(...)
60    {
61       try
62       {
63          std::cerr << "Fatal: exception received in Exception::fatal while handling exception."
64                    << std::endl;
65          exit(-1);
66       }
67       catch(...)
68       {
69          exit(-1);
70       }
71    }
72 }
73
74 /**
75  * \ingroup Exception
76  * \brief getName
77  * @return string
78  */
79 std::string Exception::getName() const throw()
80 {
81    try
82    {
83 #if defined(__GNUC__) && 0   // GNU C++ compiler class name demangling
84       unsigned int nested = 1, i, nb;
85       int offset;
86       std::string one;
87
88       std::string name;
89       std::string iname = typeid(*this).name();
90       if(iname[0] == 'Q')
91       {
92          nested = iname[1] - '0';
93          iname = std::string(iname, 2, std::string::npos);
94       }
95       for(i = 0; i < nested; i++)
96       {
97          ::sscanf(iname.c_str(), "%u%n", &nb, &offset);
98          iname = std::string(iname, offset, std::string::npos);
99          name += std::string(iname, 0, nb);
100          if(i + 1 < nested) name += "::";
101          iname = std::string(iname, nb, std::string::npos);
102       }
103       return name;
104 #else           // no class name demangling
105       std::string name = typeid(*this).name();
106       return name;
107 #endif
108   }
109   catch(...) {
110     fatal("Exception::getName(std::string &)");
111     return "";
112   }
113 }
114
115 /**
116  * \ingroup Exception
117  * \brief Exception
118  */
119  Exception::operator const char *() const throw() {
120   return getName().c_str();
121 }
122
123 //-----------------------------------------------------------------------------
124 /**
125  * \ingroup Exception
126  * \brief Exception::operator <<
127  */
128  std::ostream& operator<<(std::ostream &os, const Exception &e) {
129   try {  
130     os << "Exception " << e.getName() << " thrown: " << e.getError() << std::endl;
131   }
132   catch(...) {
133     Exception::fatal("operator<<(std::ostream &, const Exception&)");
134   }
135   return os;
136 }
137 } // end namespace gdcm
138 //-----------------------------------------------------------------------------