Class Reference for E1039 Core & Analysis Software
PHTimeServer.h
Go to the documentation of this file.
1 // $Id: PHTimeServer.h,v 1.5 2014/01/12 16:15:05 pinkenbu Exp $
2 #ifndef __PHTIMESERVER_H__
3 #define __PHTIMESERVER_H__
4 
13 #include "PHTimer.h"
14 
15 #include <iostream>
16 #include <string>
17 #include <map>
18 
19 #ifndef __CINT__
20 //#include<boost/smart_ptr.hpp>
21 #include<memory>
22 #endif
29 {
30 
31  public:
32 
34  class timer
35  {
36 
37  public:
38  timer( const std::string& key, unsigned short uid ):
39  _timer( new PHTimer(key) ),
40  _uid( uid )
41  {}
42 
43  PHTimer* get( void )
44  { return _timer.get(); }
45 
46  const PHTimer* get( void ) const
47  { return _timer.get(); }
48 
49  unsigned short get_uid( void ) const
50  { return _uid; }
51 
52  private:
53 #ifndef __CINT__
54  //boost::shared_ptr<PHTimer> _timer;
55  std::shared_ptr<PHTimer> _timer;
56 #endif
57  unsigned short _uid;
58  };
59 
61  static PHTimeServer* get( void )
62  {
63  static PHTimeServer* _server = new PHTimeServer();
64  return _server;
65  }
66 
68  virtual ~PHTimeServer()
69  {}
70 
72  timer insert_new( const std::string& );
73 
75  timer insert_new_single_shot( const std::string& );
76 
78  timer get_timer( const std::string& );
79 
81  timer get_single_shot_timer( const std::string& );
82 
84  void print( std::ostream& out = std::cout ) const;
85 
87  void print_stat( std::ostream& out = std::cout ) const;
88 
89  protected:
90 
93  _timer_id(0),
94  _single_shot_timer_id(0)
95  {}
96 
97  private:
98 
100  typedef std::map<std::string, timer > time_map;
101 
103  typedef std::map<std::string, timer >::iterator time_iterator;
104 
106  typedef std::map<std::string, timer >::const_iterator const_time_iterator;
107 
109  time_map _timers;
110 
112  time_map _single_shot_timers;
113 
115  unsigned short _timer_id;
116 
118  unsigned short _single_shot_timer_id;
119 
120  public:
121 
123  class iterator
124  {
125  public:
126 
129  {
130  if( _iter == _map.end() ) return 0;
131  PHTimeServer::timer* out( &_iter->second );
132  _iter++;
133  return out;
134  }
135 
138  {
139  if( _iter == _map.end() ) return 0;
140  return &_iter->second;
141  }
142 
143 
144  protected:
146  iterator( PHTimeServer::time_map map ):
147  _map( map ),
148  _iter( _map.begin() )
149  {}
150 
151  private:
152 
154  PHTimeServer::time_map _map;
155 
157  PHTimeServer::time_iterator _iter;
158 
159  friend class PHTimeServer;
160  };
161 
163  iterator range( void ) { return iterator( _timers ); }
164 
165 
166 };
167 #endif
high precision timer
light iterator over PHTimer map
Definition: PHTimeServer.h:124
iterator(PHTimeServer::time_map map)
creator
Definition: PHTimeServer.h:146
PHTimeServer::timer * current()
get PHTimer associated to current iterator position
Definition: PHTimeServer.h:137
PHTimeServer::timer * next()
get PHTimer associated to current iterator position, advance iterator
Definition: PHTimeServer.h:128
wrapper around PHTimer, for storage in a map
Definition: PHTimeServer.h:35
timer(const std::string &key, unsigned short uid)
Definition: PHTimeServer.h:38
unsigned short get_uid(void) const
Definition: PHTimeServer.h:49
PHTimer * get(void)
Definition: PHTimeServer.h:43
const PHTimer * get(void) const
Definition: PHTimeServer.h:46
PHTimer server for accessing external information.
Definition: PHTimeServer.h:29
timer insert_new_single_shot(const std::string &)
insert new single_shot timer in map.
Definition: PHTimeServer.cc:40
static PHTimeServer * get(void)
singleton accessor
Definition: PHTimeServer.h:61
iterator range(void)
return iterator over the map, located at begin
Definition: PHTimeServer.h:163
timer get_single_shot_timer(const std::string &)
retrieve existing timer. throw exception if not found
Definition: PHTimeServer.cc:76
void print_stat(std::ostream &out=std::cout) const
dump all registered timer statistics.
timer insert_new(const std::string &)
insert new timer in map.
Definition: PHTimeServer.cc:19
virtual ~PHTimeServer()
destructor
Definition: PHTimeServer.h:68
PHTimeServer()
constructor
Definition: PHTimeServer.h:92
timer get_timer(const std::string &)
retrieve existing timer. throw exception if not found
Definition: PHTimeServer.cc:62
void print(std::ostream &out=std::cout) const
dump all registered timer value.
Definition: PHTimeServer.cc:90
high precision timer
Definition: PHTimer.h:25