OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
logger::JsonEncoder Class Reference
+ Inheritance diagram for logger::JsonEncoder:
+ Collaboration diagram for logger::JsonEncoder:

Public Member Functions

 JsonEncoder ()
 
rapidjson::Value operator() (Duration const &duration)
 
rapidjson::Value operator() (DurationTree const &duration_tree)
 
rapidjson::Value childNodes (int const parent_depth)
 
rapidjson::Value timer (DurationTreeMap::const_reference kv_pair)
 
std::string str (DurationTreeMap::const_reference kv_pair)
 

Private Member Functions

 JsonEncoder (JsonEncoder &json_encoder, DurationTreeNodes::const_iterator begin, DurationTreeNodes::const_iterator end)
 

Private Attributes

std::shared_ptr
< rapidjson::Document > 
doc_
 
rapidjson::Document::AllocatorType & alloc_
 
DurationTreeNodes::const_iterator begin_
 
DurationTreeNodes::const_iterator end_
 

Detailed Description

Definition at line 715 of file Logger.cpp.

Constructor & Destructor Documentation

logger::JsonEncoder::JsonEncoder ( JsonEncoder json_encoder,
DurationTreeNodes::const_iterator  begin,
DurationTreeNodes::const_iterator  end 
)
inlineprivate

Definition at line 722 of file Logger.cpp.

725  : doc_(json_encoder.doc_), alloc_(doc_->GetAllocator()), begin_(begin), end_(end) {}
DurationTreeNodes::const_iterator end_
Definition: Logger.cpp:720
DurationTreeNodes::const_iterator begin_
Definition: Logger.cpp:719
std::shared_ptr< rapidjson::Document > doc_
Definition: Logger.cpp:716
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717
logger::JsonEncoder::JsonEncoder ( )
inline

Definition at line 728 of file Logger.cpp.

729  : doc_(std::make_shared<rapidjson::Document>(rapidjson::kObjectType))
730  , alloc_(doc_->GetAllocator()) {}
std::shared_ptr< rapidjson::Document > doc_
Definition: Logger.cpp:716
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717

Member Function Documentation

rapidjson::Value logger::JsonEncoder::childNodes ( int const  parent_depth)
inline

Definition at line 752 of file Logger.cpp.

References alloc_, begin_, and end_.

Referenced by operator()(), and timer().

752  {
753  GetDepth const get_depth;
754  rapidjson::Value children(rapidjson::kArrayType);
755  for (auto itr = begin_; itr != end_; ++itr) {
756  int const depth = apply_visitor(get_depth, *itr);
757  if (depth <= parent_depth) {
758  break;
759  }
760  if (depth == parent_depth + 1) {
761  JsonEncoder json_encoder(*this, std::next(itr), end_);
762  children.PushBack(apply_visitor(json_encoder, *itr), alloc_);
763  }
764  }
765  return children;
766  }
DurationTreeNodes::const_iterator end_
Definition: Logger.cpp:720
DurationTreeNodes::const_iterator begin_
Definition: Logger.cpp:719
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717

+ Here is the caller graph for this function:

rapidjson::Value logger::JsonEncoder::operator() ( Duration const &  duration)
inline

Definition at line 731 of file Logger.cpp.

References alloc_, childNodes(), logger::Duration::depth_, logger::DebugTimerParams::file_, nvtx_helpers::anonymous_namespace{nvtx_helpers.cpp}::filename(), logger::DebugTimerParams::line_, logger::DebugTimerParams::name_, logger::Duration::relative_start_time(), and logger::Duration::value().

731  {
732  rapidjson::Value retval(rapidjson::kObjectType);
733  retval.AddMember("type", "duration", alloc_);
734  retval.AddMember("duration_ms", rapidjson::Value(duration.value()), alloc_);
735  retval.AddMember(
736  "start_ms", rapidjson::Value(duration.relative_start_time()), alloc_);
737  retval.AddMember("name", rapidjson::StringRef(duration->name_), alloc_);
738  retval.AddMember("file", filename(duration->file_), alloc_);
739  retval.AddMember("line", rapidjson::Value(duration->line_), alloc_);
740  retval.AddMember("children", childNodes(duration.depth_), alloc_);
741  return retval;
742  }
rapidjson::Value childNodes(int const parent_depth)
Definition: Logger.cpp:752
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717

