Go to the documentation of this file.
27 #include <experimental/source_location>
59 return "armarx::exceptions::local::RapidXmlWrapperException";
75 std::shared_ptr<rapidxml::xml_document<>> doc;
76 std::shared_ptr<char[]> cstr;
80 std::shared_ptr<
char[]> cstr) :
81 node(node), doc(doc), cstr(cstr)
86 check(
const std::string& msg =
"",
92 std::stringstream
str;
93 str <<
"RapidXmlWrapper NullPointerException\n"
94 <<
"from " << location.file_name() <<
':' << location.line() <<
" ("
95 << location.function_name() <<
")\nTrace:\n";
98 str <<
"\nmsg: " << msg;
99 throw exceptions::local::RapidXmlReaderException(
str.str());
104 get_attrib_value(
const char* attrName)
const
112 throw exceptions::local::RapidXmlReaderException(
113 std::string(
"Attribute '") + attrName +
"' does not exist in node " +
117 return attrib->value();
125 std::stringstream
str;
165 const char* attrName,
166 const char* attrValue)
const
172 if (n.has_attribute_with_value(attrName, attrValue))
180 std::vector<RapidXmlReaderNode>
184 std::vector<RapidXmlReaderNode> vec;
190 nodes(
const char*
name, std::vector<RapidXmlReaderNode>& vec)
const
200 nodes(
const char* name1,
const char* name2, std::vector<RapidXmlReaderNode>& vec)
const
208 std::vector<RapidXmlReaderNode>
209 nodes(
const char* name1,
const char* name2)
const
211 std::vector<RapidXmlReaderNode> vec;
212 nodes(name1, name2, vec);
216 std::vector<RapidXmlReaderNode>
217 nodes(
const char* name1,
const char* name2,
const char* name3)
const
219 std::vector<RapidXmlReaderNode> vec;
223 n.nodes(name2, name3, vec);
232 return std::string(get_attrib_value(attrName));
258 return std::string(attrib->value()) == std::string(attrValue);
272 return std::string(attrib->value());
277 const std::string& trueValue,
278 const std::string& falseValue)
const
280 std::string
value = std::string(get_attrib_value(attrName));
282 if (
value == trueValue)
286 else if (
value == falseValue)
293 std::string(
"Invalid value '") +
value +
"' for attribute '" + attrName +
294 "'. Expecting '" + trueValue +
"' or '" + falseValue +
"'.");
300 const std::string& trueValue,
301 const std::string& falseValue,
302 bool defaultValue)
const
312 std::string
value = std::string(attrib->value());
314 if (
value == trueValue)
318 else if (
value == falseValue)
325 std::string(
"Invalid value '") +
value +
"' for attribute '" +
name +
326 "'. Expecting '" + trueValue +
"' or '" + falseValue +
"'.");
333 return static_cast<float>(atof(get_attrib_value(attrName)));
339 std::stringstream strValue(get_attrib_value(attrName));
341 strValue >> retValue;
345 std::vector<std::pair<std::string, std::string>>
349 std::vector<std::pair<std::string, std::string>> attributes;
355 std::string
name = std::string(attrib->name());
356 std::string
value = std::string(attrib->value());
368 return std::string(node->value());
375 return static_cast<float>(atof(node->value()));
396 return static_cast<int32_t
>(std::stoul(node->value(),
nullptr, 0));
403 return static_cast<int16_t
>(std::stoul(node->value(),
nullptr, 0));
410 return std::string(node->name());
429 std::string(
"Node '") + nodeName +
"' does not exist in node " +
getPath());
432 return std::string(childNode->value());
446 return std::string(childNode->value());
459 return node !=
nullptr;
471 result = std::string(p->name()) +
"/" + result;
487 collect_child_names(std::vector<std::string>& out,
489 const std::string& pre)
493 const auto cs = n.
nodes();
497 out.emplace_back(
name);
501 for (
const auto&
c : cs)
503 collect_child_names(out,
c,
name);
508 std::vector<std::string>
512 std::vector<std::string> result;
524 std::shared_ptr<rapidxml::xml_document<>> doc;
525 std::shared_ptr<char[]> cstr;
529 cstr.reset(
new char[xml.size() + 1]);
530 strcpy(cstr.get(), xml.c_str());
531 doc->parse<0>(cstr.get());
539 std::string absolutePath;
540 if (path.front() ==
'/')
550 std::ifstream t(absolutePath);
551 if (!found || !t.is_open())
557 t.seekg(0, std::ios::end);
558 str.reserve(t.tellg());
559 t.seekg(0, std::ios::beg);
561 str.assign((std::istreambuf_iterator<char>(t)), std::istreambuf_iterator<char>());
std::shared_ptr< RapidXmlReader > RapidXmlReaderPtr
static RapidXmlReaderPtr FromFile(const std::string &path)
experimental::source_location source_location
unsigned int toUInt(const std::string &input)
RapidXmlReaderNode next_sibling(const char *name=nullptr) const
int16_t value_as_int16() const
xml_node< Ch > * next_sibling(const Ch *name=nullptr, std::size_t name_size=0, bool case_sensitive=true) const
Gets next sibling node, optionally matching node name.
static std::string ReadFileContents(const std::string &path)
RapidXmlReaderNode first_node_with_attr_value(const char *tagName, const char *attrName, const char *attrValue) const
static RapidXmlReaderPtr FromXmlString(const std::string &xml)
rapidxml::node_type type()
xml_attribute< Ch > * next_attribute(const Ch *name=nullptr, std::size_t name_size=0, bool case_sensitive=true) const
Gets next attribute, optionally matching attribute name.
bool attribute_as_optional_bool(const char *name, const std::string &trueValue, const std::string &falseValue, bool defaultValue) const
static RapidXmlReaderNode NullNode()
std::string attribute_value(const char *attrName) const
std::string name() const override
std::string getParentPath() const
message(STATUS "Boost-Library-Dir: " "${Boost_LIBRARY_DIRS}") message(STATUS "Boost-LIBRARIES
RapidXmlReaderNode getDocument()
std::vector< std::string > getChildPaths() const
xml_attribute< Ch > * first_attribute(const Ch *name=nullptr, std::size_t name_size=0, bool case_sensitive=true) const
Gets first attribute of node, optionally matching attribute name.
std::vector< RapidXmlReaderNode > nodes(const char *name1, const char *name2) const
std::vector< std::pair< std::string, std::string > > get_all_attributes() const
uint32_t attribute_as_uint(const char *attrName) const
Class representing attribute node of XML document.
bool attribute_as_bool(const char *attrName, const std::string &trueValue, const std::string &falseValue) const
float attribute_as_float(const char *attrName) const
bool has_node(const char *nodeName) const
bool has_attribute(const char *attrName) const
rapidxml::xml_node * get_node_ptr() const
get_node_ptr only for legacy code.
RapidXmlReaderNode parent_node() const
float value_as_float() const
uint16_t value_as_uint16() const
RapidXmlReaderException(const std::string &message) noexcept
void nodes(const char *name, std::vector< RapidXmlReaderNode > &vec) const
bool has_attribute_with_value(const char *attrName, const char *attrValue) const
std::string tagName(ConfigTag tag)
void nodes(const char *name1, const char *name2, std::vector< RapidXmlReaderNode > &vec) const
xml_node< Ch > * first_node(const Ch *name=nullptr, std::size_t name_size=0, bool case_sensitive=true) const
Gets first child node, optionally matching node name.
This class represents root of the DOM hierarchy.
std::string value() const
std::string getPath() const
std::vector< RapidXmlReaderNode > nodes(const char *name1, const char *name2, const char *name3) const
std::string toString() const
Class representing a node of XML document.
node_type
Enumeration listing all node types produced by the parser.
node_type type() const
Gets type of node.
int32_t value_as_int32() const
std::string first_node_value_or_default(const char *name, const std::string &defaultValue) const
~RapidXmlReaderException() noexcept override
std::vector< RapidXmlReaderNode > nodes(const char *name=nullptr) const
uint32_t value_as_uint32() const
static bool getAbsolutePath(const std::string &relativeFilename, std::string &storeAbsoluteFilename, const std::vector< std::string > &additionalSearchPaths={}, bool verbose=true)
RapidXmlReaderNode first_node(const char *name=nullptr) const
std::string first_node_value(const char *nodeName=nullptr) const
static void PrintExceptionBacktrace(std::ostream &out, const std::string &pre="")
This file offers overloads of toIce() and fromIce() functions for STL container types.
std::string attribute_value_or_default(const char *attrName, const std::string &defaultValue) const
RapidXmlReaderNode getRoot(const char *name=nullptr)