OmniSciDB  a5dc49c757
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
logger::DebugTimer Class Reference

#include <Logger.h>

+ Collaboration diagram for logger::DebugTimer:

Public Member Functions

 DebugTimer (Severity, char const *file, int line, char const *name)
 
 ~DebugTimer ()
 
void stop ()
 
std::string stopAndGetJson ()
 

Private Member Functions

 DebugTimer (DebugTimer const &)=delete
 
 DebugTimer (DebugTimer &&)=delete
 
DebugTimeroperator= (DebugTimer const &)=delete
 
DebugTimeroperator= (DebugTimer &&)=delete
 

Private Attributes

Durationduration_
 

Detailed Description

Definition at line 392 of file Logger.h.

Constructor & Destructor Documentation

logger::DebugTimer::DebugTimer ( DebugTimer const &  )
privatedelete
logger::DebugTimer::DebugTimer ( DebugTimer &&  )
privatedelete
logger::DebugTimer::DebugTimer ( Severity  severity,
char const *  file,
int  line,
char const *  name 
)

Definition at line 830 of file Logger.cpp.

References parse_ast::line.

831  : duration_(newDuration({severity, file, line, name})) {
Duration * duration_
Definition: Logger.h:393
tuple line
Definition: parse_ast.py:10
Duration * newDuration(DebugTimerParams const debug_timer_params)
Definition: Logger.cpp:659
string name
Definition: setup.in.py:72
logger::DebugTimer::~DebugTimer ( )
Initial value:
{
void omnisci_range_push(Category c, const char *name, const char *file)
string name
Definition: setup.in.py:72

Definition at line 835 of file Logger.cpp.

References nvtx_helpers::omnisci_range_pop(), and stop().

835  {
836  stop();
838 }
void omnisci_range_pop()

+ Here is the call graph for this function:

Member Function Documentation

DebugTimer& logger::DebugTimer::operator= ( DebugTimer const &  )
privatedelete
DebugTimer& logger::DebugTimer::operator= ( DebugTimer &&  )
privatedelete
void logger::DebugTimer::stop ( )

Definition at line 840 of file Logger.cpp.

References duration_, and logger::logAndEraseDurationTree().

Referenced by ~DebugTimer().

840  {
841  if (duration_) {
842  if (duration_->stop()) {
843  logAndEraseDurationTree(nullptr);
844  }
845  duration_ = nullptr;
846  }
847 }
Duration * duration_
Definition: Logger.h:393
void logAndEraseDurationTree(std::string *json_str)
Definition: Logger.cpp:813

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

std::string logger::DebugTimer::stopAndGetJson ( )

Definition at line 849 of file Logger.cpp.

References duration_, json_str(), and logger::logAndEraseDurationTree().

849  {
850  std::string json_str;
851  if (duration_) {
852  if (duration_->stop()) {
853  logAndEraseDurationTree(&json_str);
854  }
855  duration_ = nullptr;
856  }
857  return json_str;
858 }
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:46
Duration * duration_
Definition: Logger.h:393
void logAndEraseDurationTree(std::string *json_str)
Definition: Logger.cpp:813

+ Here is the call graph for this function:

Member Data Documentation

Duration* logger::DebugTimer::duration_
private

Definition at line 393 of file Logger.h.

Referenced by stop(), and stopAndGetJson().


The documentation for this class was generated from the following files: