blob: 5cc20a4df827e3f58f4db465efa667b0f2c7e5b1 (
plain) (
blame)
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
|
#ifndef NEWSBOAT_MATCHER_H_
#define NEWSBOAT_MATCHER_H_
#include "FilterParser.h"
namespace newsboat {
class Matchable;
class Matcher {
public:
Matcher();
explicit Matcher(const std::string& expr);
bool parse(const std::string& expr);
bool matches(Matchable* item);
const std::string& get_parse_error();
const std::string& get_expression();
private:
bool matches_r(expression* e, Matchable* item);
bool matchop_lt(expression* e, Matchable* item);
bool matchop_gt(expression* e, Matchable* item);
bool matchop_rxeq(expression* e, Matchable* item);
bool matchop_cont(expression* e, Matchable* item);
bool matchop_eq(expression* e, Matchable* item);
bool matchop_between(expression* e, Matchable* item);
FilterParser p;
std::string errmsg;
std::string exp;
};
} // namespace newsboat
#endif /* NEWSBOAT_MATCHER_H_ */
|