|
|
Go to the documentation of this file.
17 : myRegistry_(myreg), attributes_(), text_(), autoClear_(clearme) {}
24 const std::vector<std::string>&
names,
25 const std::vector<std::string>&
values,
32 for (
size_t i = 0;
i <
names.size(); ++
i) {
64 if (defaultNS ==
"!") {
69 size_t foundColon =
name.find(
':');
70 if (foundColon != std::string::npos) {
71 ns =
name.substr(0, foundColon);
72 rn =
name.substr(foundColon + 1);
76 std::string msg =
"DDXMLElement:getDDName failed. It was asked to make ";
77 msg +=
"a DDName using attribute: " + attname;
78 msg +=
" in position: " + std::to_string(aIndex) +
". There are ";
79 msg += std::to_string(
attributes_.size()) +
" entries in the element.";
81 return DDName(
"justToCompile",
"justToCompile");
95 msg +=
" in position " + std::to_string(aIndex) +
" when there are only ";
96 msg += std::to_string(
attributes_.size()) +
" in the element storage.\n";
108 std::vector<std::string> tv;
136 if (!
text_.empty()) {
140 std::string msg =
"DDXMLElement::appendText could not append to non-existent text.";
146 if (tindex >
text_.size()) {
147 std::string msg =
"DDXMLElement::getText tindex is greater than text_.size()).";
150 return text_[tindex];
165 os <<
"Output of current element attributes:" << std::endl;
167 for (DDXMLAttribute::const_iterator it = attribute.begin(); it != attribute.end(); ++it)
168 os << it->first <<
" = " << it->second <<
"\t";
177 tv.emplace_back(itnv->second);
const std::string & parent(void) const
access to parent element name
virtual void clear(void)
clear this element's contents.
virtual std::vector< std::string > getVectorAttribute(const std::string &name)
Returns a set of values as a std::vector of strings, given the attribute name.
void throwError(const std::string &keyMessage) const
format std::string for throw an error.
DDName is used to identify DDD entities uniquely.
virtual void stream(std::ostream &os) const
Allow for the elements to have their own streaming method, but also provide a default.
The main class for processing parsed elements.
virtual std::vector< DDXMLAttribute >::const_iterator end(void)
void loadAttributes(const std::string &elemName, const std::vector< std::string > &names, const std::vector< std::string > &values, const std::string &nmspace, DDCompactView &cpv)
Load the element attributes.
std::vector< DDXMLAttribute >::const_iterator & operator++(int inc)
Allow the elements of this type to be iterated over using ++ operator.
std::vector< DDXMLAttribute > attributes_
std::ostream & operator<<(std::ostream &os, const DDXMLElement &element)
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
void appendText(const std::string &inText)
append to the current (i.e. most recently added)
const std::string names[nVars_]
Compact representation of the geometrical detector hierarchy.
DDXMLElement(DDLElementRegistry *myreg)
Constructor.
virtual void processElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv)
Processing the element.
virtual const std::string & getAttribute(const std::string &name) const
Access to attributes by name.
std::string parentElement_
void appendAttributes(std::vector< std::string > &tv, const std::string &name)
behind the scenes appending to pAttributes...
AttrAccumType attributeAccumulator_
std::map< std::string, std::string > DDXMLAttribute
virtual void preProcessElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv)
Called by loadAttributes AFTER attributes are loaded.
void loadText(const std::string &inText)
Used to load both text and XML comments into this object.
void setSelf(const std::string &sename)
Set self element name to central list of names.
virtual const std::string & get(const std::string &name, size_t aIndex=0) const
Returns a specific value from the aIndex set of attributes.
This is a base class for processing XML elements in the DDD.
void setParent(const std::string &pename)
Set parent element name to central list of names.
virtual std::vector< DDXMLAttribute >::const_iterator begin(void)
virtual bool isEmpty(void) const
Have any elements of this type been encountered but not processed?
const virtual DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
virtual bool gotText(void) const
gotText()? kind of like gotMilk? Yes = text has already been encountered.
const std::string getText(size_t tindex=0) const
retrieve the text blob.
std::vector< std::string > text_
virtual size_t size(void) const
Number of elements accumulated.
std::vector< DDXMLAttribute >::const_iterator myIter_