LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
fhicl::detail::PrettifierAnnotated Class Reference

#include "PrettifierAnnotated.h"

Inheritance diagram for fhicl::detail::PrettifierAnnotated:
fhicl::ParameterSetWalker

Public Types

using key_t = std::string
 
using any_t = boost::any
 

Public Member Functions

 PrettifierAnnotated (unsigned initial_indent_level=0)
 
std::string result () const
 
void do_enter_table (key_t const &k, any_t const &a)
 
void do_enter_sequence (key_t const &k, any_t const &a)
 
void do_atom (key_t const &k, any_t const &a)
 
void do_before_action (key_t const &k, any_t const &a, ParameterSet const *ps)
 
void do_after_action ()
 
void do_exit_table (key_t const &k, any_t const &a)
 
void do_exit_sequence (key_t const &k, any_t const &a)
 

Private Member Functions

void before_action (key_t const &, any_t const &, ParameterSet const *) override
 
void after_action () override
 
void enter_table (key_t const &, any_t const &) override
 
void enter_sequence (key_t const &, any_t const &) override
 
void exit_table (key_t const &, any_t const &) override
 
void exit_sequence (key_t const &, any_t const &) override
 
void atom (key_t const &, any_t const &) override
 
void push_size_ (any_t const &)
 
void pop_size_ ()
 

Private Attributes

std::ostringstream buffer_
 
Indentation indent_
 
std::string curr_info_
 
std::string cached_info_
 
std::stack< std::size_t > sequence_sizes_
 
std::size_t curr_size_
 

Detailed Description

Definition at line 107 of file PrettifierAnnotated.h.

Member Typedef Documentation

using fhicl::ParameterSetWalker::any_t = boost::any
inherited

Definition at line 80 of file ParameterSetWalker.h.

using fhicl::ParameterSetWalker::key_t = std::string
inherited

Definition at line 79 of file ParameterSetWalker.h.

Constructor & Destructor Documentation

PrettifierAnnotated::PrettifierAnnotated ( unsigned  initial_indent_level = 0)

Definition at line 11 of file PrettifierAnnotated.cc.

References cached_info_, curr_info_, curr_size_, and sequence_sizes_.

Member Function Documentation

void PrettifierAnnotated::after_action ( )
overrideprivatevirtual

Reimplemented from fhicl::ParameterSetWalker.

Definition at line 30 of file PrettifierAnnotated.cc.

References cached_info_, and curr_info_.

Referenced by result().

void PrettifierAnnotated::atom ( key_t const &  key,
any_t const &  a 
)
overrideprivatevirtual

Implements fhicl::ParameterSetWalker.

Definition at line 76 of file PrettifierAnnotated.cc.

References buffer_, cached_info_, curr_info_, curr_size_, indent_, fhicl::detail::nl(), fhicl::detail::print_annotated_info(), fhicl::detail::atom::printed_prefix(), fhicl::detail::printed_suffix(), and fhicl::detail::atom::value().

Referenced by result().

77 {
79  << printed_suffix(key, curr_size_)
81 }
std::string printed_suffix(std::string const &key, std::size_t const sz)
std::string print_annotated_info(std::string const &curr_info, std::string const &cached_info)
std::string value(boost::any const &)
std::string printed_prefix(std::string const &key)
std::string nl(std::size_t i=1)
void PrettifierAnnotated::before_action ( key_t const &  key,
any_t const &  ,
ParameterSet const *  ps 
)
overrideprivatevirtual

Reimplemented from fhicl::ParameterSetWalker.

Definition at line 22 of file PrettifierAnnotated.cc.

References curr_info_, and fhicl::ParameterSet::get_src_info().

Referenced by result().

25 {
26  curr_info_ = ps->get_src_info(key);
27 }
void fhicl::ParameterSetWalker::do_after_action ( )
inlineinherited

Definition at line 104 of file ParameterSetWalker.h.

References fhicl::ParameterSetWalker::after_action().

Referenced by fhicl::ParameterSet::walk().

105  {
106  after_action();
107  }
void fhicl::ParameterSetWalker::do_atom ( key_t const &  k,
any_t const &  a 
)
inlineinherited

Definition at line 93 of file ParameterSetWalker.h.

References fhicl::ParameterSetWalker::atom().

Referenced by fhicl::ParameterSet::walk().

94  {
95  atom(k, a);
96  }
virtual void atom(key_t const &, any_t const &)=0
void fhicl::ParameterSetWalker::do_before_action ( key_t const &  k,
any_t const &  a,
ParameterSet const *  ps 
)
inlineinherited

Definition at line 99 of file ParameterSetWalker.h.

References fhicl::ParameterSetWalker::before_action().

Referenced by fhicl::ParameterSet::walk().

