DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
DocumentHandler.cpp
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 
14 // Framework include files
15 #include <XML/Printout.h>
16 #include <XML/UriReader.h>
17 #include <XML/DocumentHandler.h>
18 
19 // C/C++ include files
20 #include <memory>
21 #include <iostream>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #ifndef _WIN32
25 #include <libgen.h>
26 #endif
27 #include <TSystem.h>
28 
29 using namespace dd4hep::xml;
30 
31 namespace {
32  std::string undressed_file_name(const std::string& fn) {
33  if ( !fn.empty() ) {
34  TString tfn(fn);
35  gSystem->ExpandPathName(tfn);
36  return std::string(tfn.Data());
37  }
38  return fn;
39  }
40  int s_minPrintLevel = dd4hep::INFO;
41 
42  std::string _clean_fname(const std::string& filepath) {
43  // This function seems to resolve environment variables inside the filepath string and return resolved string
44  std::string const& temp = getEnviron(filepath);
45  std::string temp2 = undressed_file_name( temp.empty() ? filepath : temp );
46  if ( strncmp(temp2.c_str(),"file:",5)==0 ) return temp2.substr(5);
47  return temp2;
48  }
49 
50 }
51 
52 #ifndef __TIXML__
53 #include <xercesc/framework/LocalFileFormatTarget.hpp>
54 #include <xercesc/framework/StdOutFormatTarget.hpp>
55 #include <xercesc/framework/MemBufFormatTarget.hpp>
56 #include <xercesc/framework/MemBufInputSource.hpp>
57 #include <xercesc/sax/SAXParseException.hpp>
58 #include <xercesc/sax/EntityResolver.hpp>
59 #include <xercesc/sax/InputSource.hpp>
60 #include <xercesc/parsers/XercesDOMParser.hpp>
61 #include <xercesc/util/XMLEntityResolver.hpp>
62 #include <xercesc/util/PlatformUtils.hpp>
63 #include <xercesc/util/XercesDefs.hpp>
64 #include <xercesc/util/XMLUni.hpp>
65 #include <xercesc/util/XMLURL.hpp>
66 #include <xercesc/util/XMLString.hpp>
67 #include <xercesc/dom/DOM.hpp>
68 #include <xercesc/sax/ErrorHandler.hpp>
69 
70 using namespace xercesc;
71 
73 namespace dd4hep {
74 
76  namespace xml {
77 
80  public:
83  }
86  printout(DEBUG,"DocumentErrorHandler","+++ Destructing the XercesC DOM-XML document error handler....");
87  }
89  void resetErrors() {
90  }
92  void warning(const SAXParseException& /* e */) {
93  }
95  void error(const SAXParseException& e);
97  void fatalError(const SAXParseException& e);
99  virtual bool handleError(const DOMError& domError);
100  };
101 
103  bool DocumentErrorHandler::handleError(const DOMError& domError) {
104  std::string err = "DOM UNKNOWN: ";
105  switch (domError.getSeverity()) {
106  case DOMError::DOM_SEVERITY_WARNING:
107  err = "DOM WARNING: ";
108  break;
109  case DOMError::DOM_SEVERITY_ERROR:
110  err = "DOM ERROR: ";
111  break;
112  case DOMError::DOM_SEVERITY_FATAL_ERROR:
113  err = "DOM FATAL: ";
114  break;
115  default:
116  return false;
117  }
118  printout(FATAL,"DocumentErrorHandler", "+++ %s %s: %s", err.c_str(),
119  _toString(domError.getType()).c_str(),_toString(domError.getMessage()).c_str());
120  DOMLocator* loc = domError.getLocation();
121  if (loc) {
122  printout(FATAL,"DocumentErrorHandler","+++ Location: Line:%d Column: %d",
123  int(loc->getLineNumber()),int(loc->getColumnNumber()));
124  }
125  return false;
126  }
128  void DocumentErrorHandler::error(const SAXParseException& e) {
129  std::string m(_toString(e.getMessage()));
130  if (m.find("The values for attribute 'name' must be names or name tokens") != std::string::npos
131  || m.find("The values for attribute 'ID' must be names or name tokens") != std::string::npos
132  || m.find("for attribute 'name' must be Name or Nmtoken") != std::string::npos
133  || m.find("for attribute 'ID' must be Name or Nmtoken") != std::string::npos
134  || m.find("for attribute 'name' is invalid Name or NMTOKEN value") != std::string::npos
135  || m.find("for attribute 'ID' is invalid Name or NMTOKEN value") != std::string::npos)
136  return;
137  std::string sys(_toString(e.getSystemId()));
138  printout(ERROR,"XercesC","+++ Error at file \"%s\", Line %d Column: %d Message:%s",
139  sys.c_str(), int(e.getLineNumber()), int(e.getColumnNumber()), m.c_str());
140  }
142  void DocumentErrorHandler::fatalError(const SAXParseException& e) {
143  std::string m(_toString(e.getMessage()));
144  std::string sys(_toString(e.getSystemId()));
145  printout(FATAL,"XercesC","+++ FATAL Error at file \"%s\", Line %d Column: %d Message:%s",
146  sys.c_str(), int(e.getLineNumber()), int(e.getColumnNumber()), m.c_str());
147  }
148 
149  namespace {
150 
152  class dd4hepDOMParser : public XercesDOMParser {
157  class Resolver : public XMLEntityResolver {
158  dd4hepDOMParser* parser;
159  public:
160  Resolver(dd4hepDOMParser* p) : parser(p) {}
161  virtual ~Resolver() {}
162  virtual InputSource *resolveEntity(XMLResourceIdentifier *id)
163  { return parser->read_uri(id); }
164  };
165  Resolver m_resolver;
166  public:
168  dd4hepDOMParser(UriReader* rdr) : XercesDOMParser(), m_reader(rdr), m_resolver(this) {
169  //printout(FATAL,"XercesC","+++ Creating new parser");
170  setErrorHandler(&m_errHandle_tr);
171  setXMLEntityResolver(&m_resolver);
172  }
174  virtual ~dd4hepDOMParser() {
175  //printout(FATAL,"XercesC","+++ Deleting new parser");
176  }
178  InputSource *read_uri(XMLResourceIdentifier *id) {
179  if ( m_reader ) {
180  std::string buf, systemID(_toString(id->getSystemId()));
181  if ( m_reader->load(systemID, buf) ) {
182  const XMLByte* input = (const XMLByte*)XMLString::replicate(buf.c_str());
183 #if 0
184  std::string baseURI(_toString(id->getBaseURI()));
185  std::string schema(_toString(id->getSchemaLocation()));
186  std::string ns(_toString(id->getNameSpace()));
187  if ( s_minPrintLevel <= INFO ) {
188  printout(INFO,"XercesC","+++ Resolved URI: sysID:%s uri:%s ns:%s schema:%s",
189  systemID.c_str(), baseURI.c_str(), ns.c_str(), schema.c_str());
190  }
191 #endif
192  return new MemBufInputSource(input,buf.length(),systemID.c_str(),true);
193  }
194  }
195  return 0;
196  }
197  };
198 
200  XercesDOMParser* make_parser(UriReader* reader=0) {
201  XercesDOMParser* parser = new dd4hepDOMParser(reader);
202  parser->setValidationScheme(XercesDOMParser::Val_Auto);
203  parser->setValidationSchemaFullChecking(true);
204  parser->setCreateEntityReferenceNodes(false);
205  parser->setDoNamespaces(false);
206  parser->setDoSchema(true);
207 
209  //domParser->setDoSchema( true );
211  //domParser->setValidationSchemaFullChecking( true );
212  return parser;
213  }
214  }
215 
217  void dumpTree(DOMNode* doc, std::ostream& os) {
218  if ( doc ) {
219  DOMImplementation *imp = DOMImplementationRegistry::getDOMImplementation(Strng_t("LS"));
220  MemBufFormatTarget *tar = new MemBufFormatTarget();
221  DOMLSOutput *out = imp->createLSOutput();
222  DOMLSSerializer *wrt = imp->createLSSerializer();
223  out->setByteStream(tar);
224  wrt->getDomConfig()->setParameter(Strng_t("format-pretty-print"), true);
225  wrt->write(doc, out);
226  os << tar->getRawBuffer() << std::endl << std::flush;
227  out->release();
228  wrt->release();
229  return;
230  }
231  printout(ERROR,"dumpTree","+++ Cannot dump invalid document.");
232  }
233 
235  void dump_doc(DOMDocument* doc, std::ostream& os) {
236  dumpTree(doc,os);
237  }
239  void dump_tree(Handle_t elt, std::ostream& os) {
240  dumpTree((DOMNode*)elt.ptr(),os);
241  }
243  void dump_tree(Document doc, std::ostream& os) {
244  dump_doc((DOMDocument*)doc.ptr(),os);
245  }
246  }
247 }
248 
249 #ifdef DD4HEP_NONE
250 std::string DocumentHandler::system_path(Handle_t base, const std::string& fn) {
252  std::string path = system_path(base);
253  std::string dir = ::dirname((char*)path.c_str());
254  return dir+fn;
255 }
256 #else
257 
258 #include <TUri.h>
259 #include <TUrl.h>
260 #endif
261 
263 std::string DocumentHandler::system_path(Handle_t base, const std::string& fn) {
264  std::string path, dir = system_path(base);
265  TUri uri_base(dir.c_str()), uri_rel(fn.c_str());
266  TUrl url_base(dir.c_str());
267  path = TUri::MergePaths(uri_rel,uri_base);
268  TUri final(path.c_str());
269  final.Normalise();
270  path = url_base.GetProtocol()+std::string("://")+final.GetUri().Data();
271  if ( path[path.length()-1]=='/' ) path = path.substr(0,path.length()-1);
272  return path;
273 }
274 
277  DOMElement* elt = (DOMElement*)base.ptr();
278  std::string path = _toString(elt->getBaseURI());
279  if ( path[0] == '/' ) {
280  std::string tmp = "file:"+path;
281  return tmp;
282  }
283  return path;
284 }
285 
287 Document DocumentHandler::load(Handle_t base, const XMLCh* fname, UriReader* reader) const {
288  std::string path;
289  DOMElement* elt = (DOMElement*)base.ptr();
290  try {
291  Document doc;
292  Strng_t p = _toString(fname);
293  path = _toString(fname);
295  try {
296  XMLURL ref_url(elt->getBaseURI(), p);
297  path = _toString(ref_url.getURLText());
298  }
299  catch(...) {
300  }
301  return load(path, reader);
302  }
303  catch(const std::exception& exc) {
304  std::string b = _toString(elt->getBaseURI());
305  std::string e = _toString(fname);
306  printout(DEBUG,"DocumentHandler","+++ URI exception: %s -> %s [%s]",b.c_str(),e.c_str(),exc.what());
307  }
308  catch(...) {
309  std::string b = _toString(elt->getBaseURI());
310  std::string e = _toString(fname);
311  printout(DEBUG,"DocumentHandler","+++ URI exception: %s -> %s",b.c_str(),e.c_str());
312  }
313  if ( reader ) {
314  std::string buf, sys = system_path(base,fname);
315 #if 0
316  std::string buf, sys, dir = _toString(elt->getBaseURI());
317  std::string fn = _toString(fname);
318  dir = ::dirname((char*)dir.c_str());
319  while( fn.substr(0,3) == "../" ) {
320  dir = ::dirname((char*)dir.c_str());
321  fn = fn.substr(3);
322  }
323  sys = dir + "/" + fn;
324 #endif
325  if ( reader->load(sys, buf) ) {
326 #if 0
327  Document doc = parse(buf.c_str(), buf.length(), sys.c_str(), reader);
328  dumpTree(doc);
329  return doc;
330 #endif
331  return parse(buf.c_str(), buf.length(), sys.c_str(), reader);
332  }
333  }
334  return Document(0);
335 }
336 
338 Document DocumentHandler::load(const std::string& fname, UriReader* reader) const {
339  auto fname_clean = _clean_fname(fname);
340  std::string path;
341  printout(DEBUG,"DocumentHandler","+++ Loading document URI: %s",fname_clean.c_str());
342  try {
343  size_t idx = fname_clean.find(':');
344  size_t idq = fname_clean.find('/');
345  if ( idq == std::string::npos ) idq = 0;
346  XMLURL xerurl = (const XMLCh*) Strng_t(idx==std::string::npos || idx>idq ? "file:"+fname_clean : fname_clean);
347  std::string proto = _toString(xerurl.getProtocolName());
348  path = _toString(xerurl.getPath());
349  printout(DEBUG,"DocumentHandler","+++ protocol:%s path:%s",proto.c_str(), path.c_str());
350  }
351  catch(...) {
352  }
353  std::unique_ptr < XercesDOMParser > parser(make_parser(reader));
354  try {
355  if ( !path.empty() ) {
356  parser->parse(path.c_str());
357  if ( reader ) reader->parserLoaded(path);
358  }
359  else {
360  if ( reader && reader->load(fname_clean, path) ) {
361  MemBufInputSource src((const XMLByte*)path.c_str(), path.length(), fname.c_str(), false);
362  parser->parse(src);
363  return (XmlDocument*)parser->adoptDocument();
364  }
365  return (XmlDocument*)0;
366  }
367  }
368  catch (const std::exception& e) {
369  printout(ERROR,"DocumentHandler","+++ Exception(XercesC): parse(path):%s",e.what());
370  try {
371  parser->parse(fname.c_str());
372  if ( reader ) reader->parserLoaded(path);
373  }
374  catch (const std::exception& ex) {
375  printout(FATAL,"DocumentHandler","+++ Exception(XercesC): parse(URI):%s",ex.what());
376  throw;
377  }
378  }
379  printout(DEBUG,"DocumentHandler","+++ Document %s succesfully parsed with XercesC .....",path.c_str());
380  return (XmlDocument*)parser->adoptDocument();
381 }
382 
384 Document DocumentHandler::parse(const char* bytes, size_t length, const char* sys_id, UriReader* rdr) const {
385  std::unique_ptr < XercesDOMParser > parser(make_parser(rdr));
386  MemBufInputSource src((const XMLByte*)bytes, length, sys_id, false);
387  parser->parse(src);
388  DOMDocument* doc = parser->adoptDocument();
389  doc->setXmlStandalone(true);
390  doc->setStrictErrorChecking(true);
391  return (XmlDocument*) doc;
392 }
393 
395 int DocumentHandler::output(Document doc, const std::string& fname) const {
396  XMLFormatTarget *tar = 0;
397  DOMImplementation *imp = DOMImplementationRegistry::getDOMImplementation(Strng_t("LS"));
398  DOMLSOutput *out = imp->createLSOutput();
399  DOMLSSerializer *wrt = imp->createLSSerializer();
400 
401  if (fname.empty())
402  tar = new StdOutFormatTarget();
403  else {
404  std::string fn = undressed_file_name(fname);
405  tar = new LocalFileFormatTarget(Strng_t(fn));
406  }
407  out->setByteStream(tar);
408  wrt->getDomConfig()->setParameter(Strng_t("format-pretty-print"), true);
409  wrt->write((xercesc::DOMDocument*) doc.ptr(), out);
410  out->release();
411  wrt->release();
412  delete tar;
413  return 1;
414 }
415 
416 #else
417 
418 #include <XML/tinyxml.h>
419 
421 namespace dd4hep {
423  namespace xml {
424 
426  class DocumentErrorHandler {};
427 
428  union Xml {
429  Xml(void* ptr) : p(ptr) {}
430  Xml(const void* ptr) : cp(ptr) {}
431  void* p;
432  const void* cp;
433  TiXmlElement* e;
434  XmlElement* xe;
435  TiXmlAttribute* a;
436  Attribute attr;
437  TiXmlNode* n;
438  TiXmlDocument* d;
439  XmlDocument* xd;
440  };
441  }}
442 
444 std::string DocumentHandler::system_path(Handle_t base, const std::string& fname) {
445  std::string fn, clean = _clean_fname(fname);
446  struct stat st;
447  Element elt(base);
448  // Poor man's URI handling. Xerces is much much better here
449  if ( elt ) {
450  std::string bn = Xml(elt.document()).d->Value();
451 #ifdef _WIN32
452  char drive[_MAX_DRIVE], dir[_MAX_DIR], file[_MAX_FNAME], ext[_MAX_EXT];
453  ::_splitpath(bn.c_str(),drive,dir,file,ext);
454  fn = drive;
455  fn += ":";
456  fn += dir;
457  fn += "/";
458  fn += clean;
459 #else
460  fn = ::dirname((char*)bn.c_str());
461 #endif
462  fn += "/";
463  fn += _clean_fname(fname);
464  }
465  if ( ::stat(fn.c_str(),&st)==0 )
466  return fn;
467  else if ( ::stat(clean.c_str(),&st)==0 )
468  return clean;
469  return fname;
470 }
471 
473 std::string DocumentHandler::system_path(Handle_t base) {
474  std::string fn;
475  Element elt(base);
476  // Poor man's URI handling. Xerces is much much better here
477  if ( elt ) {
478  fn = Xml(elt.document()).d->Value();
479  }
480  return undressed_file_name(fn);
481 }
482 
484 Document DocumentHandler::load(const std::string& fname, UriReader* reader) const {
485  std::string clean = _clean_fname(fname);
486  if ( reader ) {
487  printout(WARNING,"DocumentHandler","+++ Loading document URI: %s %s",
488  fname.c_str(),"[URI Resolution is not supported by TiXML]");
489  }
490  else if ( s_minPrintLevel <= INFO ) {
491  printout(INFO,"DocumentHandler","+++ Loading document URI: %s [Resolved:'%s']",
492  fname.c_str(),clean.c_str());
493  }
494  TiXmlDocument* doc = new TiXmlDocument(clean.c_str());
495  bool result = false;
496  try {
497  result = doc->LoadFile();
498  if ( !result ) {
499  if ( doc->Error() ) {
500  printout(FATAL,"DocumentHandler","+++ Error (TinyXML) parsing XML document:%s [%s]",
501  fname.c_str(), clean.c_str());
502  printout(FATAL,"DocumentHandler","+++ Error (TinyXML) XML parsing error:%s",
503  doc->ErrorDesc());
504  printout(FATAL,"DocumentHandler","+++ Document:%s Location Line:%d Column:%d",
505  doc->Value(), doc->ErrorRow(), doc->ErrorCol());
506  except("dd4hep:XML","++ file:%s error:%s",clean.c_str(),doc->ErrorDesc());
507  }
508  except("dd4hep:XML","++ Unknown error (TinyXML) while parsing:%s",fname.c_str());
509  }
510  }
511  catch(std::exception& e) {
512  printout(ERROR,"DocumentHandler","+++ Exception (TinyXML): parse(path):%s",e.what());
513  }
514  if ( result ) {
515  if ( s_minPrintLevel <= INFO ) {
516  printout(INFO,"DocumentHandler","+++ Document %s succesfully parsed with TinyXML .....",
517  fname.c_str());
518  }
519  return (XmlDocument*)doc;
520  }
521  delete doc;
522  return 0;
523 }
524 
526 Document DocumentHandler::load(Handle_t base, const XmlChar* fname, UriReader* reader) const {
527  std::string path = system_path(base, fname);
528  return load(path,reader);
529 }
530 
532 Document DocumentHandler::parse(const char* bytes, size_t length, const char* /* sys_id */, UriReader* reader) const {
533  if ( reader ) {
534  printout(WARNING,"DocumentHandler","+++ Parsing memory document %s",
535  "[URI Resolution is not supported by TiXML]");
536  }
537  TiXmlDocument* doc = new TiXmlDocument();
538  try {
539  if ( bytes ) {
540  size_t str_len = ::strlen(bytes);
541  size_t len = length;
542  // TiXml does not support white spaces at the end. Check and remove.
543  if ( str_len+1 != len || bytes[str_len] != 0 || ::isspace(bytes[str_len-1]) ) {
544  std::unique_ptr<char[]> data(new char[len+1]);
545  char* buff = data.get();
546  try {
547  ::memcpy(buff, bytes, len+1);
548  buff[len] = 0;
549  for(size_t i=len-1; i>0 && (buff[i]==0 || ::isspace(buff[i])); --i)
550  buff[i] = 0;
551  if ( 0 == doc->Parse(buff) ) {
552  return (XmlDocument*)doc;
553  }
554  }
555  catch(...) {
556  }
557  }
558  if ( 0 == doc->Parse(bytes) ) {
559  return (XmlDocument*)doc;
560  }
561  if ( doc->Error() ) {
562  printout(FATAL,"DocumentHandler",
563  "+++ Error (TinyXML) while parsing XML string [%s]",
564  doc->ErrorDesc());
565  printout(FATAL,"DocumentHandler",
566  "+++ XML Document error: %s Location Line:%d Column:%d",
567  doc->Value(), doc->ErrorRow(), doc->ErrorCol());
568  throw std::runtime_error(std::string("dd4hep: ")+doc->ErrorDesc());
569  }
570  throw std::runtime_error("dd4hep: Unknown error while parsing XML document string with TiXml.");
571  }
572  throw std::runtime_error("dd4hep: FAILED to parse invalid document string [NULL] with TiXml.");
573  }
574  catch(std::exception& e) {
575  printout(ERROR,"DocumentHandler","+++ Exception (TinyXML): parse(string):%s",e.what());
576  }
577  delete doc;
578  return 0;
579 }
580 
582 int DocumentHandler::output(Document doc, const std::string& fname) const {
583  std::string fn = undressed_file_name(fname);
584  FILE* file = fn.empty() ? stdout : ::fopen(fn.c_str(),"w");
585  if ( !file ) {
586  printout(ERROR,"DocumentHandler","+++ Failed to open output file: %s",fname.c_str());
587  return 0;
588  }
589  TiXmlDocument* d = (TiXmlDocument*)doc.ptr();
590  d->Print(file);
591  if ( !fn.empty() ) ::fclose(file);
592  return 1;
593 }
594 
596 void dd4hep::xml::dump_tree(Handle_t elt, std::ostream& os) {
597  TiXmlNode* node = (TiXmlNode*)elt.ptr();
598  TiXmlPrinter printer;
599  printer.SetStreamPrinting();
600  node->Accept( &printer );
601  os << printer.Str();
602 }
603 
605 void dd4hep::xml::dump_tree(Document doc, std::ostream& os) {
606  TiXmlDocument* node = (TiXmlDocument*)doc.ptr();
607  TiXmlPrinter printer;
608  printer.SetStreamPrinting();
609  node->Accept( &printer );
610  os << printer.Str();
611 }
612 #endif
613 
614 
617 
620 
623  int tmp = s_minPrintLevel;
624  s_minPrintLevel = level;
625  return tmp;
626 }
627 
630  const char comment[] = "\n"
631  " +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"
632  " ++++ dd4hep generated alignment file using the ++++\n"
633  " ++++ dd4hep Detector description XML generator. ++++\n"
634  " ++++ ++++\n"
635  " ++++ Parser:"
637  " ++++\n"
638  " ++++ ++++\n"
639  " ++++ M.Frank CERN/LHCb ++++\n"
640  " +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n ";
641  return comment;
642 }
643 
645 Document DocumentHandler::load(const std::string& fname) const {
646  return load(fname, 0);
647 }
648 
650 Document DocumentHandler::load(Handle_t base, const XmlChar* fname) const {
651  return load(base, fname, 0);
652 }
653 
655 Document DocumentHandler::parse(const char* bytes, size_t length) const {
656  return parse(bytes, length, "xml-memory-buffer", 0);
657 }
658 
660 std::string DocumentHandler::system_path(Handle_t base, const XmlChar* fname) {
661  std::string fn = _toString(fname);
662  return system_path(base, fn);
663 }
664 
666 std::string DocumentHandler::system_directory(Handle_t base, const XmlChar* fname) {
667  std::string path = system_path(base,fname);
668  std::string dir = ::dirname((char*)path.c_str());
669  return dir;
670 }
671 
674  std::string path = system_path(base);
675  std::string dir = ::dirname((char*)path.c_str());
676  return dir;
677 }
678 
680 Document DocumentHandler::create(const char* tag, const char* comment) const {
681  std::string top(tag);
682  std::string empty = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n";
683  empty += "<" + top + "/>\0\0";
684  Document doc = parse(empty.c_str(), empty.length() + 1);
685  if (comment) {
686  Element top_elt = doc.root();
687  top_elt.addComment(comment);
688  }
689  return doc;
690 }
691 
692 // Create new XML document by parsing empty xml buffer
693 Document DocumentHandler::create(const std::string& tag, const std::string& comment) const {
694  return create(tag.c_str(), comment.c_str());
695 }
696 
699  dump_tree(elt,std::cout);
700 }
701 
704  dump_tree(doc,std::cout);
705 }
TiXmlElement
TinyXML class. See http://www.grinninglizard.com/tinyxml.
Definition: tinyxml.h:1069
dd4hep::xml::DocumentHandler::create
Document create(const char *tag, const char *comment=0) const
Create new XML document by parsing empty xml buffer.
Definition: DocumentHandler.cpp:680
TiXmlDocument::Print
void Print() const
Definition: tinyxml.h:1696
UriReader.h
TiXmlDocument
TinyXML class. See http://www.grinninglizard.com/tinyxml.
Definition: tinyxml.h:1547
dd4hep::xml::DocumentErrorHandler::~DocumentErrorHandler
virtual ~DocumentErrorHandler()
Destructor.
Definition: DocumentHandler.cpp:85
TiXmlDocument::ErrorCol
int ErrorCol() const
The column where the error occured. See ErrorRow()
Definition: tinyxml.h:1648
dd4hep::xml::UriReader::load
virtual bool load(const std::string &system_id, std::string &data)
Resolve a given URI to a string containing the data.
Definition: UriReader.cpp:22
TiXmlPrinter::Str
const std::string & Str()
Return the result.
Definition: tinyxml.h:2003
dd4hep::error
std::size_t error(const std::string &src, const std::string &msg)
Definition: RootDictionary.h:67
ns
Helper structure to shortcut type definitions for the factories.
Definition: Factories.h:204
dd4hep::exception
void exception(const std::string &src, const std::string &msg)
Definition: RootDictionary.h:69
dd4hep::xml::Attribute
const XmlAttr * Attribute
Definition: XMLElements.h:38
dd4hep::xml::DocumentErrorHandler::fatalError
void fatalError(const SAXParseException &e)
Fatal error handler.
Definition: DocumentHandler.cpp:142
dd4hep::xml::DocumentHandler::load
virtual Document load(const std::string &fname) const
Load XML file and parse it.
Definition: DocumentHandler.cpp:645
tinyxml.h
dd4hep::xml::Handle_t
Class to easily access the properties of single XmlElements.
Definition: XMLElements.h:380
TiXmlDocument::Error
bool Error() const
Definition: tinyxml.h:1622
dd4hep::xml::UriReader::parserLoaded
virtual void parserLoaded(const std::string &system_id)
Inform reader about a locally (e.g. by XercesC) handled source load.
Definition: UriReader.cpp:27
m_reader
UriReader * m_reader
Pointer to URI reader.
Definition: DocumentHandler.cpp:154
TiXmlDocument::ErrorRow
int ErrorRow() const
Definition: tinyxml.h:1645
TiXmlDocument::Parse
virtual const char * Parse(const char *p, TiXmlParsingData *data=0, TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING) override
Definition: tinyxmlparser_inl.h:733
parser
dd4hepDOMParser * parser
Definition: DocumentHandler.cpp:158
dd4hep::xml::parse
void parse(Handle_t e, RotationZYX &rot)
Convert rotation XML objects to dd4hep::RotationZYX.
Definition: XMLParsers.cpp:47
DocumentHandler.h
TiXmlDocument::Accept
virtual bool Accept(TiXmlVisitor *content) const override
Definition: tinyxml_inl.h:1183
dd4hep::xml::DocumentErrorHandler::resetErrors
void resetErrors()
Reset errors (Noop)
Definition: DocumentHandler.cpp:89
TiXmlAttribute
TinyXML class. See http://www.grinninglizard.com/tinyxml.
Definition: tinyxml.h:880
dd4hep::xml
Namespace for the AIDA detector description toolkit supporting XML utilities.
Definition: ConditionsTags.h:27
dd4hep::xml::Document::ptr
DOC ptr() const
Accessot to DOM document behaviour.
Definition: XMLElements.h:717
dd4hep::xml::dump_doc
void dump_doc(DOMDocument *doc, std::ostream &os)
Dump DOM tree using XercesC handles.
Definition: DocumentHandler.cpp:235
dd4hep::xml::_toString
std::string _toString(const Attribute attr)
Convert xml attribute to STL string.
Definition: XMLElements.cpp:237
TiXmlNode
TinyXML class. See http://www.grinninglizard.com/tinyxml.
Definition: tinyxml.h:434
dd4hep::xml::DocumentErrorHandler::warning
void warning(const SAXParseException &)
Warnings callback. Ignore them.
Definition: DocumentHandler.cpp:92
dd4hep::xml::Strng_t
Helper class to encapsulate a unicode string.
Definition: XMLElements.h:170
m_resolver
Resolver m_resolver
Definition: DocumentHandler.cpp:165
Xml::d
xercesc::DOMDocument * d
Definition: XMLElements.cpp:137
dd4hep::xml::DocumentHandler::defaultComment
static std::string defaultComment()
Default comment string.
Definition: DocumentHandler.cpp:629
TiXmlDocument::ErrorDesc
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
Definition: tinyxml.h:1627
XML_IMPLEMENTATION_TYPE
#define XML_IMPLEMENTATION_TYPE
Definition: config.h:63
dd4hep::xml::UriReader
Class supporting to read data given a URI.
Definition: UriReader.h:35
dd4hep::xml::DocumentHandler::parse
virtual Document parse(const char *doc_string, size_t length) const
Parse a standalong XML string into a document.
Definition: DocumentHandler.cpp:655
dd4hep::xml::Document
Class supporting the basic functionality of an XML document.
Definition: XMLElements.h:697
DOMErrorHandler
XercesC internal class. Not described here.
Definition: DD4hepGroups.h:67
dd4hep::xml::DocumentHandler::setMinimumPrintLevel
static int setMinimumPrintLevel(int level)
Set minimum print level.
Definition: DocumentHandler.cpp:622
dd4hep::xml::DocumentHandler::output
virtual int output(Document doc, const std::string &fname) const
Write xml document to output file (stdout if file name empty)
Definition: DocumentHandler.cpp:395
dd4hep::xml::DocumentErrorHandler
XML-DOM ERror handler class for the XercesC document parser.
Definition: DocumentHandler.cpp:79
TiXmlNode::Value
const char * Value() const
Definition: tinyxml.h:490
TiXmlPrinter::SetStreamPrinting
void SetStreamPrinting()
Definition: tinyxml.h:1988
dd4hep::xml::XmlChar
XERCES_XMLCH_T XmlChar
Use the definition from the autoconf header of Xerces:
Definition: config.h:52
Xml
Union to ease castless object access when using XercesC.
Definition: XMLElements.cpp:129
dd4hep::xml::Element
User abstraction class to manipulate XML elements within a document.
Definition: XMLElements.h:769
dd4hep::xml::dump_tree
void dump_tree(Handle_t elt)
Dump partial or full XML trees to stdout.
Definition: DocumentHandler.cpp:698
TiXmlDocument::LoadFile
bool LoadFile(TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING)
Definition: tinyxml_inl.h:951
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::xml::DocumentErrorHandler::DocumentErrorHandler
DocumentErrorHandler()
Constructor.
Definition: DocumentHandler.cpp:82
dd4hep::xml::getEnviron
std::string getEnviron(const std::string &env)
Helper function to lookup environment from the expression evaluator.
Definition: XMLElements.cpp:406
dd4hep::xml::DocumentErrorHandler::error
void error(const SAXParseException &e)
Error handler.
Definition: DocumentHandler.cpp:128
dd4hep::xml::DocumentHandler::system_directory
static std::string system_directory(Handle_t base)
System directory of a given XML entity.
Definition: DocumentHandler.cpp:673
dd4hep::xml::DocumentHandler::~DocumentHandler
virtual ~DocumentHandler()
Default destructor.
Definition: DocumentHandler.cpp:619
m_errHandle_tr
DocumentErrorHandler m_errHandle_tr
Xerces Error handler.
Definition: DocumentHandler.cpp:156
dd4hep::xml::dumpTree
void dumpTree(XmlDocument *doc)
Dump DOM tree of a document.
TiXmlNode::Accept
virtual bool Accept(TiXmlVisitor *visitor) const =0
dd4hep::xml::DocumentHandler::DocumentHandler
DocumentHandler()
Default constructor.
Definition: DocumentHandler.cpp:616
dd4hep::xml::DocumentHandler::system_path
static std::string system_path(Handle_t base)
System ID of a given XML entity.
Definition: DocumentHandler.cpp:276
TiXmlPrinter
TinyXML class. See http://www.grinninglizard.com/tinyxml.
Definition: tinyxml.h:1946
dd4hep::xml::DocumentErrorHandler::handleError
virtual bool handleError(const DOMError &domError)
Dom Error handler callback.
Definition: DocumentHandler.cpp:103
dd4hep::xml::Handle_t::ptr
Elt_t ptr() const
Direct access to the XmlElement by function.
Definition: XMLElements.h:401
ErrorHandler
XercesC internal class. Not described here.
Definition: DD4hepGroups.h:64
dd4hep::xml::Element::addComment
void addComment(const XmlChar *text) const
Add comment node to the element.
Definition: XMLElements.cpp:1138
dd4hep::xml::Document::root
Handle_t root() const
Access the ROOT eleemnt of the DOM document.
Definition: XMLElements.cpp:1043
Printout.h