Salome HOME
Merge from V7_2_BR 09/08/2013
[modules/kernel.git] / src / Utils / Utils_SALOME_Exception.cxx
index d91ca119f1f1522e467e32b72a324296420f091d..af5058586a56852597f8d542ceaa6373b467b936 100644 (file)
@@ -1,81 +1,86 @@
-//  SALOME Utils : general SALOME's definitions and tools
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
+//  SALOME Utils : general SALOME's definitions and tools
 //  File   : Utils_SALOME_Exception.cxx
 //  Author : Antoine YESSAYAN, EDF
 //  Module : SALOME
 //  $Header$
-
+//
 #include <iostream>
 #include "Utils_SALOME_Exception.hxx"
 #include "utilities.h"
+
+#ifndef WIN32
 extern "C"
 {
+#endif
 #include <math.h>
 #include <stdio.h>
+#include <string.h>
+#ifndef WIN32
 }
-#include <string>
-using namespace std;
+#endif
+
 
 const char* duplicate( const char *const str ) ;
 
 SALOME_Exception::SALOME_Exception( void ): exception() , _text(0)
 {
-       MESSAGE( "You must use the standard builder: SALOME_Exception::SALOME_Exception( const char *text )" ) ;
-       INTERRUPTION(1) ;
+        MESSAGE( "You must use the standard builder: SALOME_Exception::SALOME_Exception( const char *text )" ) ;
+        INTERRUPTION(1) ;
 }
 
 
 
-char *makeText( const char *text, const char *fileName, const unsigned int lineNumber )
+const char *makeText( const char *text, const char *fileName, const unsigned int lineNumber )
 {
-       char *newText = 0 ;
-
-       ASSERT(text) ;
-       const size_t l1 = 1+strlen(text) ;
-       ASSERT(l1>1) ;
-
-       const char* prefix = "Salome Exception" ;
-       const size_t l0 = 2+strlen(prefix) ;
-
-       if ( fileName )
-       {
-               const size_t l2 = 4+strlen(fileName) ;
-               ASSERT(l2>4) ;
-
-               ASSERT(lineNumber>=1) ;
-               const size_t l3 = 4+int(log10(float(lineNumber))) ;
-               
-               newText = new char [ 1+l0+l1+l2+l3 ] ;
-               sprintf( newText , "%s in %s [%u] : %s" , prefix, fileName, lineNumber, text ) ;
-       }
-       else
-       {
-               newText = new char [ 1+l0+l1 ] ;
-               sprintf( newText , "%s : %s" , prefix, text ) ;
-       }
-       ASSERT(newText) ;
-       return newText ;
+        char *newText = 0 ;
+
+        ASSERT(text) ;
+        const size_t l1 = 1+strlen(text) ;
+        ASSERT(l1>1) ;
+
+        const char* prefix = "Salome Exception" ;
+        const size_t l0 = 2+strlen(prefix) ;
+
+        if ( fileName )
+        {
+                const size_t l2 = 4+strlen(fileName) ;
+                ASSERT(l2>4) ;
+
+                ASSERT(lineNumber>=1) ;
+                const size_t l3 = 4+int(log10(float(lineNumber))) ;
+                
+                newText = new char [ 1+l0+l1+l2+l3 ] ;
+                sprintf( newText , "%s in %s [%u] : %s" , prefix, fileName, lineNumber, text ) ;
+        }
+        else
+        {
+                newText = new char [ 1+l0+l1 ] ;
+                sprintf( newText , "%s : %s" , prefix, text ) ;
+        }
+        ASSERT(newText) ;
+        return newText ;
 }
 
 
@@ -86,30 +91,32 @@ SALOME_Exception::SALOME_Exception( const char *text, const char *fileName, cons
 
 SALOME_Exception::~SALOME_Exception() throw ()
 {
-       if ( _text )
-       {
-         delete [] _text ;
-         _text = NULL;
-       }
+        if ( _text )
+        {
+                delete [] ((char*)_text);
+                char** pRef = (char**)&_text;
+                *pRef = 0;
+        }
+        ASSERT(_text==NULL) ;
 }
 
 
 
-SALOME_Exception::SALOME_Exception( const SALOME_Exception &ex ): _text((char*)duplicate(ex._text))
+SALOME_Exception::SALOME_Exception( const SALOME_Exception &ex ): _text(duplicate(ex._text))
 {
-       ;
+        ;
 }
 
 
-ostream & operator<<( ostream &os , const SALOME_Exception &ex )
+std::ostream & operator<<( std::ostream &os , const SALOME_Exception &ex )
 {
-       os << ex._text ;
-       return os ;
+        os << ex._text ;
+        return os ;
 }
 
 
 
 const char* SALOME_Exception::what( void ) const throw ()
 {
-       return _text ;
+        return _text ;
 }