DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Elements.h
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 // Author : M.Frank
11 //
12 //==========================================================================
13 #ifndef JSON_ELEMENTS_H
14 #define JSON_ELEMENTS_H
15 
16 // C/C++ include files
17 #include <cmath>
18 #include <string>
19 #include <vector>
20 
21 // Framework include files
22 #include <JSON/config.h>
23 
24 #ifndef RAD_2_DEGREE
25 #define RAD_2_DEGREE 57.295779513082320876798154814105
26 #endif
27 #ifndef M_PI
28 #define M_PI 3.14159265358979323846
29 #endif
30 
32 namespace dd4hep {
33 
35  namespace json {
36 
37  typedef const JsonAttr* Attribute;
38 
40  std::string _toString(const Attribute attr);
42  std::string _toString(const char *toTranscode);
44  std::string _toString(const char* s);
46  std::string _toString(const std::string& s);
48  std::string _toString(unsigned long i, const char* fmt = "%lu");
50  std::string _toString(unsigned int i, const char* fmt = "%u");
52  std::string _toString(int i, const char* fmt = "%d");
54  std::string _toString(long i, const char* fmt = "%ld");
56  std::string _toString(float d, const char* fmt = "%.17e");
58  std::string _toString(double d, const char* fmt = "%.17e");
60  std::string _ptrToString(const void* p, const char* fmt = "%p");
62  template <typename T> std::string _toString(const T* p, const char* fmt = "%p")
63  { return _ptrToString((void*)p,fmt); }
64 
66  template <typename T> void _toDictionary(const char* name, T value);
68  void _toDictionary(const char* name, const char* value);
70  inline void _toDictionary(const std::string& name, const char* value)
71  { _toDictionary(name.c_str(), value); }
73  void _toDictionary(const char* name, float value);
75  void _toDictionary(const char* name, double value);
77  std::string getEnviron(const std::string& env);
78 
80  bool _toBool(const char* value);
82  int _toInt(const char* value);
84  long _toLong(const char* value);
86  float _toFloat(const char* value);
88  double _toDouble(const char* value);
89 
91 
102  class NodeList {
103  public:
104  typedef std::pair<JsonElement::second_type::assoc_iterator,JsonElement::second_type::assoc_iterator> iter_t;
105  std::string m_tag;
107  mutable iter_t m_ptr;
108 
110  NodeList(const NodeList& l);
112  NodeList(JsonElement* frst, const std::string& tag);
114  ~NodeList();
116  JsonElement* reset();
118  JsonElement* next() const;
120  JsonElement* previous() const;
122  NodeList& operator=(const NodeList& l);
123  };
124 
126 
134  class Handle_t {
135  public:
136  // Abbreviation for internal use
137  typedef JsonElement* Elt_t;
138 
140  mutable Elt_t m_node;
141 
143  Handle_t(Elt_t e = 0) : m_node(e) { }
145  Elt_t operator->() const { return m_node; }
147  operator Elt_t() const { return m_node; }
149  Elt_t ptr() const { return m_node; }
151  const char* rawTag() const;
153  const char* rawText() const;
155  const char* rawValue() const;
157  std::string tag() const { return _toString(rawTag()); }
159  std::string text() const { return _toString(rawText()); }
161  std::string value() const { return _toString(rawValue()); }
162 
163  /*** Attribute handling */
165  const char* attr_name(const Attribute attr) const;
167  const char* attr_value(const Attribute attr) const;
169  const char* attr_value(const char* attr) const;
171  const char* attr_value_nothrow(const char* attr) const;
172 
174  Attribute attr_ptr(const char* attr) const;
176  Attribute attr_nothrow(const char* tag) const;
178  bool hasAttr(const char* t) const;
180  std::vector<Attribute> attributes() const;
182  template <class T> T attr(const Attribute a) const {
183  return this->attr<T>(this->attr_name(a));
184  }
186  template <class T> T attr(const char* name) const;
187 
188  /*** DOM Element child handling */
190  bool hasChild(const char* tag) const;
192  Handle_t child(const char* tag, bool throw_exception = true) const;
194  NodeList children(const char* tag) const;
196  size_t numChildren(const char* tag, bool throw_exception) const;
197  };
198 
199 #define INLINE inline
200  template <> INLINE Attribute Handle_t::attr<Attribute>(const char* tag_value) const {
201  return attr_ptr(tag_value);
202  }
203 
204  template <> INLINE const char* Handle_t::attr<const char*>(const char* tag_value) const {
205  return attr_value(tag_value);
206  }
207 
208  template <> INLINE bool Handle_t::attr<bool>(const char* tag_value) const {
209  return _toBool(attr_value(tag_value));
210  }
211 
212  template <> INLINE int Handle_t::attr<int>(const char* tag_value) const {
213  return _toInt(attr_value(tag_value));
214  }
215 
216  template <> INLINE long Handle_t::attr<long>(const char* tag_value) const {
217  return _toLong(attr_value(tag_value));
218  }
219 
220  template <> INLINE float Handle_t::attr<float>(const char* tag_value) const {
221  return _toFloat(attr_value(tag_value));
222  }
223 
224  template <> INLINE double Handle_t::attr<double>(const char* tag_value) const {
225  return _toDouble(attr_value(tag_value));
226  }
227 
228  template <> INLINE std::string Handle_t::attr<std::string>(const char* tag_value) const {
229  return _toString(attr_value(tag_value));
230  }
231 
233 
238  class Collection_t : public Handle_t {
239  public:
243  Collection_t(Handle_t node, const char* tag);
247  Collection_t& reset();
249  size_t size() const;
251  void operator++() const;
253  void operator++(int) const;
255  void operator--() const;
257  void operator--(int) const;
259  Elt_t current() const {
260  return m_node;
261  }
263  void throw_loop_exception(const std::exception& e) const;
265  template <class T> void for_each(T oper) const {
266  try {
267  for (const Collection_t& c = *this; c; ++c)
268  oper(*this);
269  }
270  catch (const std::exception& e) {
272  }
273  }
275  template <class T> void for_each(const char* tag_name, T oper) const {
276  try {
277  for (const Collection_t& c = *this; c; ++c)
278  Collection_t(c.m_node, tag_name).for_each(oper);
279  }
280  catch (const std::exception& e) {
282  }
283  }
284  };
285 
287 
295  class Document {
296  public:
297  typedef JsonElement* DOC;
299 
301  Document(DOC d=0) : m_doc(d) {
302  }
304  operator DOC() const {
305  return m_doc;
306  }
308  DOC operator->() const {
309  return m_doc;
310  }
312  DOC ptr() const {
313  return m_doc;
314  }
316  Handle_t root() const;
317  };
318 
320 
331  class DocumentHolder : public Document {
332  public:
335  }
338  }
342  virtual ~DocumentHolder();
343  };
344 
346 
357  class Element {
358  public:
361 
364 
366  Element(const Handle_t& e) : m_element(e) { }
368  Element(const Element& e) : m_element(e.m_element) { }
369 
371  Element& operator=(const Element& c) {
372  m_element = c.m_element;
373  return *this;
374  }
377  m_element = handle;
378  return *this;
379  }
381  operator bool() const { return 0 != m_element.ptr(); }
383  bool operator!() const { return 0 == m_element.ptr(); }
385  operator Handle_t() const { return m_element; }
387  operator Elt_t() const { return m_element; }
389  Elt_t ptr() const { return m_element; }
391  std::string tag() const { return m_element.tag(); }
393  const char* tagName() const { return m_element.rawTag(); }
395  std::string text() const { return m_element.text(); }
397  bool hasAttr(const char* name) const {return m_element.hasAttr(name); }
399  template <class T> T attr(const char* tag_value) const
400  { return m_element.attr<T>(tag_value); }
402  const char* attr_name(const Attribute a) const
403  { return m_element.attr_name(a); }
405  const char* attr_value(const Attribute a) const
406  { return m_element.attr_value(a); }
408  size_t numChildren(const char* tag_value, bool exc = true) const
409  { return m_element.numChildren(tag_value, exc); }
411  std::vector<Attribute> attributes() const
412  { return m_element.attributes(); }
414  Attribute getAttr(const char* name) const;
416  Handle_t child(const char* tag_value, bool except = true) const
417  { return m_element.child(tag_value, except); }
419  bool hasChild(const char* tag_value) const
420  { return m_element.hasChild(tag_value); }
421  };
422 
424  class DocumentHandler;
425 #undef INLINE
426 
427  void dumpTree(Handle_t elt);
428  void dumpTree(Element elt);
429  void dumpTree(const JsonElement* elt);
430 
431  } /* End namespace json */
432 } /* End namespace dd4hep */
433 #endif // JSON_ELEMENTS_H
dd4hep::json::Handle_t::attr_name
const char * attr_name(const Attribute attr) const
Access attribute name (throws exception if not present)
Definition: Elements.cpp:331
dd4hep::json::Element::m_element
Handle_t m_element
The underlying object holding the JsonElement pointer.
Definition: Elements.h:363
dd4hep::json::Collection_t::size
size_t size() const
Access the collection size. Avoid this call – sloooow!
Definition: Elements.cpp:400
dd4hep::json::Handle_t::Elt_t
JsonElement * Elt_t
Definition: Elements.h:137
dd4hep::json::Element::hasChild
bool hasChild(const char *tag_value) const
Check the existence of a child with a given tag name.
Definition: Elements.h:419
dd4hep::json::Handle_t::Handle_t
Handle_t(Elt_t e=0)
Initializing constructor.
Definition: Elements.h:143
dd4hep::json::Collection_t::for_each
void for_each(const char *tag_name, T oper) const
Loop processor using function object.
Definition: Elements.h:275
dd4hep::json::Element::operator!
bool operator!() const
operator NOT: check handle validity
Definition: Elements.h:383
dd4hep::json::Collection_t::operator++
void operator++() const
Operator to advance the collection (pre increment)
Definition: Elements.cpp:412
dd4hep::json::_toInt
int _toInt(const char *value)
Conversion function from raw unicode string to int.
Definition: Elements.cpp:145
dd4hep::json::_toBool
bool _toBool(const char *value)
Conversion function from raw unicode string to bool.
Definition: Elements.cpp:149
dd4hep::json::Collection_t::Collection_t
Collection_t(Handle_t node, const char *tag)
Constructor over JsonElements with a given tag name.
Definition: Elements.cpp:382
dd4hep::json::DocumentHolder::assign
DocumentHolder & assign(DOC d)
Assign new document. Old document is dropped.
Definition: Elements.cpp:364
dd4hep::json::_ptrToString
std::string _ptrToString(const void *p, const char *fmt="%p")
Format void pointer (64 bits) to string with arbitrary format.
Definition: Elements.cpp:137
dd4hep::json::NodeList::~NodeList
~NodeList()
Default destructor.
Definition: Elements.cpp:203
dd4hep::json::Element::attr_name
const char * attr_name(const Attribute a) const
Access attribute name (throws exception if not present)
Definition: Elements.h:402
dd4hep::json::Document::Document
Document(DOC d=0)
Constructor.
Definition: Elements.h:301
dd4hep::json::Collection_t::throw_loop_exception
void throw_loop_exception(const std::exception &e) const
Helper function to throw an exception.
Definition: Elements.cpp:405
dd4hep::json::Handle_t::tag
std::string tag() const
Text access to the element's tag.
Definition: Elements.h:157
dd4hep::exception
void exception(const std::string &src, const std::string &msg)
Definition: RootDictionary.h:69
dd4hep::json::Handle_t::m_node
Elt_t m_node
The pointer to the JsonElement.
Definition: Elements.h:140
dd4hep::json::Document::m_doc
DOC m_doc
Definition: Elements.h:298
dd4hep::json::Handle_t::attr
T attr(const Attribute a) const
Access typed attribute value by the JsonAttr.
Definition: Elements.h:182
dd4hep::json::Handle_t::attr_value
const char * attr_value(const Attribute attr) const
Access attribute value by the attribute (throws exception if not present)
Definition: Elements.cpp:344
dd4hep::json::_toString
std::string _toString(const Attribute attr)
Convert json attribute to STL string.
Definition: Elements.cpp:80
dd4hep::json::Attribute
const JsonAttr * Attribute
Definition: Elements.h:37
dd4hep::json::NodeList::operator=
NodeList & operator=(const NodeList &l)
Assignment operator.
Definition: Elements.cpp:236
dd4hep::json::Collection_t::reset
Collection_t & reset()
Reset the collection object to restart the iteration.
Definition: Elements.cpp:394
dd4hep::json::Element::tag
std::string tag() const
Access the tag name of this element.
Definition: Elements.h:391
dd4hep::json::_toFloat
float _toFloat(const char *value)
Conversion function from raw unicode string to float.
Definition: Elements.cpp:157
dd4hep::json::Element::attr
T attr(const char *tag_value) const
Access attribute with implicit return type conversion.
Definition: Elements.h:399
dd4hep::json::NodeList::m_node
JsonElement * m_node
Definition: Elements.h:106
dd4hep::json::_toLong
long _toLong(const char *value)
Conversion function from raw unicode string to long.
Definition: Elements.cpp:141
dd4hep::json::Element::Elt_t
Handle_t::Elt_t Elt_t
Simplification type declarations.
Definition: Elements.h:360
dd4hep::json::Element::hasAttr
bool hasAttr(const char *name) const
Check for the existence of a named attribute.
Definition: Elements.h:397
dd4hep::json::NodeList::next
JsonElement * next() const
Advance to next element.
Definition: Elements.cpp:218
dd4hep::json::Handle_t::children
NodeList children(const char *tag) const
Access a group of children identified by the same tag name.
Definition: Elements.cpp:309
dd4hep::json::Handle_t::attr_nothrow
Attribute attr_nothrow(const char *tag) const
Access attribute pointer by the attribute's unicode name (no exception thrown if not present)
Definition: Elements.cpp:261
dd4hep::json::NodeList::reset
JsonElement * reset()
Reset the nodelist - e.g. restart iteration from beginning.
Definition: Elements.cpp:207
dd4hep::json::JsonElement
boost::property_tree::ptree::value_type JsonElement
Definition: config.h:33
dd4hep::json::Element::operator=
Element & operator=(const Element &c)
Assignment operator.
Definition: Elements.h:371
dd4hep::json::Element::operator=
Element & operator=(Handle_t handle)
Assignment operator.
Definition: Elements.h:376
dd4hep::json::NodeList::m_ptr
iter_t m_ptr
Definition: Elements.h:107
dd4hep::json::Handle_t::hasAttr
bool hasAttr(const char *t) const
Check for the existence of a named attribute.
Definition: Elements.cpp:266
dd4hep::json::Handle_t::rawText
const char * rawText() const
Unicode text access to the element's text.
Definition: Elements.cpp:251
dd4hep::json::Document
Class supporting the basic functionality of an JSON document.
Definition: Elements.h:295
dd4hep::json::Element::getAttr
Attribute getAttr(const char *name) const
Access single attribute by its name.
Definition: Elements.cpp:378
dd4hep::json::Handle_t::rawValue
const char * rawValue() const
Unicode text access to the element's value.
Definition: Elements.cpp:256
dd4hep::json::DocumentHolder::DocumentHolder
DocumentHolder()
Default Constructor.
Definition: Elements.h:334
dd4hep::json::Handle_t::ptr
Elt_t ptr() const
Direct access to the JsonElement by function.
Definition: Elements.h:149
dd4hep::json::Collection_t::m_children
NodeList m_children
Reference to the list of child nodes.
Definition: Elements.h:241
dd4hep::json::_toDouble
double _toDouble(const char *value)
Conversion function from raw unicode string to double.
Definition: Elements.cpp:161
dd4hep::json::Document::DOC
JsonElement * DOC
Definition: Elements.h:297
dd4hep::json::Document::ptr
DOC ptr() const
Accessot to DOM document behaviour.
Definition: Elements.h:312
dd4hep::json::NodeList::m_tag
std::string m_tag
Definition: Elements.h:105
dd4hep::json::_toDictionary
void _toDictionary(const char *name, T value)
Helper function to populate the evaluator dictionary.
Definition: Elements.cpp:169
dd4hep::json::Collection_t::for_each
void for_each(T oper) const
Loop processor using function object.
Definition: Elements.h:265
dd4hep::json::NodeList
Class describing a list of JSON nodes.
Definition: Elements.h:102
dd4hep::json::Document::operator->
DOC operator->() const
Accessot to DOM document behaviour using arrow operator.
Definition: Elements.h:308
dd4hep::json::NodeList::NodeList
NodeList(const NodeList &l)
Copy constructor.
Definition: Elements.cpp:189
dd4hep::json::Element::tagName
const char * tagName() const
Access the tag name of this element.
Definition: Elements.h:393
dd4hep::json::Handle_t::numChildren
size_t numChildren(const char *tag, bool throw_exception) const
Access the number of children of this DOM element with a given tag name.
Definition: Elements.cpp:282
dd4hep::json::Handle_t::attributes
std::vector< Attribute > attributes() const
Retrieve a collection of all attributes of this DOM element.
Definition: Elements.cpp:271
dd4hep::json::Element::text
std::string text() const
Access the tag name of this element.
Definition: Elements.h:395
dd4hep::json::Element::child
Handle_t child(const char *tag_value, bool except=true) const
Access child by tag name. Thow an exception if required in case the child is not present.
Definition: Elements.h:416
dd4hep::json::Handle_t::operator->
Elt_t operator->() const
Direct access to the JsonElement using the operator->
Definition: Elements.h:145
dd4hep::json::DocumentHolder::~DocumentHolder
virtual ~DocumentHolder()
Standard destructor - releases the document.
Definition: Elements.cpp:374
dd4hep::json::NodeList::iter_t
std::pair< JsonElement::second_type::assoc_iterator, JsonElement::second_type::assoc_iterator > iter_t
Definition: Elements.h:104
dd4hep::json::Handle_t::rawTag
const char * rawTag() const
Unicode text access to the element's tag.
Definition: Elements.cpp:246
dd4hep::json::Handle_t::hasChild
bool hasChild(const char *tag) const
Check the existence of a child with a given tag name.
Definition: Elements.cpp:313
dd4hep::json::Handle_t::value
std::string value() const
Text access to the element's value.
Definition: Elements.h:161
dd4hep::json::dumpTree
void dumpTree(Handle_t elt)
Definition: Elements.cpp:436
dd4hep::json::Document::root
Handle_t root() const
Access the ROOT eleemnt of the DOM document.
Definition: Elements.cpp:356
dd4hep::json::Collection_t::operator--
void operator--() const
Operator to advance the collection (pre decrement)
Definition: Elements.cpp:420
dd4hep::json::DocumentHolder
Class supporting the basic functionality of an JSON document including ownership.
Definition: Elements.h:331
dd4hep::json::Element::attr_value
const char * attr_value(const Attribute a) const
Access attribute value by the attribute (throws exception if not present)
Definition: Elements.h:405
INLINE
#define INLINE
Definition: Elements.h:199
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::json::Element::Element
Element(const Element &e)
Constructor from JsonElement handle.
Definition: Elements.h:368
dd4hep::json::Handle_t
Class to easily access the properties of single JsonElements.
Definition: Elements.h:134
dd4hep::json::Handle_t::text
std::string text() const
Text access to the element's text.
Definition: Elements.h:159
dd4hep::json::Collection_t
Class to support the access to collections of JsonNodes (or JsonElements)
Definition: Elements.h:238
dd4hep::json::Element::numChildren
size_t numChildren(const char *tag_value, bool exc=true) const
Access the number of children of this element with a given tag name.
Definition: Elements.h:408
dd4hep::json::Element::Element
Element(const Handle_t &e)
Constructor from JsonElement handle.
Definition: Elements.h:366
dd4hep::json::Element::attributes
std::vector< Attribute > attributes() const
Retrieve a collection of all attributes of this element.
Definition: Elements.h:411
dd4hep::json::Handle_t::child
Handle_t child(const char *tag, bool throw_exception=true) const
Access a single child by its tag name (unicode)
Definition: Elements.cpp:297
dd4hep::json::Element::ptr
Elt_t ptr() const
Access to JsonElement pointer.
Definition: Elements.h:389
dd4hep::json::Element
User abstraction class to manipulate JSON elements within a document.
Definition: Elements.h:357
dd4hep::json::Handle_t::attr_value_nothrow
const char * attr_value_nothrow(const char *attr) const
Access attribute value by the attribute's unicode name (no exception thrown if not present)
Definition: Elements.cpp:349
dd4hep::json::Collection_t::current
Elt_t current() const
Access to current element.
Definition: Elements.h:259
dd4hep::json::getEnviron
std::string getEnviron(const std::string &env)
Helper function to lookup environment from the expression evaluator.
Definition: Elements.cpp:184
dd4hep::json::DocumentHolder::DocumentHolder
DocumentHolder(DOC d)
Constructor.
Definition: Elements.h:337
dd4hep::json::JsonAttr
boost::property_tree::ptree::value_type JsonAttr
Definition: config.h:32
handle
void handle(const O *o, const C &c, F pmf)
Definition: LCDDConverter.cpp:1104
dd4hep::json::Handle_t::attr
T attr(const char *name) const
Access typed attribute value by its unicode name.
config.h
dd4hep::json::NodeList::previous
JsonElement * previous() const
Go back to previous element.
Definition: Elements.cpp:227
dd4hep::json::Handle_t::attr_ptr
Attribute attr_ptr(const char *attr) const
Access attribute pointer by the attribute's unicode name (throws exception if not present)
Definition: Elements.cpp:318