Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
177 _logger.info('Rendering: %s', name) | 177 _logger.info('Rendering: %s', name) |
178 lines, default_source = _get_and_parse_fragment(name, sources, top_source) | 178 lines, default_source = _get_and_parse_fragment(name, sources, top_source) |
179 lines = _process_includes(sources, default_source, [name], lines) | 179 lines = _process_includes(sources, default_source, [name], lines) |
180 for proc in [_process_timestamps, _insert_version, _remove_duplicates, | 180 for proc in [_process_timestamps, _insert_version, _remove_duplicates, |
181 _validate]: | 181 _validate]: |
182 lines = proc(lines) | 182 lines = proc(lines) |
183 return lines | 183 return lines |
184 | 184 |
185 | 185 |
186 def _split_list_for_diff(list_in): | 186 def _split_list_for_diff(list_in): |
187 filterlist, metadata, keys = set(), set(), set() | 187 """Split a filter list into metadata, keys, and rules.""" |
Vasily Kuznetsov
2018/08/31 12:11:02
Nit: strictly speaking this function now returns m
rhowell
2018/08/31 21:21:02
Ah, good point! I'll update that.
| |
188 metadata = {} | |
189 rules = set() | |
188 for line in parse_filterlist(list_in): | 190 for line in parse_filterlist(list_in): |
189 if line.type == 'metadata': | 191 if line.type == 'metadata': |
190 metadata.add(line.to_string()) | 192 metadata[line.key.lower()] = line |
191 keys.add(line.key.lower()) | |
192 elif line.type == 'filter': | 193 elif line.type == 'filter': |
193 filterlist.add(line.to_string()) | 194 rules.add(line.to_string()) |
194 return filterlist, metadata, keys | 195 return metadata, rules |
195 | 196 |
196 | 197 |
197 def render_diff(base, latest): | 198 def render_diff(base, latest): |
198 """Return a diff between two filter lists. | 199 """Return a diff between two filter lists. |
199 | 200 |
200 Parameters | 201 Parameters |
201 ---------- | 202 ---------- |
202 base : iterator of str | 203 base : iterator of str |
203 The base (old) list that we want to update to latest. | 204 The base (old) list that we want to update to latest. |
204 lastest : iterator of str | 205 lastest : iterator of str |
205 The latest (most recent) list that we want to update to. | 206 The latest (most recent) list that we want to update to. |
206 | 207 |
207 Returns | 208 Returns |
208 ------- | 209 ------- |
209 iterable of str | 210 iterable of str |
210 A diff between two lists (https://issues.adblockplus.org/ticket/6685) | 211 A diff between two lists (https://issues.adblockplus.org/ticket/6685) |
211 | 212 |
212 """ | 213 """ |
213 latest_fl, latest_md, latest_keys = _split_list_for_diff(latest) | 214 latest_metadata, latest_rules = _split_list_for_diff(latest) |
214 base_fl, base_md, base_keys = _split_list_for_diff(base) | 215 base_metadata, base_rules = _split_list_for_diff(base) |
215 | |
216 new_md = latest_md - base_md | |
217 removed_keys = base_keys - latest_keys | |
218 add_fl = latest_fl - base_fl | |
219 remove_fl = base_fl - latest_fl | |
220 | 216 |
221 yield '[Adblock Plus Diff]' | 217 yield '[Adblock Plus Diff]' |
222 for item in new_md: | 218 for key, latest in latest_metadata.items(): |
223 yield item | 219 base = base_metadata.get(key) |
224 for key in removed_keys: | 220 if not base or base.value != latest.value: |
225 # If a special comment has been removed, enter it with a blank value | 221 yield latest.to_string() |
226 # so the client will set it back to the default value | 222 for key in set(base_metadata) - set(latest_metadata): |
227 yield '! {}:'.format(key) | 223 yield '! {}:'.format(base_metadata[key].key) |
228 for item in remove_fl: | 224 for rule in base_rules - latest_rules: |
229 yield '- {}'.format(item) | 225 yield '- {}'.format(rule) |
230 for item in add_fl: | 226 for rule in latest_rules - base_rules: |
231 yield '+ {}'.format(item) | 227 yield '+ {}'.format(rule) |
LEFT | RIGHT |