OLD | NEW |
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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 domainSource: null, | 440 domainSource: null, |
441 | 441 |
442 /** | 442 /** |
443 * Separator character used in domainSource property, must be | 443 * Separator character used in domainSource property, must be |
444 * overridden by subclasses | 444 * overridden by subclasses |
445 * @type {string} | 445 * @type {string} |
446 */ | 446 */ |
447 domainSeparator: null, | 447 domainSeparator: null, |
448 | 448 |
449 /** | 449 /** |
| 450 * Number of times {@link ActiveFilter#domains} has been accessed. |
| 451 * @type {number} |
| 452 * @private |
| 453 */ |
| 454 _domainsAccessCount: 0, |
| 455 |
| 456 /** |
| 457 * Maximum number of times {@link ActiveFilter#domains} can be accessed |
| 458 * before the value is cached. |
| 459 * @type {number} |
| 460 * @private |
| 461 */ |
| 462 _domainsAccessCacheThreshold: 3, |
| 463 |
| 464 /** |
450 * Map containing domains that this filter should match on/not match | 465 * Map containing domains that this filter should match on/not match |
451 * on or null if the filter should match on all domains | 466 * on or null if the filter should match on all domains |
452 * @type {?Map.<string,boolean>} | 467 * @type {?Map.<string,boolean>} |
453 */ | 468 */ |
454 get domains() | 469 get domains() |
455 { | 470 { |
| 471 // For some filter types this property is accessed only rarely, especially |
| 472 // when the subscriptions are initially loaded. We defer any caching for |
| 473 // such filters. |
| 474 let cacheValue = ++this._domainsAccessCount > |
| 475 this._domainsAccessCacheThreshold; |
| 476 |
456 let domains = null; | 477 let domains = null; |
457 | 478 |
458 if (this.domainSource) | 479 if (this.domainSource) |
459 { | 480 { |
460 let source = this.domainSource.toLowerCase(); | 481 let source = this.domainSource.toLowerCase(); |
461 | 482 |
462 let knownMap = knownDomainMaps.get(source); | 483 let knownMap = knownDomainMaps.get(source); |
463 if (knownMap) | 484 if (knownMap) |
464 { | 485 { |
465 domains = knownMap; | 486 domains = knownMap; |
(...skipping 30 matching lines...) Expand all Loading... |
496 if (!domains) | 517 if (!domains) |
497 domains = new Map(); | 518 domains = new Map(); |
498 | 519 |
499 domains.set(domain, include); | 520 domains.set(domain, include); |
500 } | 521 } |
501 | 522 |
502 if (domains) | 523 if (domains) |
503 domains.set("", !hasIncludes); | 524 domains.set("", !hasIncludes); |
504 } | 525 } |
505 | 526 |
506 if (domains) | 527 if (!domains || cacheValue) |
507 knownDomainMaps.set(source, domains); | 528 knownDomainMaps.set(source, domains); |
508 } | 529 } |
509 | 530 |
510 this.domainSource = null; | 531 if (!domains || cacheValue) |
| 532 this.domainSource = null; |
511 } | 533 } |
512 | 534 |
513 Object.defineProperty(this, "domains", {value: domains}); | 535 if (!domains || cacheValue) |
514 return this.domains; | 536 Object.defineProperty(this, "domains", {value: domains}); |
| 537 |
| 538 return domains; |
515 }, | 539 }, |
516 | 540 |
517 /** | 541 /** |
518 * Array containing public keys of websites that this filter should apply to | 542 * Array containing public keys of websites that this filter should apply to |
519 * @type {?string[]} | 543 * @type {?string[]} |
520 */ | 544 */ |
521 sitekeys: null, | 545 sitekeys: null, |
522 | 546 |
523 /** | 547 /** |
524 * Checks whether this filter is active on a domain. | 548 * Checks whether this filter is active on a domain. |
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 | 1261 |
1238 /** | 1262 /** |
1239 * Script that should be executed | 1263 * Script that should be executed |
1240 * @type {string} | 1264 * @type {string} |
1241 */ | 1265 */ |
1242 get script() | 1266 get script() |
1243 { | 1267 { |
1244 return this.body; | 1268 return this.body; |
1245 } | 1269 } |
1246 }); | 1270 }); |
OLD | NEW |