summaryrefslogtreecommitdiff
path: root/lib/saxParse-persistence.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-02-21 00:57:37 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-02-21 00:57:37 +0000
commit15d7196bf3a3244f078f63645783c4c3f2534d92 (patch)
tree3b49a3d2968057c5f600afb37b6b19e25323dc29 /lib/saxParse-persistence.cpp
parentAdd checked_fopen wrapper and FileStar container (diff)
downloadilt-15d7196bf3a3244f078f63645783c4c3f2534d92.tar.bz2
ilt-15d7196bf3a3244f078f63645783c4c3f2534d92.tar.xz
ilt-15d7196bf3a3244f078f63645783c4c3f2534d92.zip
Implement XML deserializer with SAXParse
Diffstat (limited to 'lib/saxParse-persistence.cpp')
-rw-r--r--lib/saxParse-persistence.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/saxParse-persistence.cpp b/lib/saxParse-persistence.cpp
new file mode 100644
index 0000000..a6a0d23
--- /dev/null
+++ b/lib/saxParse-persistence.cpp
@@ -0,0 +1,50 @@
+#include "saxParse-persistence.h"
+
+namespace Persistence {
+
+ void
+ SAXParsePersistence::loadStateInternal(FILE * in)
+ {
+ stk.top()->beforeValue(stk);
+ stk.top()->beginObject(stk);
+ parseFile(in);
+ stk.pop();
+ stk.pop();
+ }
+
+ void
+ SAXParsePersistence::elementOpen(mxml_node_t * n)
+ {
+ stk.push(stk.top()->select(mxmlGetElement(n)));
+ stk.top()->beforeValue(stk);
+ stk.top()->beginObject(stk);
+ for (int attrCount = mxmlElementGetAttrCount(n), attrIdx {0}; attrIdx < attrCount; ++attrIdx) {
+ const char *name, *value = mxmlElementGetAttrByIndex(n, attrIdx, &name);
+ auto sel = stk.top()->select(name);
+ sel->beforeValue(stk);
+ sel->setValue(std::string {value});
+ }
+ }
+
+ void
+ SAXParsePersistence::elementClose(mxml_node_t *)
+ {
+ stk.top()->endObject(stk);
+ stk.top()->endObject(stk);
+ }
+
+ void
+ SAXParsePersistence::data(mxml_node_t *)
+ {
+ }
+
+ void
+ SAXParsePersistence::directive(mxml_node_t *)
+ {
+ }
+
+ void
+ SAXParsePersistence::cdata(mxml_node_t *)
+ {
+ }
+}