summaryrefslogtreecommitdiff
path: root/libs/pbd/xml++.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-09 00:46:33 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-09 00:46:33 +0000
commit542372cd18393d9760da61d0798af5905344517f (patch)
tree074c51c728fc8de7870fab6eb806a6d417f9c179 /libs/pbd/xml++.cc
parent78b8eaf565a34df551bcac2b839a9defe9681ea0 (diff)
Add debug() method to dump XML nodes.
git-svn-id: svn://localhost/ardour2/branches/3.0@7083 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/xml++.cc')
-rw-r--r--libs/pbd/xml++.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/libs/pbd/xml++.cc b/libs/pbd/xml++.cc
index 91d169d8bf..d691b0bd82 100644
--- a/libs/pbd/xml++.cc
+++ b/libs/pbd/xml++.cc
@@ -5,6 +5,7 @@
* Modified for Ardour and released under the same terms.
*/
+#include <iostream>
#include "pbd/xml++.h"
#include <libxml/debugXML.h>
#include <libxml/xpath.h>
@@ -589,3 +590,17 @@ static XMLSharedNodeList* find_impl(xmlXPathContext* ctxt, const string& xpath)
return nodes;
}
+/** Dump a node, its properties and children to a stream */
+void
+XMLNode::debug (ostream& s, string p)
+{
+ s << p << _name << " ";
+ for (XMLPropertyList::iterator i = _proplist.begin(); i != _proplist.end(); ++i) {
+ s << (*i)->name() << "=" << (*i)->value() << " ";
+ }
+ s << "\n";
+
+ for (XMLNodeList::iterator i = _children.begin(); i != _children.end(); ++i) {
+ (*i)->debug (s, p + " ");
+ }
+}