Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: include/AdblockPlus/FilterEngine.h

Issue 10169005: Windows specific changes. All tests passing on Windows. (Closed)
Left Patch Set: Created April 9, 2013, 2:22 a.m.
Right Patch Set: Previous patch comments addressed Created April 9, 2013, 7:38 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | src/FilterEngine.cpp » ('j') | src/FilterEngine.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #ifndef ADBLOCKPLUS_FILTER_ENGINE_H 1 #ifndef ADBLOCKPLUS_FILTER_ENGINE_H
2 #define ADBLOCKPLUS_FILTER_ENGINE_H 2 #define ADBLOCKPLUS_FILTER_ENGINE_H
3 3
4 #include <vector> 4 #include <vector>
5 #include <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 #ifdef _WIN32 || _WIN64
Wladimir Palant 2013/04/09 05:47:07 I would prefer #if _MSC_VER_ here - it's cleaner,
8 #include <memory>
9 #include <cctype>
10 #include <functional>
Wladimir Palant 2013/04/09 05:47:07 Are these two headers really required on Windows?
Oleksandr 2013/04/09 05:54:21 <cctype> - for isspace <functional> - for not1 and
Wladimir Palant 2013/04/09 06:43:48 Then they should be added at the top of FilterEngi
Felix Dahlke 2013/04/09 08:18:06 If it compiles on Linux/Android without them, they
Wladimir Palant 2013/04/09 08:38:32 We are using functions from these headers. It mere
11 #else
12 #include <tr1/memory>
13 #endif
14 7
15 namespace AdblockPlus 8 namespace AdblockPlus
16 { 9 {
17 class JsEngine; 10 class JsEngine;
18 class FilterEngine; 11 class FilterEngine;
19 12
20 class JsObject 13 class JsObject
21 { 14 {
22 public: 15 public:
23 std::string GetProperty(const std::string& name, const std::string& defaultV alue) const; 16 std::string GetProperty(const std::string& name, const std::string& defaultV alue) const;
(...skipping 18 matching lines...) Expand all
42 35
43 FilterEngine& filterEngine; 36 FilterEngine& filterEngine;
44 std::map<std::string, std::string> stringProperties; 37 std::map<std::string, std::string> stringProperties;
45 std::map<std::string, int> intProperties; 38 std::map<std::string, int> intProperties;
46 std::map<std::string, bool> boolProperties; 39 std::map<std::string, bool> boolProperties;
47 #else 40 #else
48 JsObject(); 41 JsObject();
49 #endif 42 #endif
50 }; 43 };
51 44
52 enum FilterType {BLOCKING_RULE, EXCEPTION_RULE,
53 ELEMHIDE_RULE, ELEMHIDE_EXCEPTION_RULE,
54 COMMENT_RULE, INVALID_RULE};
55
56 class Filter : public JsObject, 45 class Filter : public JsObject,
57 public std::tr1::enable_shared_from_this<Filter> 46 public std::tr1::enable_shared_from_this<Filter>
58 { 47 {
59 friend class FilterEngine; 48 friend class FilterEngine;
60 49
61 public: 50 public:
51 enum Type {TYPE_BLOCKING, TYPE_EXCEPTION,
52 TYPE_ELEMHIDE, TYPE_ELEMHIDE_EXCEPTION,
53 TYPE_COMMENT, TYPE_INVALID};
54
62 bool IsListed() const; 55 bool IsListed() const;
63 void AddToList(); 56 void AddToList();
64 void RemoveFromList(); 57 void RemoveFromList();
65 58
66 private: 59 private:
67 #if FILTER_ENGINE_STUBS 60 #if FILTER_ENGINE_STUBS
68 Filter(FilterEngine& filterEngine, const std::string& text); 61 Filter(FilterEngine& filterEngine, const std::string& text);
69 #else 62 #else
70 Filter(); 63 Filter();
71 #endif 64 #endif
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 #if FILTER_ENGINE_STUBS 108 #if FILTER_ENGINE_STUBS
116 std::map<std::string, FilterPtr> knownFilters; 109 std::map<std::string, FilterPtr> knownFilters;
117 std::vector<FilterPtr> listedFilters; 110 std::vector<FilterPtr> listedFilters;
118 std::map<std::string, SubscriptionPtr> knownSubscriptions; 111 std::map<std::string, SubscriptionPtr> knownSubscriptions;
119 std::vector<SubscriptionPtr> listedSubscriptions; 112 std::vector<SubscriptionPtr> listedSubscriptions;
120 #endif 113 #endif
121 }; 114 };
122 } 115 }
123 116
124 #endif 117 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld