summaryrefslogtreecommitdiffstats
path: root/reader/src/network/opds/OPDSXMLParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'reader/src/network/opds/OPDSXMLParser.h')
-rw-r--r--reader/src/network/opds/OPDSXMLParser.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/reader/src/network/opds/OPDSXMLParser.h b/reader/src/network/opds/OPDSXMLParser.h
new file mode 100644
index 0000000..82f0124
--- /dev/null
+++ b/reader/src/network/opds/OPDSXMLParser.h
@@ -0,0 +1,79 @@
+/*
+ * Copyright (C) 2009-2012 Geometer Plus <contact@geometerplus.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+#ifndef __OPDSXMLPARSER_H__
+#define __OPDSXMLPARSER_H__
+
+#include <ZLXMLReader.h>
+
+#include "OPDSMetadata.h"
+#include "OPDSFeedReader.h"
+
+
+class OPDSXMLParser : public ZLXMLReader {
+
+public:
+ static const std::string KEY_PRICE;
+ static const std::string KEY_CURRENCY;
+ static const std::string KEY_FORMAT;
+
+public:
+ OPDSXMLParser(shared_ptr<OPDSFeedReader> feedReader, bool readEntryNotFeed = false);
+
+protected:
+ void startElementHandler(const char *tag, const char **attributes);
+ void endElementHandler(const char *tag);
+ void characterDataHandler(const char *text, std::size_t len);
+ bool processNamespaces() const;
+
+protected:
+ enum State {
+ START,
+ FEED, F_ENTRY, F_ID, F_LINK, F_CATEGORY, F_TITLE, F_UPDATED, F_AUTHOR, F_SUBTITLE, F_ICON, F_SUMMARY,
+ FA_NAME, FA_URI, FA_EMAIL,
+ FE_AUTHOR, FE_ID, FE_CATEGORY, FE_LINK, FE_PUBLISHED, FE_SUMMARY, FE_CONTENT, FE_SUBTITLE, FE_TITLE, FE_ICON, FE_UPDATED, FE_DC_LANGUAGE, FE_DC_ISSUED, FE_DC_PUBLISHER, FE_CALIBRE_SERIES, FE_CALIBRE_SERIES_INDEX,
+ FEL_PRICE, FEL_FORMAT,
+ FEA_NAME, FEA_URI, FEA_EMAIL,
+ OPENSEARCH_TOTALRESULTS, OPENSEARCH_ITEMSPERPAGE, OPENSEARCH_STARTINDEX,
+ FEC_HACK_SPAN,
+ };
+
+protected:
+ shared_ptr<OPDSFeedReader> myFeedReader;
+ State myState;
+
+private:
+ std::string myBuffer;
+ shared_ptr<OPDSFeedMetadata> myFeed;
+ shared_ptr<OPDSEntry> myEntry;
+
+ shared_ptr<ATOMAuthor> myAuthor;
+ shared_ptr<ATOMId> myId;
+ shared_ptr<ATOMIcon> myIcon;
+ shared_ptr<ATOMLink> myLink;
+ shared_ptr<ATOMCategory> myCategory;
+ shared_ptr<ATOMUpdated> myUpdated;
+ shared_ptr<ATOMPublished> myPublished;
+
+ //shared_ptr<ATOMTitle> myTitle; // TODO: implement ATOMTextConstruct & ATOMTitle
+ //shared_ptr<ATOMSummary> mySummary; // TODO: implement ATOMTextConstruct & ATOMSummary
+ bool mySummaryTagFound;
+};
+
+#endif /* __OPDSXMLPARSER_H__ */