Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.git] / src / SMDS / chrono.hxx
1 // Copyright (C) 2006-2011  CEA/DEN, EDF R&D, OPEN CASCADE
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.
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 _CHRONO_HXX_
21 #define _CHRONO_HXX_
22
23 #include <vector>
24 #include <string>
25 #include <iostream>
26 #include <ctime>
27
28 typedef struct acnt
29 {
30   char*  _ctrNames;
31   int    _ctrLines;
32   int    _ctrOccur;
33   double _ctrCumul;
34 } cntStruct;
35
36 class counters
37 {
38 public:
39   static cntStruct *_ctrs;
40   counters(int nb);
41   ~counters();
42   static void stats();
43 protected:
44   static int _nbChrono;
45 };
46
47 class chrono
48 {
49 public:
50   chrono(int i);
51   ~chrono();
52   void stop();
53 protected:
54   bool _run;
55   int _ctr;
56   clock_t _start, _end;
57 };
58
59 #ifdef CHRONODEF
60 #define CHRONO(i) counters::_ctrs[i]._ctrNames = (char *)__FILE__; \
61   counters::_ctrs[i]._ctrLines = __LINE__; \
62   chrono aChrono##i(i);
63
64 #define CHRONOSTOP(i) aChrono##i.stop();
65
66 #else  // CHRONODEF
67
68 #define CHRONO(i)
69 #define CHRONOSTOP(i)
70
71 #endif // CHRONODEF
72
73 #endif // _CHRONO_HXX_