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

Side by Side Diff: lib/elemHide.js

Issue 29774573: Issue 6652 - Do not push to unconditional selectors array (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Make getUnconditionalSelectors private Created May 8, 2018, 5:12 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 */ 56 */
57 let knownFilters = new Set(); 57 let knownFilters = new Set();
58 58
59 /** 59 /**
60 * Lookup table, lists of element hiding exceptions by selector 60 * Lookup table, lists of element hiding exceptions by selector
61 * @type {Map.<string,Filter>} 61 * @type {Map.<string,Filter>}
62 */ 62 */
63 let exceptions = new Map(); 63 let exceptions = new Map();
64 64
65 /** 65 /**
66 * Returns a list of selectors that apply on each website unconditionally.
67 * @returns {string[]}
68 */
69 function getUnconditionalSelectors()
70 {
71 if (!unconditionalSelectors)
72 unconditionalSelectors = [...filterBySelector.keys()];
73 return unconditionalSelectors;
Manish Jethani 2018/05/08 17:15:15 Note that now that's this function is private to t
74 }
75
76 /**
66 * Container for element hiding filters 77 * Container for element hiding filters
67 * @class 78 * @class
68 */ 79 */
69 let ElemHide = exports.ElemHide = { 80 let ElemHide = exports.ElemHide = {
70 /** 81 /**
71 * Removes all known filters 82 * Removes all known filters
72 */ 83 */
73 clear() 84 clear()
74 { 85 {
75 for (let collection of [filtersByDomain, filterBySelector, 86 for (let collection of [filtersByDomain, filterBySelector,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 for (let i = list.length - 1; i >= 0; i--) 208 for (let i = list.length - 1; i >= 0; i--)
198 { 209 {
199 if (list[i].isActiveOnDomain(docDomain)) 210 if (list[i].isActiveOnDomain(docDomain))
200 return list[i]; 211 return list[i];
201 } 212 }
202 213
203 return null; 214 return null;
204 }, 215 },
205 216
206 /** 217 /**
207 * Returns a list of selectors that apply on each website unconditionally.
208 * @returns {string[]}
209 */
210 getUnconditionalSelectors()
211 {
212 if (!unconditionalSelectors)
213 unconditionalSelectors = [...filterBySelector.keys()];
214 return unconditionalSelectors.slice();
215 },
216
217 /**
218 * Constant used by getSelectorsForDomain to return all selectors applying to 218 * Constant used by getSelectorsForDomain to return all selectors applying to
219 * a particular hostname. 219 * a particular hostname.
220 */ 220 */
221 ALL_MATCHING: 0, 221 ALL_MATCHING: 0,
222 222
223 /** 223 /**
224 * Constant used by getSelectorsForDomain to exclude selectors which apply to 224 * Constant used by getSelectorsForDomain to exclude selectors which apply to
225 * all websites without exception. 225 * all websites without exception.
226 */ 226 */
227 NO_UNCONDITIONAL: 1, 227 NO_UNCONDITIONAL: 1,
(...skipping 11 matching lines...) Expand all
239 * @param {number} [criteria] 239 * @param {number} [criteria]
240 * One of the following: ElemHide.ALL_MATCHING, ElemHide.NO_UNCONDITIONAL or 240 * One of the following: ElemHide.ALL_MATCHING, ElemHide.NO_UNCONDITIONAL or
241 * ElemHide.SPECIFIC_ONLY. 241 * ElemHide.SPECIFIC_ONLY.
242 * @returns {string[]} 242 * @returns {string[]}
243 * List of selectors. 243 * List of selectors.
244 */ 244 */
245 getSelectorsForDomain(domain, criteria) 245 getSelectorsForDomain(domain, criteria)
246 { 246 {
247 let selectors = []; 247 let selectors = [];
248 248
249 let unconditionalSelectors = null;
250
249 if (typeof criteria == "undefined") 251 if (typeof criteria == "undefined")
250 criteria = ElemHide.ALL_MATCHING; 252 criteria = ElemHide.ALL_MATCHING;
251 if (criteria < ElemHide.NO_UNCONDITIONAL) 253 if (criteria < ElemHide.NO_UNCONDITIONAL)
252 selectors = this.getUnconditionalSelectors(); 254 unconditionalSelectors = getUnconditionalSelectors();
253 255
254 let specificOnly = (criteria >= ElemHide.SPECIFIC_ONLY); 256 let specificOnly = (criteria >= ElemHide.SPECIFIC_ONLY);
255 let excluded = new Set(); 257 let excluded = new Set();
256 let currentDomain = domain ? domain.toUpperCase() : ""; 258 let currentDomain = domain ? domain.toUpperCase() : "";
257 259
258 // This code is a performance hot-spot, which is why we've made certain 260 // This code is a performance hot-spot, which is why we've made certain
259 // micro-optimisations. Please be careful before making changes. 261 // micro-optimisations. Please be careful before making changes.
260 while (true) 262 while (true)
261 { 263 {
262 if (specificOnly && currentDomain == "") 264 if (specificOnly && currentDomain == "")
(...skipping 16 matching lines...) Expand all
279 } 281 }
280 } 282 }
281 283
282 if (currentDomain == "") 284 if (currentDomain == "")
283 break; 285 break;
284 286
285 let nextDot = currentDomain.indexOf("."); 287 let nextDot = currentDomain.indexOf(".");
286 currentDomain = nextDot == -1 ? "" : currentDomain.substr(nextDot + 1); 288 currentDomain = nextDot == -1 ? "" : currentDomain.substr(nextDot + 1);
287 } 289 }
288 290
291 if (unconditionalSelectors)
292 selectors = unconditionalSelectors.concat(selectors);
293
289 return selectors; 294 return selectors;
290 } 295 }
291 }; 296 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld