Salome HOME
a3474f959154738e0878d2e5f5dbd97f2f2c6760
[modules/kernel.git] / src / Utils / Utils_SALOME_Exception.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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
23 //  SALOME Utils : general SALOME's definitions and tools
24 //  File   : Utils_SALOME_Exception.cxx
25 //  Author : Antoine YESSAYAN, EDF
26 //  Module : SALOME
27 //  $Header$
28 //
29 #include <iostream>
30 #include "Utils_SALOME_Exception.hxx"
31 #include "utilities.h"
32
33 #ifndef WIN32
34 extern "C"
35 {
36 #endif
37 #include <math.h>
38 #include <stdio.h>
39 #include <string.h>
40 #ifndef WIN32
41 }
42 #endif
43
44
45 const char* duplicate( const char *const str ) ;
46
47 SALOME_Exception::SALOME_Exception( void ): exception() , _text(0)
48 {
49         MESSAGE( "You must use the standard builder: SALOME_Exception::SALOME_Exception( const char *text )" ) ;
50         INTERRUPTION(1) ;
51 }
52
53
54
55 const char *makeText( const char *text, const char *fileName, const unsigned int lineNumber )
56 {
57         char *newText = 0 ;
58
59         ASSERT(text) ;
60         const size_t l1 = 1+strlen(text) ;
61         ASSERT(l1>1) ;
62
63         const char* prefix = "Salome Exception" ;
64         const size_t l0 = 2+strlen(prefix) ;
65
66         if ( fileName )
67         {
68                 const size_t l2 = 4+strlen(fileName) ;
69                 ASSERT(l2>4) ;
70
71                 ASSERT(lineNumber>=1) ;
72                 const size_t l3 = 4+int(log10(float(lineNumber))) ;
73                 
74                 newText = new char [ 1+l0+l1+l2+l3 ] ;
75                 sprintf( newText , "%s in %s [%u] : %s" , prefix, fileName, lineNumber, text ) ;
76         }
77         else
78         {
79                 newText = new char [ 1+l0+l1 ] ;
80                 sprintf( newText , "%s : %s" , prefix, text ) ;
81         }
82         ASSERT(newText) ;
83         return newText ;
84 }
85
86
87 SALOME_Exception::SALOME_Exception( const char *text, const char *fileName, const unsigned int lineNumber ) : exception(), _text( makeText( text , fileName , lineNumber ) )
88 {
89 }
90
91
92 SALOME_Exception::~SALOME_Exception() throw ()
93 {
94         if ( _text )
95         {
96                 delete [] ((char*)_text);
97                 char** pRef = (char**)&_text;
98                 *pRef = 0;
99         }
100         ASSERT(_text==NULL) ;
101 }
102
103
104
105 SALOME_Exception::SALOME_Exception( const SALOME_Exception &ex ): _text(duplicate(ex._text))
106 {
107         ;
108 }
109
110
111 std::ostream & operator<<( std::ostream &os , const SALOME_Exception &ex )
112 {
113         os << ex._text ;
114         return os ;
115 }
116
117
118
119 const char* SALOME_Exception::what( void ) const throw ()
120 {
121         return _text ;
122 }