| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188 |
- //
- // Copyright (c) 2008-2017 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "../Precompiled.h"
- #include "../Core/Context.h"
- #include "../IO/Log.h"
- #include "../Resource/XMLFile.h"
- #include <PugiXml/pugixml.hpp>
- #include "../DebugNew.h"
- namespace Urho3D
- {
- const XMLElement XMLElement::EMPTY;
- XMLElement::XMLElement() :
- node_(0),
- xpathResultSet_(0),
- xpathNode_(0),
- xpathResultIndex_(0)
- {
- }
- XMLElement::XMLElement(XMLFile* file, pugi::xml_node_struct* node) :
- file_(file),
- node_(node),
- xpathResultSet_(0),
- xpathNode_(0),
- xpathResultIndex_(0)
- {
- }
- XMLElement::XMLElement(XMLFile* file, const XPathResultSet* resultSet, const pugi::xpath_node* xpathNode,
- unsigned xpathResultIndex) :
- file_(file),
- node_(0),
- xpathResultSet_(resultSet),
- xpathNode_(resultSet ? xpathNode : (xpathNode ? new pugi::xpath_node(*xpathNode) : 0)),
- xpathResultIndex_(xpathResultIndex)
- {
- }
- XMLElement::XMLElement(const XMLElement& rhs) :
- file_(rhs.file_),
- node_(rhs.node_),
- xpathResultSet_(rhs.xpathResultSet_),
- xpathNode_(rhs.xpathResultSet_ ? rhs.xpathNode_ : (rhs.xpathNode_ ? new pugi::xpath_node(*rhs.xpathNode_) : 0)),
- xpathResultIndex_(rhs.xpathResultIndex_)
- {
- }
- XMLElement::~XMLElement()
- {
- // XMLElement class takes the ownership of a single xpath_node object, so destruct it now
- if (!xpathResultSet_ && xpathNode_)
- {
- delete xpathNode_;
- xpathNode_ = 0;
- }
- }
- XMLElement& XMLElement::operator =(const XMLElement& rhs)
- {
- file_ = rhs.file_;
- node_ = rhs.node_;
- xpathResultSet_ = rhs.xpathResultSet_;
- xpathNode_ = rhs.xpathResultSet_ ? rhs.xpathNode_ : (rhs.xpathNode_ ? new pugi::xpath_node(*rhs.xpathNode_) : 0);
- xpathResultIndex_ = rhs.xpathResultIndex_;
- return *this;
- }
- XMLElement XMLElement::CreateChild(const String& name)
- {
- return CreateChild(name.CString());
- }
- XMLElement XMLElement::CreateChild(const char* name)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return XMLElement();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- pugi::xml_node child = const_cast<pugi::xml_node&>(node).append_child(name);
- return XMLElement(file_, child.internal_object());
- }
- XMLElement XMLElement::GetOrCreateChild(const String& name)
- {
- XMLElement child = GetChild(name);
- if (child.NotNull())
- return child;
- else
- return CreateChild(name);
- }
- XMLElement XMLElement::GetOrCreateChild(const char* name)
- {
- XMLElement child = GetChild(name);
- if (child.NotNull())
- return child;
- else
- return CreateChild(name);
- }
- bool XMLElement::RemoveChild(const XMLElement& element)
- {
- if (!element.file_ || (!element.node_ && !element.xpathNode_) || !file_ || (!node_ && !xpathNode_))
- return false;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- const pugi::xml_node& child = element.xpathNode_ ? element.xpathNode_->node() : pugi::xml_node(element.node_);
- return const_cast<pugi::xml_node&>(node).remove_child(child);
- }
- bool XMLElement::RemoveChild(const String& name)
- {
- return RemoveChild(name.CString());
- }
- bool XMLElement::RemoveChild(const char* name)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return const_cast<pugi::xml_node&>(node).remove_child(name);
- }
- bool XMLElement::RemoveChildren(const String& name)
- {
- return RemoveChildren(name.CString());
- }
- bool XMLElement::RemoveChildren(const char* name)
- {
- if ((!file_ || !node_) && !xpathNode_)
- return false;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- if (!String::CStringLength(name))
- {
- for (;;)
- {
- pugi::xml_node child = node.last_child();
- if (child.empty())
- break;
- const_cast<pugi::xml_node&>(node).remove_child(child);
- }
- }
- else
- {
- for (;;)
- {
- pugi::xml_node child = node.child(name);
- if (child.empty())
- break;
- const_cast<pugi::xml_node&>(node).remove_child(child);
- }
- }
- return true;
- }
- bool XMLElement::RemoveAttribute(const String& name)
- {
- return RemoveAttribute(name.CString());
- }
- bool XMLElement::RemoveAttribute(const char* name)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- // If xpath_node contains just attribute, remove it regardless of the specified name
- if (xpathNode_ && xpathNode_->attribute())
- return xpathNode_->parent().remove_attribute(
- xpathNode_->attribute()); // In attribute context, xpath_node's parent is the parent node of the attribute itself
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return const_cast<pugi::xml_node&>(node).remove_attribute(node.attribute(name));
- }
- XMLElement XMLElement::SelectSingle(const String& query, pugi::xpath_variable_set* variables) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return XMLElement();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- pugi::xpath_node result = node.select_single_node(query.CString(), variables);
- return XMLElement(file_, 0, &result, 0);
- }
- XMLElement XMLElement::SelectSinglePrepared(const XPathQuery& query) const
- {
- if (!file_ || (!node_ && !xpathNode_ && !query.GetXPathQuery()))
- return XMLElement();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- pugi::xpath_node result = node.select_single_node(*query.GetXPathQuery());
- return XMLElement(file_, 0, &result, 0);
- }
- XPathResultSet XMLElement::Select(const String& query, pugi::xpath_variable_set* variables) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return XPathResultSet();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- pugi::xpath_node_set result = node.select_nodes(query.CString(), variables);
- return XPathResultSet(file_, &result);
- }
- XPathResultSet XMLElement::SelectPrepared(const XPathQuery& query) const
- {
- if (!file_ || (!node_ && !xpathNode_ && query.GetXPathQuery()))
- return XPathResultSet();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- pugi::xpath_node_set result = node.select_nodes(*query.GetXPathQuery());
- return XPathResultSet(file_, &result);
- }
- bool XMLElement::SetValue(const String& value)
- {
- return SetValue(value.CString());
- }
- bool XMLElement::SetValue(const char* value)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- // Search for existing value first
- for (pugi::xml_node child = node.first_child(); child; child = child.next_sibling())
- {
- if (child.type() == pugi::node_pcdata)
- return const_cast<pugi::xml_node&>(child).set_value(value);
- }
- // If no previous value found, append new
- return const_cast<pugi::xml_node&>(node).append_child(pugi::node_pcdata).set_value(value);
- }
- bool XMLElement::SetAttribute(const String& name, const String& value)
- {
- return SetAttribute(name.CString(), value.CString());
- }
- bool XMLElement::SetAttribute(const char* name, const char* value)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- // If xpath_node contains just attribute, set its value regardless of the specified name
- if (xpathNode_ && xpathNode_->attribute())
- return xpathNode_->attribute().set_value(value);
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- pugi::xml_attribute attr = node.attribute(name);
- if (attr.empty())
- attr = const_cast<pugi::xml_node&>(node).append_attribute(name);
- return attr.set_value(value);
- }
- bool XMLElement::SetAttribute(const String& value)
- {
- return SetAttribute(value.CString());
- }
- bool XMLElement::SetAttribute(const char* value)
- {
- // If xpath_node contains just attribute, set its value
- return xpathNode_ && xpathNode_->attribute() && xpathNode_->attribute().set_value(value);
- }
- bool XMLElement::SetBool(const String& name, bool value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetBoundingBox(const BoundingBox& value)
- {
- if (!SetVector3("min", value.min_))
- return false;
- return SetVector3("max", value.max_);
- }
- bool XMLElement::SetBuffer(const String& name, const void* data, unsigned size)
- {
- String dataStr;
- BufferToString(dataStr, data, size);
- return SetAttribute(name, dataStr);
- }
- bool XMLElement::SetBuffer(const String& name, const PODVector<unsigned char>& value)
- {
- if (!value.Size())
- return SetAttribute(name, String::EMPTY);
- else
- return SetBuffer(name, &value[0], value.Size());
- }
- bool XMLElement::SetColor(const String& name, const Color& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetFloat(const String& name, float value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetDouble(const String& name, double value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetUInt(const String& name, unsigned value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetInt(const String& name, int value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetUInt64(const String& name, unsigned long long value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetInt64(const String& name, long long value)
- {
- return SetAttribute(name, String(value));
- }
- bool XMLElement::SetIntRect(const String& name, const IntRect& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetIntVector2(const String& name, const IntVector2& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetIntVector3(const String& name, const IntVector3& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetRect(const String& name, const Rect& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetQuaternion(const String& name, const Quaternion& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetString(const String& name, const String& value)
- {
- return SetAttribute(name, value);
- }
- bool XMLElement::SetVariant(const Variant& value)
- {
- if (!SetAttribute("type", value.GetTypeName()))
- return false;
- return SetVariantValue(value);
- }
- bool XMLElement::SetVariantValue(const Variant& value)
- {
- switch (value.GetType())
- {
- case VAR_RESOURCEREF:
- return SetResourceRef(value.GetResourceRef());
- case VAR_RESOURCEREFLIST:
- return SetResourceRefList(value.GetResourceRefList());
- case VAR_VARIANTVECTOR:
- return SetVariantVector(value.GetVariantVector());
- case VAR_STRINGVECTOR:
- return SetStringVector(value.GetStringVector());
- case VAR_VARIANTMAP:
- return SetVariantMap(value.GetVariantMap());
- default:
- return SetAttribute("value", value.ToString().CString());
- }
- }
- bool XMLElement::SetResourceRef(const ResourceRef& value)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- // Need the context to query for the type
- Context* context = file_->GetContext();
- return SetAttribute("value", String(context->GetTypeName(value.type_)) + ";" + value.name_);
- }
- bool XMLElement::SetResourceRefList(const ResourceRefList& value)
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- // Need the context to query for the type
- Context* context = file_->GetContext();
- String str(context->GetTypeName(value.type_));
- for (unsigned i = 0; i < value.names_.Size(); ++i)
- {
- str += ";";
- str += value.names_[i];
- }
- return SetAttribute("value", str.CString());
- }
- bool XMLElement::SetVariantVector(const VariantVector& value)
- {
- // Must remove all existing variant child elements (if they exist) to not cause confusion
- if (!RemoveChildren("variant"))
- return false;
- for (VariantVector::ConstIterator i = value.Begin(); i != value.End(); ++i)
- {
- XMLElement variantElem = CreateChild("variant");
- if (!variantElem)
- return false;
- variantElem.SetVariant(*i);
- }
- return true;
- }
- bool XMLElement::SetStringVector(const StringVector& value)
- {
- if (!RemoveChildren("string"))
- return false;
- for (StringVector::ConstIterator i = value.Begin(); i != value.End(); ++i)
- {
- XMLElement stringElem = CreateChild("string");
- if (!stringElem)
- return false;
- stringElem.SetAttribute("value", *i);
- }
- return true;
- }
- bool XMLElement::SetVariantMap(const VariantMap& value)
- {
- if (!RemoveChildren("variant"))
- return false;
- for (VariantMap::ConstIterator i = value.Begin(); i != value.End(); ++i)
- {
- XMLElement variantElem = CreateChild("variant");
- if (!variantElem)
- return false;
- variantElem.SetUInt("hash", i->first_.Value());
- variantElem.SetVariant(i->second_);
- }
- return true;
- }
- bool XMLElement::SetVector2(const String& name, const Vector2& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetVector3(const String& name, const Vector3& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetVector4(const String& name, const Vector4& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetVectorVariant(const String& name, const Variant& value)
- {
- VariantType type = value.GetType();
- if (type == VAR_FLOAT || type == VAR_VECTOR2 || type == VAR_VECTOR3 || type == VAR_VECTOR4 || type == VAR_MATRIX3 ||
- type == VAR_MATRIX3X4 || type == VAR_MATRIX4)
- return SetAttribute(name, value.ToString());
- else
- return false;
- }
- bool XMLElement::SetMatrix3(const String& name, const Matrix3& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetMatrix3x4(const String& name, const Matrix3x4& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::SetMatrix4(const String& name, const Matrix4& value)
- {
- return SetAttribute(name, value.ToString());
- }
- bool XMLElement::IsNull() const
- {
- return !NotNull();
- }
- bool XMLElement::NotNull() const
- {
- return node_ || (xpathNode_ && !xpathNode_->operator !());
- }
- XMLElement::operator bool() const
- {
- return NotNull();
- }
- String XMLElement::GetName() const
- {
- if ((!file_ || !node_) && !xpathNode_)
- return String();
- // If xpath_node contains just attribute, return its name instead
- if (xpathNode_ && xpathNode_->attribute())
- return String(xpathNode_->attribute().name());
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return String(node.name());
- }
- bool XMLElement::HasChild(const String& name) const
- {
- return HasChild(name.CString());
- }
- bool XMLElement::HasChild(const char* name) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return !node.child(name).empty();
- }
- XMLElement XMLElement::GetChild(const String& name) const
- {
- return GetChild(name.CString());
- }
- XMLElement XMLElement::GetChild(const char* name) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return XMLElement();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- if (!String::CStringLength(name))
- return XMLElement(file_, node.first_child().internal_object());
- else
- return XMLElement(file_, node.child(name).internal_object());
- }
- XMLElement XMLElement::GetNext(const String& name) const
- {
- return GetNext(name.CString());
- }
- XMLElement XMLElement::GetNext(const char* name) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return XMLElement();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- if (!String::CStringLength(name))
- return XMLElement(file_, node.next_sibling().internal_object());
- else
- return XMLElement(file_, node.next_sibling(name).internal_object());
- }
- XMLElement XMLElement::GetParent() const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return XMLElement();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return XMLElement(file_, node.parent().internal_object());
- }
- unsigned XMLElement::GetNumAttributes() const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return 0;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- unsigned ret = 0;
- pugi::xml_attribute attr = node.first_attribute();
- while (!attr.empty())
- {
- ++ret;
- attr = attr.next_attribute();
- }
- return ret;
- }
- bool XMLElement::HasAttribute(const String& name) const
- {
- return HasAttribute(name.CString());
- }
- bool XMLElement::HasAttribute(const char* name) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return false;
- // If xpath_node contains just attribute, check against it
- if (xpathNode_ && xpathNode_->attribute())
- return String(xpathNode_->attribute().name()) == name;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return !node.attribute(name).empty();
- }
- String XMLElement::GetValue() const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return String::EMPTY;
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return String(node.child_value());
- }
- String XMLElement::GetAttribute(const String& name) const
- {
- return String(GetAttributeCString(name.CString()));
- }
- String XMLElement::GetAttribute(const char* name) const
- {
- return String(GetAttributeCString(name));
- }
- const char* XMLElement::GetAttributeCString(const char* name) const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return 0;
- // If xpath_node contains just attribute, return it regardless of the specified name
- if (xpathNode_ && xpathNode_->attribute())
- return xpathNode_->attribute().value();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- return node.attribute(name).value();
- }
- String XMLElement::GetAttributeLower(const String& name) const
- {
- return GetAttribute(name).ToLower();
- }
- String XMLElement::GetAttributeLower(const char* name) const
- {
- return String(GetAttribute(name)).ToLower();
- }
- String XMLElement::GetAttributeUpper(const String& name) const
- {
- return GetAttribute(name).ToUpper();
- }
- String XMLElement::GetAttributeUpper(const char* name) const
- {
- return String(GetAttribute(name)).ToUpper();
- }
- Vector<String> XMLElement::GetAttributeNames() const
- {
- if (!file_ || (!node_ && !xpathNode_))
- return Vector<String>();
- const pugi::xml_node& node = xpathNode_ ? xpathNode_->node() : pugi::xml_node(node_);
- Vector<String> ret;
- pugi::xml_attribute attr = node.first_attribute();
- while (!attr.empty())
- {
- ret.Push(String(attr.name()));
- attr = attr.next_attribute();
- }
- return ret;
- }
- bool XMLElement::GetBool(const String& name) const
- {
- return ToBool(GetAttribute(name));
- }
- BoundingBox XMLElement::GetBoundingBox() const
- {
- BoundingBox ret;
- ret.min_ = GetVector3("min");
- ret.max_ = GetVector3("max");
- return ret;
- }
- PODVector<unsigned char> XMLElement::GetBuffer(const String& name) const
- {
- PODVector<unsigned char> ret;
- StringToBuffer(ret, GetAttribute(name));
- return ret;
- }
- bool XMLElement::GetBuffer(const String& name, void* dest, unsigned size) const
- {
- Vector<String> bytes = GetAttribute(name).Split(' ');
- if (size < bytes.Size())
- return false;
- unsigned char* destBytes = (unsigned char*)dest;
- for (unsigned i = 0; i < bytes.Size(); ++i)
- destBytes[i] = (unsigned char)ToInt(bytes[i]);
- return true;
- }
- Color XMLElement::GetColor(const String& name) const
- {
- return ToColor(GetAttribute(name));
- }
- float XMLElement::GetFloat(const String& name) const
- {
- return ToFloat(GetAttribute(name));
- }
- double XMLElement::GetDouble(const String& name) const
- {
- return ToDouble(GetAttribute(name));
- }
- unsigned XMLElement::GetUInt(const String& name) const
- {
- return ToUInt(GetAttribute(name));
- }
- int XMLElement::GetInt(const String& name) const
- {
- return ToInt(GetAttribute(name));
- }
- unsigned long long XMLElement::GetUInt64(const String& name) const
- {
- return ToUInt64(GetAttribute(name));
- }
- long long XMLElement::GetInt64(const String& name) const
- {
- return ToInt64(GetAttribute(name));
- }
- IntRect XMLElement::GetIntRect(const String& name) const
- {
- return ToIntRect(GetAttribute(name));
- }
- IntVector2 XMLElement::GetIntVector2(const String& name) const
- {
- return ToIntVector2(GetAttribute(name));
- }
- IntVector3 XMLElement::GetIntVector3(const String& name) const
- {
- return ToIntVector3(GetAttribute(name));
- }
- Quaternion XMLElement::GetQuaternion(const String& name) const
- {
- return ToQuaternion(GetAttribute(name));
- }
- Rect XMLElement::GetRect(const String& name) const
- {
- return ToRect(GetAttribute(name));
- }
- Variant XMLElement::GetVariant() const
- {
- VariantType type = Variant::GetTypeFromName(GetAttribute("type"));
- return GetVariantValue(type);
- }
- Variant XMLElement::GetVariantValue(VariantType type) const
- {
- Variant ret;
- if (type == VAR_RESOURCEREF)
- ret = GetResourceRef();
- else if (type == VAR_RESOURCEREFLIST)
- ret = GetResourceRefList();
- else if (type == VAR_VARIANTVECTOR)
- ret = GetVariantVector();
- else if (type == VAR_STRINGVECTOR)
- ret = GetStringVector();
- else if (type == VAR_VARIANTMAP)
- ret = GetVariantMap();
- else
- ret.FromString(type, GetAttributeCString("value"));
- return ret;
- }
- ResourceRef XMLElement::GetResourceRef() const
- {
- ResourceRef ret;
- Vector<String> values = GetAttribute("value").Split(';');
- if (values.Size() == 2)
- {
- ret.type_ = values[0];
- ret.name_ = values[1];
- }
- return ret;
- }
- ResourceRefList XMLElement::GetResourceRefList() const
- {
- ResourceRefList ret;
- Vector<String> values = GetAttribute("value").Split(';', true);
- if (values.Size() >= 1)
- {
- ret.type_ = values[0];
- ret.names_.Resize(values.Size() - 1);
- for (unsigned i = 1; i < values.Size(); ++i)
- ret.names_[i - 1] = values[i];
- }
- return ret;
- }
- VariantVector XMLElement::GetVariantVector() const
- {
- VariantVector ret;
- XMLElement variantElem = GetChild("variant");
- while (variantElem)
- {
- ret.Push(variantElem.GetVariant());
- variantElem = variantElem.GetNext("variant");
- }
- return ret;
- }
- StringVector XMLElement::GetStringVector() const
- {
- StringVector ret;
- XMLElement stringElem = GetChild("string");
- while (stringElem)
- {
- ret.Push(stringElem.GetAttributeCString("value"));
- stringElem = stringElem.GetNext("string");
- }
- return ret;
- }
- VariantMap XMLElement::GetVariantMap() const
- {
- VariantMap ret;
- XMLElement variantElem = GetChild("variant");
- while (variantElem)
- {
- // If this is a manually edited map, user can not be expected to calculate hashes manually. Also accept "name" attribute
- if (variantElem.HasAttribute("name"))
- ret[StringHash(variantElem.GetAttribute("name"))] = variantElem.GetVariant();
- else if (variantElem.HasAttribute("hash"))
- ret[StringHash(variantElem.GetUInt("hash"))] = variantElem.GetVariant();
- variantElem = variantElem.GetNext("variant");
- }
- return ret;
- }
- Vector2 XMLElement::GetVector2(const String& name) const
- {
- return ToVector2(GetAttribute(name));
- }
- Vector3 XMLElement::GetVector3(const String& name) const
- {
- return ToVector3(GetAttribute(name));
- }
- Vector4 XMLElement::GetVector4(const String& name) const
- {
- return ToVector4(GetAttribute(name));
- }
- Vector4 XMLElement::GetVector(const String& name) const
- {
- return ToVector4(GetAttribute(name), true);
- }
- Variant XMLElement::GetVectorVariant(const String& name) const
- {
- return ToVectorVariant(GetAttribute(name));
- }
- Matrix3 XMLElement::GetMatrix3(const String& name) const
- {
- return ToMatrix3(GetAttribute(name));
- }
- Matrix3x4 XMLElement::GetMatrix3x4(const String& name) const
- {
- return ToMatrix3x4(GetAttribute(name));
- }
- Matrix4 XMLElement::GetMatrix4(const String& name) const
- {
- return ToMatrix4(GetAttribute(name));
- }
- XMLFile* XMLElement::GetFile() const
- {
- return file_;
- }
- XMLElement XMLElement::NextResult() const
- {
- if (!xpathResultSet_ || !xpathNode_)
- return XMLElement();
- return xpathResultSet_->operator [](++xpathResultIndex_);
- }
- XPathResultSet::XPathResultSet() :
- resultSet_(0)
- {
- }
- XPathResultSet::XPathResultSet(XMLFile* file, pugi::xpath_node_set* resultSet) :
- file_(file),
- resultSet_(resultSet ? new pugi::xpath_node_set(resultSet->begin(), resultSet->end()) : 0)
- {
- // Sort the node set in forward document order
- if (resultSet_)
- resultSet_->sort();
- }
- XPathResultSet::XPathResultSet(const XPathResultSet& rhs) :
- file_(rhs.file_),
- resultSet_(rhs.resultSet_ ? new pugi::xpath_node_set(rhs.resultSet_->begin(), rhs.resultSet_->end()) : 0)
- {
- }
- XPathResultSet::~XPathResultSet()
- {
- delete resultSet_;
- resultSet_ = 0;
- }
- XPathResultSet& XPathResultSet::operator =(const XPathResultSet& rhs)
- {
- file_ = rhs.file_;
- resultSet_ = rhs.resultSet_ ? new pugi::xpath_node_set(rhs.resultSet_->begin(), rhs.resultSet_->end()) : 0;
- return *this;
- }
- XMLElement XPathResultSet::operator [](unsigned index) const
- {
- if (!resultSet_)
- URHO3D_LOGERRORF(
- "Could not return result at index: %u. Most probably this is caused by the XPathResultSet not being stored in a lhs variable.",
- index);
- return resultSet_ && index < Size() ? XMLElement(file_, this, &resultSet_->operator [](index), index) : XMLElement();
- }
- XMLElement XPathResultSet::FirstResult()
- {
- return operator [](0);
- }
- unsigned XPathResultSet::Size() const
- {
- return resultSet_ ? (unsigned)resultSet_->size() : 0;
- }
- bool XPathResultSet::Empty() const
- {
- return resultSet_ ? resultSet_->empty() : true;
- }
- XPathQuery::XPathQuery()
- {
- }
- XPathQuery::XPathQuery(const String& queryString, const String& variableString)
- {
- SetQuery(queryString, variableString);
- }
- XPathQuery::~XPathQuery()
- {
- }
- void XPathQuery::Bind()
- {
- // Delete previous query object and create a new one binding it with variable set
- query_ = new pugi::xpath_query(queryString_.CString(), variables_.Get());
- }
- bool XPathQuery::SetVariable(const String& name, bool value)
- {
- if (!variables_)
- variables_ = new pugi::xpath_variable_set();
- return variables_->set(name.CString(), value);
- }
- bool XPathQuery::SetVariable(const String& name, float value)
- {
- if (!variables_)
- variables_ = new pugi::xpath_variable_set();
- return variables_->set(name.CString(), value);
- }
- bool XPathQuery::SetVariable(const String& name, const String& value)
- {
- return SetVariable(name.CString(), value.CString());
- }
- bool XPathQuery::SetVariable(const char* name, const char* value)
- {
- if (!variables_)
- variables_ = new pugi::xpath_variable_set();
- return variables_->set(name, value);
- }
- bool XPathQuery::SetVariable(const String& name, const XPathResultSet& value)
- {
- if (!variables_)
- variables_ = new pugi::xpath_variable_set();
- pugi::xpath_node_set* nodeSet = value.GetXPathNodeSet();
- if (!nodeSet)
- return false;
- return variables_->set(name.CString(), *nodeSet);
- }
- bool XPathQuery::SetQuery(const String& queryString, const String& variableString, bool bind)
- {
- if (!variableString.Empty())
- {
- Clear();
- variables_ = new pugi::xpath_variable_set();
- // Parse the variable string having format "name1:type1,name2:type2,..." where type is one of "Bool", "Float", "String", "ResultSet"
- Vector<String> vars = variableString.Split(',');
- for (Vector<String>::ConstIterator i = vars.Begin(); i != vars.End(); ++i)
- {
- Vector<String> tokens = i->Trimmed().Split(':');
- if (tokens.Size() != 2)
- continue;
- pugi::xpath_value_type type;
- if (tokens[1] == "Bool")
- type = pugi::xpath_type_boolean;
- else if (tokens[1] == "Float")
- type = pugi::xpath_type_number;
- else if (tokens[1] == "String")
- type = pugi::xpath_type_string;
- else if (tokens[1] == "ResultSet")
- type = pugi::xpath_type_node_set;
- else
- return false;
- if (!variables_->add(tokens[0].CString(), type))
- return false;
- }
- }
- queryString_ = queryString;
- if (bind)
- Bind();
- return true;
- }
- void XPathQuery::Clear()
- {
- queryString_.Clear();
- variables_.Reset();
- query_.Reset();
- }
- bool XPathQuery::EvaluateToBool(XMLElement element) const
- {
- if (!query_ || ((!element.GetFile() || !element.GetNode()) && !element.GetXPathNode()))
- return false;
- const pugi::xml_node& node = element.GetXPathNode() ? element.GetXPathNode()->node() : pugi::xml_node(element.GetNode());
- return query_->evaluate_boolean(node);
- }
- float XPathQuery::EvaluateToFloat(XMLElement element) const
- {
- if (!query_ || ((!element.GetFile() || !element.GetNode()) && !element.GetXPathNode()))
- return 0.0f;
- const pugi::xml_node& node = element.GetXPathNode() ? element.GetXPathNode()->node() : pugi::xml_node(element.GetNode());
- return (float)query_->evaluate_number(node);
- }
- String XPathQuery::EvaluateToString(XMLElement element) const
- {
- if (!query_ || ((!element.GetFile() || !element.GetNode()) && !element.GetXPathNode()))
- return String::EMPTY;
- const pugi::xml_node& node = element.GetXPathNode() ? element.GetXPathNode()->node() : pugi::xml_node(element.GetNode());
- String result;
- // First call get the size
- result.Reserve((unsigned)query_->evaluate_string(0, 0, node));
- // Second call get the actual string
- query_->evaluate_string(const_cast<pugi::char_t*>(result.CString()), result.Capacity(), node);
- return result;
- }
- XPathResultSet XPathQuery::Evaluate(XMLElement element) const
- {
- if (!query_ || ((!element.GetFile() || !element.GetNode()) && !element.GetXPathNode()))
- return XPathResultSet();
- const pugi::xml_node& node = element.GetXPathNode() ? element.GetXPathNode()->node() : pugi::xml_node(element.GetNode());
- pugi::xpath_node_set result = query_->evaluate_node_set(node);
- return XPathResultSet(element.GetFile(), &result);
- }
- }
|