Salome HOME
3c3882cc79ea4ca4ce9098b6e3ddd298cdb5edd6
[modules/med.git] / src / MEDWrapper / Base / MED_Utilities.hxx
1 //  
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : 
25 //  Author : 
26 //  Module : 
27 //  $Header$
28
29 #ifndef MED_Utilities_HeaderFile
30 #define MED_Utilities_HeaderFile
31
32 #include <iostream>     
33 #include <sstream>      
34 #include <string>
35 #include <stdexcept>
36
37
38 namespace MED{
39   using namespace std;
40   class PrefixPrinter{
41     static int myCounter;
42     bool myIsActive;
43   public:
44     PrefixPrinter(bool theIsActive = true);
45     ~PrefixPrinter();
46
47     static string GetPrefix();
48   };
49 };
50
51 //#define _DEBUG_
52 #ifdef _DEBUG_
53   #define MSG(deb,msg) if(deb) std::cout<<MED::PrefixPrinter::GetPrefix()<<msg<<" ("<<__FILE__<<" ["<<__LINE__<<"])\n"
54   #define BEGMSG(deb,msg) if(deb) std::cout<<MED::PrefixPrinter::GetPrefix()<<msg
55   #define INITMSG(deb,msg) MED::PrefixPrinter aPrefixPrinter(deb); BEGMSG(deb,msg)
56   #define ADDMSG(deb,msg) if(deb) std::cout<<msg
57 #else
58   #define MSG(deb,msg)
59   #define BEGMSG(deb,msg)
60   #define INITMSG(deb,msg)
61   #define ADDMSG(deb,msg)
62 #endif
63
64
65 #ifndef EXCEPTION
66
67 #define EXCEPTION(TYPE, MSG) {\
68   std::ostringstream aStream;\
69   aStream<<__FILE__<<"["<<__LINE__<<"]::"<<MSG;\
70   throw TYPE(aStream.str());\
71 }
72
73 #endif
74
75 #endif