OmniSciDB  72c90bc290
 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 828 of file Logger.cpp.

References parse_ast::line.

829  : 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 833 of file Logger.cpp.

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

833  {
834  stop();
836 }
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 838 of file Logger.cpp.

References duration_, and logger::logAndEraseDurationTree().

Referenced by ~DebugTimer().

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

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

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

Definition at line 847 of file Logger.cpp.

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

847  {
848  std::string json_str;
849  if (duration_) {
850  if (duration_->stop()) {
851  logAndEraseDurationTree(&json_str);
852  }
853  duration_ = nullptr;
854  }
855  return json_str;
856 }
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:811

+ 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: