Salome HOME
update with the version in the OCC branch OCC_development_generic_2006.
[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 #ifdef _DEBUG_
52   #define MSG(deb,msg) if(deb) std::cout<<MED::PrefixPrinter::GetPrefix()<<msg<<" ("<<__FILE__<<" ["<<__LINE__<<"])\n"
53   #define BEGMSG(deb,msg) if(deb) std::cout<<MED::PrefixPrinter::GetPrefix()<<msg
54   #define INITMSGA(deb,lev,msg) MED::PrefixPrinter aPrefixPrinter_##lev(deb); BEGMSG(deb,msg)
55   #define INITMSG(deb,msg) INITMSGA(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 INITMSGA(deb,lev,msg)
61   #define INITMSG(deb,msg)
62   #define ADDMSG(deb,msg)
63 #endif
64
65
66 #ifndef EXCEPTION
67
68 #define EXCEPTION(TYPE, MSG) {\
69   std::ostringstream aStream;\
70   aStream<<__FILE__<<"["<<__LINE__<<"]::"<<MSG;\
71   throw TYPE(aStream.str());\
72 }
73
74 #endif
75
76 #endif