forked from newsboat/newsboat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.h
69 lines (58 loc) · 1.42 KB
/
parser.h
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
#ifndef NEWSBOAT_RSSPPPARSER_H_
#define NEWSBOAT_RSSPPPARSER_H_
#include <curl/curl.h>
#include <libxml/parser.h>
#include <string>
#include "remoteapi.h"
#include "feed.h"
namespace newsboat {
class CurlHandle;
}
namespace rsspp {
class Parser {
public:
Parser(unsigned int timeout = 30,
const std::string& user_agent = "",
const std::string& proxy = "",
const std::string& proxy_auth = "",
curl_proxytype proxy_type = CURLPROXY_HTTP,
const bool ssl_verify = true);
~Parser();
Feed parse_url(const std::string& url,
newsboat::CurlHandle& easyhandle,
time_t lastmodified = 0,
const std::string& etag = "",
newsboat::RemoteApi* api = 0,
const std::string& cookie_cache = "");
Feed parse_url(const std::string& url,
time_t lastmodified = 0,
const std::string& etag = "",
newsboat::RemoteApi* api = 0,
const std::string& cookie_cache = "");
Feed parse_buffer(const std::string& buffer,
const std::string& url = "");
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 std::string ua;
const std::string prx;
const std::string prxauth;
curl_proxytype prxtype;
const bool verify_ssl;
xmlDocPtr doc;
time_t lm;
std::string et;
};
} // namespace rsspp
#endif /* NEWSBOAT_RSSPPPARSER_H_ */