Left: | ||
Right: |
OLD | NEW |
---|---|
1 # This file is part of Adblock Plus <https://adblockplus.org/>, | 1 # This file is part of Adblock Plus <https://adblockplus.org/>, |
2 # Copyright (C) 2006-present eyeo GmbH | 2 # Copyright (C) 2006-present eyeo GmbH |
3 # | 3 # |
4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
7 # | 7 # |
8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
12 # | 12 # |
13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 |
16 """Combine filter list fragments to produce filter lists.""" | 16 """Combine filter list fragments to produce filter lists.""" |
17 | 17 |
18 from __future__ import unicode_literals | 18 from __future__ import unicode_literals |
19 | 19 |
20 import itertools | 20 import itertools |
21 import logging | 21 import logging |
22 import time | 22 import time |
23 | 23 |
24 from .parser import parse_filterlist, Comment, Metadata | 24 from .parser import parse_filterlist, Comment, Metadata |
25 from .sources import NotFound | 25 from .sources import NotFound |
26 | 26 |
27 __all__ = ['IncludeError', 'MissingHeader', 'render_filterlist'] | 27 __all__ = ['IncludeError', 'MissingHeader', 'render_filterlist', 'render_diff'] |
28 | 28 |
29 _logger = logging.getLogger(__name__) | 29 _logger = logging.getLogger(__name__) |
30 | 30 |
31 | 31 |
32 class IncludeError(Exception): | 32 class IncludeError(Exception): |
33 """Error in processing include instruction.""" | 33 """Error in processing include instruction.""" |
34 | 34 |
35 def __init__(self, error, stack): | 35 def __init__(self, error, stack): |
36 stack_str = ' from '.join(map("'{}'".format, reversed(stack))) | 36 stack_str = ' from '.join(map("'{}'".format, reversed(stack))) |
37 if stack_str: | 37 if stack_str: |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
173 lead to rendering an invalid filter list, so we immediately abort. | 173 lead to rendering an invalid filter list, so we immediately abort. |
174 | 174 |
175 """ | 175 """ |
176 _logger.info('Rendering: %s', name) | 176 _logger.info('Rendering: %s', name) |
177 lines, default_source = _get_and_parse_fragment(name, sources, top_source) | 177 lines, default_source = _get_and_parse_fragment(name, sources, top_source) |
178 lines = _process_includes(sources, default_source, [name], lines) | 178 lines = _process_includes(sources, default_source, [name], lines) |
179 for proc in [_process_timestamps, _insert_version, _remove_duplicates, | 179 for proc in [_process_timestamps, _insert_version, _remove_duplicates, |
180 _validate]: | 180 _validate]: |
181 lines = proc(lines) | 181 lines = proc(lines) |
182 return lines | 182 return lines |
183 | |
184 | |
185 def _split_list_for_diff(list_in): | |
186 filterlist, metadata, keys = (set() for i in range(3)) | |
Vasily Kuznetsov
2018/08/21 14:59:59
I'm not sure if maybe a slightly more readable ver
rhowell
2018/08/27 22:06:27
Done.
| |
187 for line in parse_filterlist(list_in): | |
Sebastian Noack
2018/08/21 19:42:46
When parsing generated filter lists in order to ge
Vasily Kuznetsov
2018/08/22 13:10:50
Theoretically there should be no includes/instruct
Sebastian Noack
2018/08/22 14:31:06
Granted, this is quite an edge case. But in theory
Vasily Kuznetsov
2018/08/24 13:03:19
To do this we would need to start parsing fragment
rhowell
2018/08/27 22:06:27
Yeah, I was working under the assumption that the
| |
188 if line.type == 'metadata' and 'Checksum' not in line.to_string(): | |
189 metadata.add(line.to_string()) | |
190 keys.add(line.key) | |
191 elif line.type == 'filter': | |
192 filterlist.add(line.to_string()) | |
193 return filterlist, metadata, keys | |
194 | |
195 | |
196 def render_diff(base, latest): | |
197 """Return a diff between two filter lists. | |
198 | |
199 Parameters | |
200 ---------- | |
201 base : iterator of str | |
202 The base (old) list that we want to update to latest. | |
203 lastest : iterator of str | |
204 The latest (most recent) list that we want to update to. | |
205 | |
206 Returns | |
207 ------- | |
208 iterable of str | |
209 A diff between two lists (https://issues.adblockplus.org/ticket/6685) | |
210 | |
211 """ | |
212 latest_fl, latest_md, latest_keys = _split_list_for_diff(latest) | |
213 base_fl, base_md, base_keys = _split_list_for_diff(base) | |
214 | |
215 new_md = latest_md - base_md | |
216 removed_keys = base_keys - latest_keys | |
217 add_fl = latest_fl - base_fl | |
218 remove_fl = base_fl - latest_fl | |
219 | |
220 yield '[Adblock Plus Diff]' | |
221 for item in new_md: | |
222 yield item | |
223 for key in removed_keys: | |
224 # If a special comment has been removed, enter it with a blank value | |
225 # so the client will set it back to the default value | |
226 yield '! {}:'.format(key) | |
227 for item in add_fl: | |
228 yield '+ {}'.format(item) | |
229 for item in remove_fl: | |
230 yield '- {}'.format(item) | |
Sebastian Noack
2018/08/21 19:42:46
In the specification, we demand the client to proc
Sebastian Noack
2018/08/22 16:03:29
After discussing this on IRC, Vasily agrees. I upd
Vasily Kuznetsov
2018/08/24 13:03:19
👍
rhowell
2018/08/27 22:06:27
Done.
| |
OLD | NEW |