1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/*
* Copyright (C) 2009-2012 Geometer Plus <[email protected]>
*
* 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__ */
|