OmniSciDB  a5dc49c757
 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 717 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 724 of file Logger.cpp.

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

Definition at line 730 of file Logger.cpp.

731  : doc_(std::make_shared<rapidjson::Document>(rapidjson::kObjectType))
732  , alloc_(doc_->GetAllocator()) {}
std::shared_ptr< rapidjson::Document > doc_
Definition: Logger.cpp:718
rapidjson::Document::AllocatorType & alloc_
Definition: Logger.cpp:719

Member Function Documentation

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

Definition at line 754 of file Logger.cpp.

References alloc_, begin_, and end_.

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

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

+ Here is the caller graph for this function:

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

Definition at line 733 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().

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

+ Here is the call graph for this function:

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

Definition at line 745 of file Logger.cpp.

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

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

+ Here is the call graph for this function:

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

Definition at line 787 of file Logger.cpp.

References alloc_, doc_, and timer().

Referenced by logger::logAndEraseDurationTree().

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

+ 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 771 of file Logger.cpp.

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

Referenced by str().

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

+ 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 719 of file Logger.cpp.

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

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

Definition at line 721 of file Logger.cpp.

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

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

Definition at line 718 of file Logger.cpp.

Referenced by str().

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

Definition at line 722 of file Logger.cpp.

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


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