Salome HOME
CCAR:
[modules/kernel.git] / src / Utils / Utils_SALOME_Exception.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SALOME Utils : general SALOME's definitions and tools
23 //  File   : Utils_SALOME_Exception.cxx
24 //  Author : Antoine YESSAYAN, EDF
25 //  Module : SALOME
26 //  $Header$
27 //
28 #include <iostream>
29 #include "Utils_SALOME_Exception.hxx"
30 #include "utilities.h"
31
32 #ifndef WIN32
33 extern "C"
34 {
35 #endif
36 #include <math.h>
37 #include <stdio.h>
38 #include <string.h>
39 #ifndef WIN32
40 }
41 #endif
42
43
44 const char* duplicate( const char *const str ) ;
45
46 SALOME_Exception::SALOME_Exception( void ): exception() , _text(0)
47 {
48         MESSAGE( "You must use the standard builder: SALOME_Exception::SALOME_Exception( const char *text )" ) ;
49         INTERRUPTION(1) ;
50 }
51
52
53
54 const char *makeText( const char *text, const char *fileName, const unsigned int lineNumber )
55 {
56         char *newText = 0 ;
57
58         ASSERT(text) ;
59         const size_t l1 = 1+strlen(text) ;
60         ASSERT(l1>1) ;
61
62         const char* prefix = "Salome Exception" ;
63         const size_t l0 = 2+strlen(prefix) ;
64
65         if ( fileName )
66         {
67                 const size_t l2 = 4+strlen(fileName) ;
68                 ASSERT(l2>4) ;
69
70                 ASSERT(lineNumber>=1) ;
71                 const size_t l3 = 4+int(log10(float(lineNumber))) ;
72                 
73                 newText = new char [ 1+l0+l1+l2+l3 ] ;
74                 sprintf( newText , "%s in %s [%u] : %s" , prefix, fileName, lineNumber, text ) ;
75         }
76         else
77         {
78                 newText = new char [ 1+l0+l1 ] ;
79                 sprintf( newText , "%s : %s" , prefix, text ) ;
80         }
81         ASSERT(newText) ;
82         return newText ;
83 }
84
85
86 SALOME_Exception::SALOME_Exception( const char *text, const char *fileName, const unsigned int lineNumber ) : exception(), _text( makeText( text , fileName , lineNumber ) )
87 {
88 }
89
90
91 SALOME_Exception::~SALOME_Exception() throw ()
92 {
93         if ( _text )
94         {
95                 delete [] ((char*)_text);
96                 char** pRef = (char**)&_text;
97                 *pRef = 0;
98         }
99         ASSERT(_text==NULL) ;
100 }
101
102
103
104 SALOME_Exception::SALOME_Exception( const SALOME_Exception &ex ): _text(duplicate(ex._text))
105 {
106         ;
107 }
108
109
110 std::ostream & operator<<( std::ostream &os , const SALOME_Exception &ex )
111 {
112         os << ex._text ;
113         return os ;
114 }
115
116
117
118 const char* SALOME_Exception::what( void ) const throw ()
119 {
120         return _text ;
121 }