Salome HOME
Updated copyright comment
[modules/yacs.git] / src / bases / YacsTrace.hxx
1 // Copyright (C) 2006-2024  CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __YACSTRACE_HXX__
21 #define __YACSTRACE_HXX__
22
23 #include "YACSBasesExport.hxx"
24 #include "Exception.hxx"
25
26 #include <iostream>
27 #include <sstream>
28
29 #ifdef _DEVDEBUG_
30 #define DEBTRACE(msg) {std::cerr<<std::flush<<__FILE__<<" ["<<__LINE__<<"] : "<<msg<<std::endl<<std::flush;}
31 #else
32 #define DEBTRACE(msg)
33 #endif
34
35 namespace YACS{
36 extern YACSBASES_EXPORT int traceLevel;
37 }
38
39 //! YACSTRACE macro for dynamic trace: print only if YACS_TRACELEVEL environment variable is set and level is less than  its value
40 #define YACSTRACE(level,msg) {if(YACS::traceLevel >=level)std::cerr<<__FILE__<<" ["<<__LINE__<<"] : "<<msg<<std::endl;}
41
42 //! YASSERT macro is always defined, used like assert, but throw a YACS::Exception instead of abort
43
44 #define YASSERT(val) {if(!(val)){std::stringstream mess; mess<<__FILE__<<" ["<<__LINE__<<"] : assertion "<<#val<<" failed"; throw YACS::Exception(mess.str());}}
45
46 void AttachDebugger();
47
48 #endif