+ Here is the call graph for this function:

rapidjson::Value logger::JsonEncoder::operator() ( DurationTree const &  duration_tree)
inline

Definition at line 743 of file Logger.cpp.

References alloc_, begin_, childNodes(), logger::DurationTree::depth_, logger::DurationTree::durations(), end_, logger::DurationTree::thread_id_, and to_string().

743  {
744  begin_ = duration_tree.durations().cbegin();
745  end_ = duration_tree.durations().cend();
746  rapidjson::Value retval(rapidjson::kObjectType);
747  retval.AddMember("type", "duration_tree", alloc_);
748  retval.AddMember("thread_id", std::to_string(duration_tree.thread_id_), alloc_);
749  retval.AddMember("children", childNodes(duration_tree.depth_), alloc_);
750  return retval;
751  }
DurationTreeNodes::const_iterator end_
Definition: Logger.cpp:720
rapidjson::Value childNodes(int const parent_depth)
Definition: Logger.cpp:752
std::string to_string(char const *&&v)
DurationTreeNodes::const_iterator begin_
Definition: Logger.cpp:719
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717

+ Here is the call graph for this function:

std::string logger::JsonEncoder::str ( DurationTreeMap::const_reference  kv_pair)
inline

Definition at line 785 of file Logger.cpp.

References alloc_, doc_, and timer().

Referenced by logger::logAndEraseDurationTree().

785  {
786  doc_->AddMember("timer", timer(kv_pair), alloc_);
787  rapidjson::StringBuffer buffer;
788  rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
789  doc_->Accept(writer);
790  return {buffer.GetString(), buffer.GetSize()};
791  }
rapidjson::Value timer(DurationTreeMap::const_reference kv_pair)
Definition: Logger.cpp:769
std::shared_ptr< rapidjson::Document > doc_
Definition: Logger.cpp:716
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

rapidjson::Value logger::JsonEncoder::timer ( DurationTreeMap::const_reference  kv_pair)
inline

Definition at line 769 of file Logger.cpp.

References alloc_, begin_, childNodes(), end_, and to_string().

Referenced by str().

769  {
770  begin_ = kv_pair.second->durations().cbegin();
771  end_ = kv_pair.second->durations().cend();
772  rapidjson::Value retval(rapidjson::kObjectType);
773  if (begin_ != end_) {
774  auto const& root_duration = boost::get<Duration>(*(begin_++));
775  retval.AddMember("type", "root", alloc_);
776  retval.AddMember("thread_id", std::to_string(kv_pair.first), alloc_);
777  retval.AddMember(
778  "total_duration_ms", rapidjson::Value(root_duration.value()), alloc_);
779  retval.AddMember("name", rapidjson::StringRef(root_duration->name_), alloc_);
780  retval.AddMember("children", childNodes(0), alloc_);
781  }
782  return retval;
783  }
DurationTreeNodes::const_iterator end_
Definition: Logger.cpp:720
rapidjson::Value childNodes(int const parent_depth)
Definition: Logger.cpp:752
std::string to_string(char const *&&v)
DurationTreeNodes::const_iterator begin_
Definition: Logger.cpp:719
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:717

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Member Data Documentation

rapidjson::Document::AllocatorType& logger::JsonEncoder::alloc_
private

Definition at line 717 of file Logger.cpp.

Referenced by childNodes(), operator()(), str(), and timer().

DurationTreeNodes::const_iterator logger::JsonEncoder::begin_
private

Definition at line 719 of file Logger.cpp.

Referenced by childNodes(), operator()(), and timer().

std::shared_ptr<rapidjson::Document> logger::JsonEncoder::doc_
private

Definition at line 716 of file Logger.cpp.

Referenced by str().

DurationTreeNodes::const_iterator logger::JsonEncoder::end_
private

Definition at line 720 of file Logger.cpp.

Referenced by childNodes(), operator()(), and timer().


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