From 09b5dfdcb0707c39874997efbf207ff554334c34 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Tue, 26 Oct 2010 17:09:34 +0000 Subject: Added xml_document::reset, added append/prepend/insert child overloads for elements (with explicit name) git-svn-id: http://pugixml.googlecode.com/svn/trunk@779 99668b35-9821-0410-8761-19e4c4f06640 --- src/pugixml.cpp | 36 ++++++++++++++++++++++++ src/pugixml.hpp | 10 ++++++- tests/test_document.cpp | 30 ++++++++++++++++++++ tests/test_dom_modify.cpp | 72 +++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 147 insertions(+), 1 deletion(-) diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 833e43e..6850589 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -3989,6 +3989,42 @@ namespace pugi return n; } + xml_node xml_node::append_child(const char_t* name) + { + xml_node result = append_child(node_element); + + result.set_name(name); + + return result; + } + + xml_node xml_node::prepend_child(const char_t* name) + { + xml_node result = prepend_child(node_element); + + result.set_name(name); + + return result; + } + + xml_node xml_node::insert_child_after(const char_t* name, const xml_node& node) + { + xml_node result = insert_child_after(node_element, node); + + result.set_name(name); + + return result; + } + + xml_node xml_node::insert_child_before(const char_t* name, const xml_node& node) + { + xml_node result = insert_child_before(node_element, node); + + result.set_name(name); + + return result; + } + xml_node xml_node::append_copy(const xml_node& proto) { xml_node result = append_child(proto.type()); diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 63e0233..ce4abe2 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -428,6 +428,12 @@ namespace pugi xml_node insert_child_after(xml_node_type type, const xml_node& node); xml_node insert_child_before(xml_node_type type, const xml_node& node); + // Add child element with specified name. Returns added node, or empty node on errors. + xml_node append_child(const char_t* name); + xml_node prepend_child(const char_t* name); + xml_node insert_child_after(const char_t* name, const xml_node& node); + xml_node insert_child_before(const char_t* name, const xml_node& node); + // Add a copy of the specified node as a child. Returns added node, or empty node on errors. xml_node append_copy(const xml_node& proto); xml_node prepend_copy(const xml_node& proto); @@ -719,7 +725,6 @@ namespace pugi xml_document(const xml_document&); const xml_document& operator=(const xml_document&); - void reset(); void create(); void destroy(); @@ -732,6 +737,9 @@ namespace pugi // Destructor, invalidates all node/attribute handles to this document ~xml_document(); + // Removes all nodes, leaving the empty document + void reset(); + #ifndef PUGIXML_NO_STL // Load document from stream. xml_parse_result load(std::basic_istream >& stream, unsigned int options = parse_default, xml_encoding encoding = encoding_auto); diff --git a/tests/test_document.cpp b/tests/test_document.cpp index f9fcc97..342d07c 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -876,3 +876,33 @@ TEST_XML_FLAGS(document_element_absent, "", parse_comments) { CHECK(doc.document_element() == xml_node()); } + +TEST_XML(document_reset, "") +{ + CHECK(doc.first_child()); + + doc.reset(); + CHECK(!doc.first_child()); + CHECK_NODE(doc, STR("")); + + doc.reset(); + CHECK(!doc.first_child()); + CHECK_NODE(doc, STR("")); + + CHECK(doc.load(STR(""))); + CHECK(doc.first_child()); + CHECK_NODE(doc, STR("")); + + doc.reset(); + CHECK(!doc.first_child()); + CHECK_NODE(doc, STR("")); +} + +TEST(document_reset_empty) +{ + xml_document doc; + + doc.reset(); + CHECK(!doc.first_child()); + CHECK_NODE(doc, STR("")); +} diff --git a/tests/test_dom_modify.cpp b/tests/test_dom_modify.cpp index b6155c1..70a01cc 100644 --- a/tests/test_dom_modify.cpp +++ b/tests/test_dom_modify.cpp @@ -469,6 +469,78 @@ TEST_XML(dom_node_insert_child_before, "foo") CHECK_NODE(doc, STR("foon3")); } +TEST_XML(dom_node_prepend_child_name, "foo") +{ + CHECK(xml_node().prepend_child(STR("")) == xml_node()); + CHECK(doc.child(STR("node")).first_child().prepend_child(STR("")) == xml_node()); + + xml_node n1 = doc.child(STR("node")).prepend_child(STR("n1")); + CHECK(n1); + + xml_node n2 = doc.child(STR("node")).prepend_child(STR("n2")); + CHECK(n2 && n1 != n2); + + CHECK_NODE(doc, STR("foo")); +} + +TEST_XML(dom_node_append_child_name, "foo") +{ + CHECK(xml_node().append_child(STR("")) == xml_node()); + CHECK(doc.child(STR("node")).first_child().append_child(STR("")) == xml_node()); + + xml_node n1 = doc.child(STR("node")).append_child(STR("n1")); + CHECK(n1); + + xml_node n2 = doc.child(STR("node")).append_child(STR("n2")); + CHECK(n2 && n1 != n2); + + CHECK_NODE(doc, STR("foo")); +} + +TEST_XML(dom_node_insert_child_after_name, "foo") +{ + CHECK(xml_node().insert_child_after(STR(""), xml_node()) == xml_node()); + CHECK(doc.child(STR("node")).first_child().insert_child_after(STR(""), xml_node()) == xml_node()); + + xml_node node = doc.child(STR("node")); + xml_node child = node.child(STR("child")); + + CHECK(node.insert_child_after(STR(""), node) == xml_node()); + CHECK(child.insert_child_after(STR(""), node) == xml_node()); + + xml_node n1 = node.insert_child_after(STR("n1"), child); + CHECK(n1 && n1 != node && n1 != child); + + xml_node n2 = node.insert_child_after(STR("n2"), child); + CHECK(n2 && n2 != node && n2 != child && n2 != n1); + + CHECK(child.insert_child_after(STR(""), n2) == xml_node()); + + CHECK_NODE(doc, STR("foo")); +} + +TEST_XML(dom_node_insert_child_before_name, "foo") +{ + CHECK(xml_node().insert_child_before(STR(""), xml_node()) == xml_node()); + CHECK(doc.child(STR("node")).first_child().insert_child_before(STR(""), xml_node()) == xml_node()); + + xml_node node = doc.child(STR("node")); + xml_node child = node.child(STR("child")); + + CHECK(node.insert_child_before(STR(""), node) == xml_node()); + CHECK(child.insert_child_before(STR(""), node) == xml_node()); + + xml_node n1 = node.insert_child_before(STR("n1"), child); + CHECK(n1 && n1 != node && n1 != child); + + xml_node n2 = node.insert_child_before(STR("n2"), child); + CHECK(n2 && n2 != node && n2 != child && n2 != n1); + + CHECK(child.insert_child_before(STR(""), n2) == xml_node()); + + CHECK_NODE(doc, STR("foo")); +} + TEST_XML(dom_node_remove_child, "") { CHECK(!xml_node().remove_child(STR("a"))); -- cgit v1.2.3