14 using namespace Teuchos;
18 : tag_(tag), attributes_(), children_(0), content_(0)
42 const std::string& value)
71 std::string rtn =
"<" +
tag_;
83 rtn +=
" " + (*i).first +
"=\"" + (*i).second +
"\"";
93 bool hasQuot, hasApos;
96 if (attval.find(
"\"") == std::string::npos)
105 if (attval.find(
"\'") == std::string::npos)
114 if (!hasQuot || hasApos)
128 ret.push_back(delim);
129 for (std::string::const_iterator i=attval.begin(); i != attval.end(); i++)
133 if (delim ==
'\'') ret.append(
"'");
134 else if (delim ==
'\"') ret.append(
""");
149 ret.push_back(delim);
156 std::string rtn =
"<" +
tag_;
168 rtn +=
" " + (*i).first +
"=\"" + (*i).second +
"\"";
186 bool allBlankContent =
true;
191 allBlankContent=
false;
195 if (!allBlankContent)
207 rtn +=
"</" +
tag_ +
">\n";
214 for (
int i=0; i<indent; i++) os <<
" ";
222 os <<
header(
true) << std::endl;
229 for (
int i=0; i<indent; i++) os <<
" ";
230 os <<
"</" <<
tag_ <<
">\n";
236 std::string space =
"";
237 for (
int i=0; i<indent; i++) space +=
" ";
239 bool allBlankContent =
true;
244 allBlankContent=
false;
249 if (!allBlankContent)
256 s.erase(
size_t(0), s.find_first_not_of(
" \r\t"));
258 os << space << s <<
'\n';
std::string toString() const
Write as a std::string. Output may be ill-formed XML.
Array< T > & append(const T &x)
Add a new entry at the end of the array.
void printContent(std::ostream &os, int indent) const
Print content lines using the given indentation level.
void addChild(const XMLObject &child)
Add a child XMLObject.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
XMLObjectImplem * deepCopy() const
Deep copy.
Array< std::string > content_
const XMLObject & getChild(int i) const
Look up a child by its index.
iterator erase(iterator position)
A std::string utilities class for Teuchos.
Representation of an XML data tree. XMLObject is a ref-counted handle to a XMLObjectImplem object...
void addContent(const std::string &contentLine)
Add a content line.
std::string terminatedHeader(bool strictXML=false) const
Write the header terminated as <Header>
static bool isWhite(const std::string &str)
Returns true if a std::string consists entirely of whitespace.
XMLObjectImplem(const std::string &tag)
Construct with a 'tag'.
void removeContentLine(const size_t &i)
Remove content line by index.
Array< XMLObject > children_
int length() const
Return number of elements in the array.
void print(std::ostream &os, int indent) const
Print to stream with the given indentation level. Output will be well-formed XML. ...
std::string header(bool strictXML=false) const
Write the header.
The XMLObjectImplem class takes care of the low-level implementation details of XMLObject.
void addAttribute(const std::string &name, const std::string &value)
Add a [name, value] attribute.
int numChildren() const
Return the number of children.
static std::string XMLifyAttVal(const std::string &attval)
Convert attribute value text into well-formed XML.
An object representation of a subset of XML data.
Replacement for std::vector that is compatible with the Teuchos Memory Management classes...