本文整理汇总了C++中CL_DomElement::has_attribute_ns方法的典型用法代码示例。如果您正苦于以下问题:C++ CL_DomElement::has_attribute_ns方法的具体用法?C++ CL_DomElement::has_attribute_ns怎么用?C++ CL_DomElement::has_attribute_ns使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CL_DomElement
的用法示例。
在下文中一共展示了CL_DomElement::has_attribute_ns方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: load
void CL_ResourceManager::load(CL_IODevice file, CL_VirtualDirectory directory)
{
CL_DomDocument new_document;
new_document.load(file);
// Check if loaded document uses namespaces and if its a clanlib resources xml document:
CL_DomElement doc_element = new_document.get_document_element();
if (doc_element.get_namespace_uri().empty() && doc_element.get_local_name() == "resources")
{
impl->ns_resources = CL_String();
}
else if (doc_element.get_namespace_uri() == "http://clanlib.org/xmlns/resources-1.0")
{
if (doc_element.get_local_name() != "resources")
throw CL_Exception("ClanLib resource documents must begin with a resources element.");
impl->ns_resources = "http://clanlib.org/xmlns/resources-1.0";
}
else
{
throw CL_Exception("XML document is not a ClanLib resources document.");
}
impl->document = new_document;
impl->directory = directory;
impl->resources.clear();
std::vector<CL_String> section_stack;
std::vector<CL_DomNode> nodes_stack;
section_stack.push_back(CL_String());
nodes_stack.push_back(doc_element.get_first_child());
while (!nodes_stack.empty())
{
if (nodes_stack.back().is_element())
{
CL_DomElement element = nodes_stack.back().to_element();
if (element.get_namespace_uri() == impl->ns_resources && element.get_local_name() == "section")
{
CL_String section_name = element.get_attribute_ns(impl->ns_resources, "name");
section_stack.push_back(section_stack.back() + CL_PathHelp::add_trailing_slash(section_name, CL_PathHelp::path_type_virtual));
nodes_stack.push_back(element.get_first_child());
continue;
}
else if (element.has_attribute_ns(impl->ns_resources, "name"))
{
CL_String resource_name = element.get_attribute_ns(impl->ns_resources, "name");
CL_String resource_id = section_stack.back() + resource_name;
impl->resources[resource_id] = CL_Resource(element, *this);
}
}
nodes_stack.back() = nodes_stack.back().get_next_sibling();
while (nodes_stack.back().is_null())
{
nodes_stack.pop_back();
section_stack.pop_back();
if (nodes_stack.empty())
break;
nodes_stack.back() = nodes_stack.back().get_next_sibling();
}
}
}