100  {
101  before_action(k, a, ps);
102  }
virtual void before_action(key_t const &, any_t const &, ParameterSet const *)
void fhicl::ParameterSetWalker::do_enter_sequence ( key_t const &  k,
any_t const &  a 
)
inlineinherited

Definition at line 88 of file ParameterSetWalker.h.

References fhicl::ParameterSetWalker::enter_sequence().

Referenced by fhicl::ParameterSet::walk().

89  {
90  enter_sequence(k, a);
91  }
virtual void enter_sequence(key_t const &, any_t const &)=0
void fhicl::ParameterSetWalker::do_enter_table ( key_t const &  k,
any_t const &  a 
)
inlineinherited

Definition at line 83 of file ParameterSetWalker.h.

References fhicl::ParameterSetWalker::enter_table().

Referenced by fhicl::ParameterSet::walk().

84  {
85  enter_table(k, a);
86  }
virtual void enter_table(key_t const &, any_t const &)=0
void fhicl::ParameterSetWalker::do_exit_sequence ( key_t const &  k,
any_t const &  a 
)
inlineinherited
void fhicl::ParameterSetWalker::do_exit_table ( key_t const &  k,
any_t const &  a 
)
inlineinherited

Definition at line 110 of file ParameterSetWalker.h.

References fhicl::ParameterSetWalker::exit_table().

Referenced by fhicl::ParameterSet::walk().

111  {
112  exit_table(k, a);
113  }
virtual void exit_table(key_t const &, any_t const &)
void PrettifierAnnotated::enter_sequence ( key_t const &  key,
any_t const &  a 
)
overrideprivatevirtual
void PrettifierAnnotated::enter_table ( key_t const &  key,
any_t const &   
)
overrideprivatevirtual

Implements fhicl::ParameterSetWalker.

Definition at line 38 of file PrettifierAnnotated.cc.

References buffer_, cached_info_, curr_info_, indent_, fhicl::detail::nl(), fhicl::detail::print_annotated_info(), fhicl::detail::table::printed_prefix(), and fhicl::detail::Indentation::push().

Referenced by result().

39 {
42  indent_.push();
43 }
std::string print_annotated_info(std::string const &curr_info, std::string const &cached_info)
std::string printed_prefix(std::string const &key)
std::string nl(std::size_t i=1)
void PrettifierAnnotated::exit_sequence ( key_t const &  key,
any_t const &   
)
overrideprivatevirtual
void PrettifierAnnotated::exit_table ( key_t const &  key,
any_t const &   
)
overrideprivatevirtual

Reimplemented from fhicl::ParameterSetWalker.

Definition at line 46 of file PrettifierAnnotated.cc.

References buffer_, fhicl::detail::table::closing_brace(), curr_size_, indent_, fhicl::detail::nl(), fhicl::detail::Indentation::pop(), and fhicl::detail::printed_suffix().

Referenced by result().

47 {
48  indent_.pop();
50  << printed_suffix(key, curr_size_) << nl();
51 }
std::string printed_suffix(std::string const &key, std::size_t const sz)
std::string nl(std::size_t i=1)
std::string closing_brace()
void PrettifierAnnotated::pop_size_ ( )
private

Definition at line 93 of file PrettifierAnnotated.cc.

References curr_size_, and sequence_sizes_.

Referenced by exit_sequence(), and result().

94 {
95  sequence_sizes_.pop();
97 }
std::stack< std::size_t > sequence_sizes_
void PrettifierAnnotated::push_size_ ( any_t const &  a)
private

Definition at line 86 of file PrettifierAnnotated.cc.

References curr_size_, and sequence_sizes_.

Referenced by enter_sequence(), and result().

87 {
88  sequence_sizes_.emplace(boost::any_cast<ps_sequence_t>(a).size());
90 }
std::stack< std::size_t > sequence_sizes_
std::string fhicl::detail::PrettifierAnnotated::result ( void  ) const
inline

Member Data Documentation

std::ostringstream fhicl::detail::PrettifierAnnotated::buffer_
private
std::string fhicl::detail::PrettifierAnnotated::cached_info_
private
std::string fhicl::detail::PrettifierAnnotated::curr_info_
private
std::size_t fhicl::detail::PrettifierAnnotated::curr_size_
private
Indentation fhicl::detail::PrettifierAnnotated::indent_
private

Definition at line 135 of file PrettifierAnnotated.h.

Referenced by atom(), enter_sequence(), enter_table(), exit_sequence(), and exit_table().

std::stack<std::size_t> fhicl::detail::PrettifierAnnotated::sequence_sizes_
private

Definition at line 138 of file PrettifierAnnotated.h.

Referenced by pop_size_(), PrettifierAnnotated(), and push_size_().


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