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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/* rsspp - Copyright (C) 2008-2009 Andreas Krennmair <ak@newsbeuter.org>
* Licensed under the MIT/X Consortium License. See file LICENSE
* for more information.
*/
#ifndef RSSPP_H
#define RSSPP_H
#include <string>
#include <vector>
#include <exception>
#include <libxml/parser.h>
#include <curl/curl.h>
namespace rsspp {
enum version { UNKNOWN = 0, RSS_0_91, RSS_0_92, RSS_1_0, RSS_2_0, ATOM_0_3, ATOM_1_0, RSS_0_94 };
struct item {
std::string title;
std::string title_type;
std::string link;
std::string description;
std::string description_type;
std::string author;
std::string author_email;
std::string pubDate;
std::string guid;
bool guid_isPermaLink;
std::string enclosure_url;
std::string enclosure_type;
// extensions:
std::string content_encoded;
std::string itunes_summary;
};
struct feed {
std::string encoding;
version rss_version;
std::string title;
std::string title_type;
std::string description;
std::string link;
std::string language;
std::string managingeditor;
std::string dc_creator;
std::string pubDate;
std::vector<item> items;
};
class exception : public std::exception {
public:
exception(const std::string& errmsg = "");
~exception() throw();
virtual const char* what() const throw();
private:
std::string emsg;
};
class parser {
public:
parser(unsigned int timeout = 30, const char * user_agent = 0, const char * proxy = 0, const char * proxy_auth = 0, curl_proxytype proxy_type = CURLPROXY_HTTP);
~parser();
feed parse_url(const std::string& url, time_t lastmodified = 0, const std::string& etag = "");
feed parse_buffer(const char * buffer, size_t size, const char * url = NULL);
feed parse_file(const std::string& filename);
time_t get_last_modified() { return lm; }
const std::string& get_etag() { return et; }
static void global_init();
static void global_cleanup();
private:
feed parse_xmlnode(xmlNode * node);
unsigned int to;
const char * ua;
const char * prx;
const char * prxauth;
curl_proxytype prxtype;
xmlDocPtr doc;
time_t lm;
std::string et;
};
}
#endif
|