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

Delta Between Two Patch Sets: src/FilterEngine.cpp

Issue 29331737: Issue 3363 - Implement IsDocumentWhitelisted and IsElemhideWhitelisted (Closed)
Left Patch Set: Even more issues Created Dec. 2, 2015, 5:38 p.m.
Right Patch Set: Reverted a whitespace removal Created Dec. 3, 2015, 8:39 p.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 | « include/AdblockPlus/FilterEngine.h ('k') | test/FilterEngine.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 return match; 321 return match;
322 lastDocumentUrl = documentUrl; 322 lastDocumentUrl = documentUrl;
323 } 323 }
324 324
325 return CheckFilterMatch(url, contentType, lastDocumentUrl); 325 return CheckFilterMatch(url, contentType, lastDocumentUrl);
326 } 326 }
327 327
328 bool FilterEngine::IsDocumentWhitelisted(const std::string& url, 328 bool FilterEngine::IsDocumentWhitelisted(const std::string& url,
329 const std::vector<std::string>& documentUrls) const 329 const std::vector<std::string>& documentUrls) const
330 { 330 {
331 return GetWhitelistingFilter(url, CONTENT_TYPE_DOCUMENT, documentUrls) != 0; 331 return !!GetWhitelistingFilter(url, CONTENT_TYPE_DOCUMENT, documentUrls);
Felix Dahlke 2015/12/02 18:02:03 Nit: != 0 is redundant, according to the Mozilla c
René Jeschke 2015/12/02 18:09:42 I know, and I wouldn't normally do this (as you kn
sergei 2015/12/02 18:21:57 Let me take a part, I would compare with `nullptr`
Felix Dahlke 2015/12/02 18:50:26 Yeah, !! is pretty idiomatic for coercing an arbit
René Jeschke 2015/12/03 11:31:20 Yep, fine with me. Went with !! in the end.
332 } 332 }
333 333
334 bool FilterEngine::IsElemhideWhitelisted(const std::string& url, 334 bool FilterEngine::IsElemhideWhitelisted(const std::string& url,
335 const std::vector<std::string>& documentUrls) const 335 const std::vector<std::string>& documentUrls) const
336 { 336 {
337 return GetWhitelistingFilter(url, CONTENT_TYPE_ELEMHIDE, documentUrls) != 0; 337 return !!GetWhitelistingFilter(url, CONTENT_TYPE_ELEMHIDE, documentUrls);
338 } 338 }
339 339
340 AdblockPlus::FilterPtr FilterEngine::CheckFilterMatch(const std::string& url, 340 AdblockPlus::FilterPtr FilterEngine::CheckFilterMatch(const std::string& url,
341 ContentType contentType, 341 ContentType contentType,
342 const std::string& documentUrl) const 342 const std::string& documentUrl) const
343 { 343 {
344 JsValuePtr func = jsEngine->Evaluate("API.checkFilterMatch"); 344 JsValuePtr func = jsEngine->Evaluate("API.checkFilterMatch");
345 JsValueList params; 345 JsValueList params;
346 params.push_back(jsEngine->NewValue(url)); 346 params.push_back(jsEngine->NewValue(url));
347 params.push_back(jsEngine->NewValue(ContentTypeToString(contentType))); 347 params.push_back(jsEngine->NewValue(ContentTypeToString(contentType)));
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 params.push_back(jsEngine->NewValue(v1)); 472 params.push_back(jsEngine->NewValue(v1));
473 params.push_back(jsEngine->NewValue(v2)); 473 params.push_back(jsEngine->NewValue(v2));
474 JsValuePtr func = jsEngine->Evaluate("API.compareVersions"); 474 JsValuePtr func = jsEngine->Evaluate("API.compareVersions");
475 return func->Call(params)->AsInt(); 475 return func->Call(params)->AsInt();
476 } 476 }
477 477
478 FilterPtr FilterEngine::GetWhitelistingFilter(const std::string& url, 478 FilterPtr FilterEngine::GetWhitelistingFilter(const std::string& url,
479 ContentType contentType, const std::string& documentUrl) const 479 ContentType contentType, const std::string& documentUrl) const
480 { 480 {
481 FilterPtr match = Matches(url, contentType, documentUrl); 481 FilterPtr match = Matches(url, contentType, documentUrl);
482
Felix Dahlke 2015/12/02 18:02:03 Micro nit: Superfluous whitespace? Can't tell if i
René Jeschke 2015/12/02 18:09:42 Done.
483 if (match && match->GetType() == Filter::TYPE_EXCEPTION) 482 if (match && match->GetType() == Filter::TYPE_EXCEPTION)
484 { 483 {
485 return match; 484 return match;
486 } 485 }
487 return FilterPtr(); 486 return FilterPtr();
488 } 487 }
489 488
490 FilterPtr FilterEngine::GetWhitelistingFilter(const std::string& url, 489 FilterPtr FilterEngine::GetWhitelistingFilter(const std::string& url,
491 ContentType contentType, 490 ContentType contentType,
492 const std::vector<std::string>& documentUrls) const 491 const std::vector<std::string>& documentUrls) const
(...skipping 12 matching lines...) Expand all
505 currentUrl, contentType, parentUrl); 504 currentUrl, contentType, parentUrl);
506 if (filter) 505 if (filter)
507 { 506 {
508 return filter; 507 return filter;
509 } 508 }
510 currentUrl = parentUrl; 509 currentUrl = parentUrl;
511 } 510 }
512 while (urlIterator != documentUrls.end()); 511 while (urlIterator != documentUrls.end());
513 return FilterPtr(); 512 return FilterPtr();
514 } 513 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld