CMS 3D CMS Logo

EcalChannelStatusXMLTranslator.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <fstream>
4 #include <xercesc/dom/DOMNode.hpp>
5 #include <xercesc/dom/DOM.hpp>
6 #include <xercesc/parsers/XercesDOMParser.hpp>
9 #include <xercesc/util/XMLString.hpp>
10 #include <xercesc/sax/SAXException.hpp>
11 #include <xercesc/framework/LocalFileFormatTarget.hpp>
12 
15 
18 
19 using namespace XERCES_CPP_NAMESPACE;
20 using namespace xuti;
21 using namespace std;
22 
27 
28  XercesDOMParser* parser = new XercesDOMParser;
29  parser->setValidationScheme(XercesDOMParser::Val_Never);
30  parser->setDoNamespaces(false);
31  parser->setDoSchema(false);
32 
33  parser->parse(filename.c_str());
34 
35  DOMDocument* xmlDoc = parser->getDocument();
36  if (!xmlDoc) {
37  std::cout << "EcalChannelStatusXMLTranslator::Error parsing document" << std::endl;
38  return -1;
39  }
40 
41  DOMElement* elementRoot = xmlDoc->getDocumentElement();
42 
43  xuti::readHeader(elementRoot, header);
44 
45  DOMNode* cellnode = getChildNode(elementRoot, Cell_tag);
46 
47  while (cellnode) {
48  uint16_t csc = 0;
49 
50  DetId detid = readCellId(dynamic_cast<DOMElement*>(cellnode));
51 
52  DOMNode* c_node = getChildNode(cellnode, ChannelStatusCode_tag);
53  GetNodeData(c_node, csc);
54 
56  record[detid] = ecalCSC;
57 
58  cellnode = cellnode->getNextSibling();
59 
60  while (cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
61  cellnode = cellnode->getNextSibling();
62  }
63 
64  delete parser;
66  return 0;
67 }
68 
70  const EcalCondHeader& header,
71  const EcalChannelStatus& record) {
73 
74  std::fstream fs(filename.c_str(), ios::out);
75  fs << dumpXML(header, record);
76 
78 
79  return 0;
80 }
81 
83  unique_ptr<DOMImplementation> impl(DOMImplementationRegistry::getDOMImplementation(cms::xerces::uStr("LS").ptr()));
84 
85  DOMLSSerializer* writer = impl->createLSSerializer();
86  if (writer->getDomConfig()->canSetParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true))
87  writer->getDomConfig()->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true);
88 
89  DOMDocumentType* doctype = impl->createDocumentType(cms::xerces::uStr("XML").ptr(), nullptr, nullptr);
90  DOMDocument* doc = impl->createDocument(nullptr, cms::xerces::uStr(ChannelStatus_tag.c_str()).ptr(), doctype);
91 
92  DOMElement* root = doc->getDocumentElement();
93 
95 
96  for (int cellid = EBDetId::MIN_HASH; cellid < EBDetId::kSizeForDenseIndexing; ++cellid) {
97  uint32_t rawid = EBDetId::unhashIndex(cellid);
98 
99  if (!record[rawid].getStatusCode())
100  continue;
101 
102  DOMElement* cellnode = writeCell(root, rawid);
103 
104  WriteNodeWithValue(cellnode, ChannelStatusCode_tag, record[rawid].getStatusCode());
105  }
106 
107  for (int cellid = 0; cellid < EEDetId::kSizeForDenseIndexing; ++cellid) {
108  if (!EEDetId::validHashIndex(cellid))
109  continue;
110 
111  uint32_t rawid = EEDetId::unhashIndex(cellid);
112 
113  if (!record[rawid].getStatusCode())
114  continue;
115 
116  DOMElement* cellnode = writeCell(root, rawid);
117  WriteNodeWithValue(cellnode, ChannelStatusCode_tag, record[rawid].getStatusCode());
118  }
119 
120  std::string dump = cms::xerces::toString(writer->writeToString(root));
121  doc->release();
122  doctype->release();
123  writer->release();
124 
125  return dump;
126 }
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalChannelStatus &record)
def dumpXML(db, tag, since, filename='dump.xml')
static int readXML(const std::string &filename, EcalCondHeader &header, EcalChannelStatus &record)
void xercesTerminate()
Definition: Xerces.cc:23
void xercesInitialize()
Definition: Xerces.cc:18
static EEDetId unhashIndex(int hi)
Definition: EEDetId.cc:65
static std::string dumpXML(const EcalCondHeader &header, const EcalChannelStatus &record)
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
static bool validHashIndex(int i)
Definition: EEDetId.h:239
const std::string ChannelStatusCode_tag("ChannelStatusCode")
std::string toString(XMLCh const *toTranscode)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
static const int MIN_HASH
Definition: EBDetId.h:149
const std::string Cell_tag("cell")
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
ZStr< XMLCh > uStr(char const *str)
Definition: L1Track.h:19
Definition: DetId.h:17
void GetNodeData(xercesc::DOMNode *node, T &value)
get the node data
xercesc::DOMNode * getChildNode(xercesc::DOMNode *node, const std::string &nodename)
get the child of
const std::string ChannelStatus_tag("EcalChannelStatus")
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
Definition: EBDetId.h:110
xercesc::DOMElement * writeCell(xercesc::DOMNode *node, const DetId &detid)
Append a Cell node with attributes to.
const DetId readCellId(xercesc::DOMElement *node)
Assuming.