Salome HOME
7ceada2c6be6ee4bb899392eb949926efc799e2a
[modules/hexablock.git] / src / HEXABLOCK / HexWitness.hxx
1
2 // Class : Enregistrement des dianostics
3
4 // Copyright (C) 2009-2023  CEA, EDF
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 #ifndef __WITNESS_H_
24 #define __WITNESS_H_
25
26 #define  Mess   el_root->glob->mess << Begin
27 #define  Follow el_root->glob->mess
28
29 #include "hexa_base.hxx"
30
31 #if defined WIN32
32 #pragma warning ( disable: 4251 )
33 #endif
34
35 BEGIN_NAMESPACE_HEXA
36
37 const std::string Begin (" **** ");
38
39 class DumpStudy;
40 class HexaExport Witness
41 {
42 public :
43    Witness ();
44    void     setDump (DumpStudy* dd)      { dump_study = dd                ; }
45    void     raz ()                       { mess_state = NoMessage         ; }
46    bool     hasMessage ()                { return mess_state != NoMessage ; }
47    TabText& getMessage ();
48    int      sizeofMessage  ();
49    cpchar   getLine (int nro);
50    void     printMessage ();
51
52    Witness& operator << (int      val);
53    Witness& operator << (double   val);
54    Witness& operator << (cpchar   val);
55    Witness& operator << (rcstring val);
56    Witness& operator << (EltBase* val);
57
58 private :
59    void openMessage  ();
60    void closeMessage () {};
61    void pushLine     ();
62
63 private :
64    TabText      bla_bla;
65    std::string  curr_line; 
66    int          w_status;
67    int          nbr_lines;
68    enum EnumMessage { NoMessage, MessOpen, MessClosed }  mess_state;
69    bool         line_open;
70    DumpStudy*   dump_study;
71 };
72 END_NAMESPACE_HEXA
73 #endif