libzypp  17.14.0
Debug.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
13 #ifndef ZYPP_NDEBUG
14 #warning ZYPP_BASE_DEBUG_H included
15 #ifndef ZYPP_BASE_DEBUG_H
16 #define ZYPP_BASE_DEBUG_H
17 
18 #include <iosfwd>
19 //#include <sstream>
20 //#include <string>
21 #include "zypp/base/Logger.h"
22 #include "zypp/base/String.h"
23 #include "zypp/ExternalProgram.h"
25 
27 namespace zypp
28 {
29 
30  namespace debug
31  {
32 
36 #define TAG INT << __PRETTY_FUNCTION__ << std::endl
37 
39  inline std::ostream & dumpMemOn( std::ostream & str, const std::string & msg = std::string() )
40  {
41  static std::string mypid( str::numstring( getpid() ) );
42  const char* argv[] =
43  {
44  "ps",
45  "v",
46  mypid.c_str(),
47  NULL
48  };
49  ExternalProgram prog(argv,ExternalProgram::Discard_Stderr, false, -1, true);
50 
51  str << "MEMUSAGE " << msg << std::endl;
52  for( std::string line = prog.receiveLine(); ! line.empty(); line = prog.receiveLine() )
53  str << line;
54 
55  prog.close();
56  return str;
57  }
58 
60 
67  struct TraceCADBase
68  {
70  std::string _ident;
71  };
72 
74  inline std::ostream & operator<<( std::ostream & str, TraceCADBase::What obj )
75  {
76  switch( obj )
77  {
78  case TraceCADBase::CTOR: return str << "CTOR";
79  case TraceCADBase::COPYCTOR: return str << "COPYCTOR";
80  case TraceCADBase::MOVECTOR: return str << "MOVECTOR";
81  case TraceCADBase::ASSIGN: return str << "ASSIGN";
82  case TraceCADBase::MOVEASSIGN: return str << "MOVEASSIGN";
83  case TraceCADBase::DTOR: return str << "DTOR";
84  case TraceCADBase::PING: return str << "PING";
85  }
86  return str;
87  }
88 
110  template<class Tp>
111  struct TraceCAD : public base::ProvideNumericId<TraceCAD<Tp>, unsigned long>
112  , public TraceCADBase
113  {
114  static unsigned long & _totalTraceCAD()
115  { static unsigned long _val = 0;
116  return _val; }
117 
119  { _ident = __PRETTY_FUNCTION__;
120  ++_totalTraceCAD();
121  traceCAD( CTOR, *this, *this ); }
122 
123  TraceCAD( const TraceCAD & rhs )
124  { ++_totalTraceCAD();
125  traceCAD( COPYCTOR, *this, rhs ); }
126 
127  TraceCAD( TraceCAD && rhs )
128  { ++_totalTraceCAD();
129  traceCAD( MOVECTOR, *this, rhs ); }
130 
131  TraceCAD & operator=( const TraceCAD & rhs )
132  { traceCAD( ASSIGN, *this, rhs ); return *this; }
133 
135  { traceCAD( MOVEASSIGN, *this, rhs ); return *this; }
136 
137  virtual ~TraceCAD()
138  { --_totalTraceCAD();
139  traceCAD( DTOR, *this, *this ); }
140 
141  void ping() const
142  { traceCAD( PING, *this, *this ); }
143  };
144 
146  template<class Tp>
147  inline std::ostream & operator<<( std::ostream & str, const TraceCAD<Tp> & obj )
148  { return str << "(ID " << obj.numericId() << ", TOTAL " << obj._totalTraceCAD()
149  << ") [" << &obj << "] "; }
150 
154  template<class Tp>
156  const TraceCAD<Tp> & self_r,
157  const TraceCAD<Tp> & rhs_r )
158  {
159  switch( what_r )
160  {
161  case TraceCADBase::CTOR:
162  case TraceCADBase::PING:
163  case TraceCADBase::DTOR:
164  L_DBG("DEBUG") << what_r << self_r << " (" << self_r._ident << ")" << std::endl;
165  break;
166 
171  L_DBG("DEBUG") << what_r << self_r << "( " << rhs_r << ")" << " (" << self_r._ident << ")" << std::endl;
172  break;
173  }
174  }
176 
177 
179  } // namespace debug
182 } // namespace zypp
184 #endif // ZYPP_BASE_DEBUG_H
185 #endif // ZYPP_NDEBUG