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

Side by Side Diff: src/plugin/PluginFilter.cpp

Issue 6433575100481536: Issue 1148 - ABP on chrome blocks ads but IE doesnt (Closed)
Patch Set: fix according to the discussion Created Nov. 27, 2014, 1:10 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 | src/plugin/PluginUtil.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 #include "PluginFilter.h" 3 #include "PluginFilter.h"
4 #include "PluginSettings.h" 4 #include "PluginSettings.h"
5 #include "PluginClient.h" 5 #include "PluginClient.h"
6 #include "PluginClientFactory.h" 6 #include "PluginClientFactory.h"
7 #include "PluginMutex.h" 7 #include "PluginMutex.h"
8 #include "PluginSettings.h" 8 #include "PluginSettings.h"
9 #include "PluginSystem.h" 9 #include "PluginSystem.h"
10 #include "PluginClass.h" 10 #include "PluginClass.h"
11 #include "mlang.h" 11 #include "mlang.h"
12 12
13 #include "..\shared\CriticalSection.h" 13 #include "..\shared\CriticalSection.h"
14 #include "..\shared\Utils.h"
14 15
15 16
16 // The filters are described at http://adblockplus.org/en/filters 17 // The filters are described at http://adblockplus.org/en/filters
17 18
18 static CriticalSection s_criticalSectionFilterMap; 19 static CriticalSection s_criticalSectionFilterMap;
19 20
21 namespace
22 {
23 struct GetHtmlElementAttributeResult
Felix Dahlke 2014/11/27 13:58:46 How about "HtmlAttributeMatch" or something in tha
sergei 2014/11/27 14:47:25 I also don't feel it to be a good name, but I find
Felix Dahlke 2014/11/27 14:57:27 Fair enough, yeah. Let's go with GetHtmlElementAtt
24 {
25 GetHtmlElementAttributeResult() : isAttributeFound(false)
26 {
27 }
28 std::wstring attributeValue;
29 bool isAttributeFound;
30 };
31
32 GetHtmlElementAttributeResult GetHtmlElementAttribute(IHTMLElement& htmlElemen t,
33 const ATL::CComBSTR& attributeName)
34 {
35 GetHtmlElementAttributeResult retValue;
36 ATL::CComVariant vAttr;
37 ATL::CComPtr<IHTMLElement4> htmlElement4;
38 if (FAILED(htmlElement.QueryInterface(&htmlElement4)) || !htmlElement4)
39 {
40 return retValue;
41 }
42 ATL::CComPtr<IHTMLDOMAttribute> attributeNode;
43 if (FAILED(htmlElement4->getAttributeNode(attributeName, &attributeNode)) || !attributeNode)
44 {
45 return retValue;
46 }
47 // we set that attribute found but it's not necessary that we can retrieve i ts value
48 retValue.isAttributeFound = true;
49 if (FAILED(attributeNode->get_nodeValue(&vAttr)))
50 {
51 return retValue;
52 }
53 if (vAttr.vt == VT_BSTR && vAttr.bstrVal)
54 {
55 retValue.attributeValue = vAttr.bstrVal;
56 }
57 else if (vAttr.vt == VT_I4)
58 {
59 retValue.attributeValue = std::to_wstring(vAttr.iVal);
60 }
61 return retValue;
62 }
63 }
64
20 // ============================================================================ 65 // ============================================================================
21 // CFilterElementHideAttrSelector 66 // CFilterElementHideAttrSelector
22 // ============================================================================ 67 // ============================================================================
23 68
24 CFilterElementHideAttrSelector::CFilterElementHideAttrSelector() : m_type(TYPE_N ONE), m_pos(POS_NONE), m_bstrAttr(NULL) 69 CFilterElementHideAttrSelector::CFilterElementHideAttrSelector() : m_type(TYPE_N ONE), m_pos(POS_NONE), m_bstrAttr(NULL)
25 { 70 {
26 } 71 }
27 72
28 CFilterElementHideAttrSelector::CFilterElementHideAttrSelector(const CFilterElem entHideAttrSelector& filter) 73 CFilterElementHideAttrSelector::CFilterElementHideAttrSelector(const CFilterElem entHideAttrSelector& filter)
29 { 74 {
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 } 310 }
266 if (!foundMatch) 311 if (!foundMatch)
267 { 312 {
268 return false; 313 return false;
269 } 314 }
270 } 315 }
271 } 316 }
272 if (!m_tag.IsEmpty()) 317 if (!m_tag.IsEmpty())
273 { 318 {
274 CComBSTR tagName; 319 CComBSTR tagName;
320 hr = pEl->get_tagName(&tagName);
275 tagName.ToLower(); 321 tagName.ToLower();
276 hr = pEl->get_tagName(&tagName);
277 if ((hr != S_OK) || (tagName != CComBSTR(m_tag))) 322 if ((hr != S_OK) || (tagName != CComBSTR(m_tag)))
278 { 323 {
279 return false; 324 return false;
280 } 325 }
281 } 326 }
282 327
283 // Check attributes 328 // Check attributes
284 for (std::vector<CFilterElementHideAttrSelector>::const_iterator attrIt = m_at tributeSelectors.begin(); 329 for (std::vector<CFilterElementHideAttrSelector>::const_iterator attrIt = m_at tributeSelectors.begin();
285 attrIt != m_attributeSelectors.end(); ++ attrIt) 330 attrIt != m_attributeSelectors.end(); ++ attrIt)
286 { 331 {
287 CString value; 332 ATL::CString value;
Felix Dahlke 2014/11/27 13:58:46 This change seems unrelated, hm? Plus we're still
sergei 2014/11/27 14:47:25 Yes, it's not important here, just was irritating
Felix Dahlke 2014/11/27 14:57:27 Yes I agree. It's just that we should avoid unrela
288 bool attrFound = false; 333 bool attrFound = false;
289 if (attrIt->m_type == CFilterElementHideAttrType::STYLE) 334 if (attrIt->m_type == CFilterElementHideAttrType::STYLE)
290 { 335 {
291 CComPtr<IHTMLStyle> pStyle; 336 CComPtr<IHTMLStyle> pStyle;
292 if (SUCCEEDED(pEl->get_style(&pStyle)) && pStyle) 337 if (SUCCEEDED(pEl->get_style(&pStyle)) && pStyle)
293 { 338 {
294 CComBSTR bstrStyle; 339 CComBSTR bstrStyle;
295 340
296 if (SUCCEEDED(pStyle->get_cssText(&bstrStyle)) && bstrStyle) 341 if (SUCCEEDED(pStyle->get_cssText(&bstrStyle)) && bstrStyle)
297 { 342 {
(...skipping 14 matching lines...) Expand all
312 } 357 }
313 else if (attrIt->m_type == CFilterElementHideAttrType::ID) 358 else if (attrIt->m_type == CFilterElementHideAttrType::ID)
314 { 359 {
315 CComBSTR bstrId; 360 CComBSTR bstrId;
316 if (SUCCEEDED(pEl->get_id(&bstrId)) && bstrId) 361 if (SUCCEEDED(pEl->get_id(&bstrId)) && bstrId)
317 { 362 {
318 value = bstrId; 363 value = bstrId;
319 attrFound = true; 364 attrFound = true;
320 } 365 }
321 } 366 }
322 else 367 else
323 { 368 {
324 CComVariant vAttr; 369 auto attributeValue = GetHtmlElementAttribute(*pEl, attrIt->m_bstrAttr);
325 if (SUCCEEDED(pEl->getAttribute(attrIt->m_bstrAttr, 0, &vAttr))) 370 if (attrFound = attributeValue.isAttributeFound)
326 { 371 {
327 attrFound = true; 372 value = ToCString(attributeValue.attributeValue);
328 if (vAttr.vt == VT_BSTR)
329 {
330 value = vAttr.bstrVal;
331 }
332 else if (vAttr.vt == VT_I4)
333 {
334 value.Format(L"%u", vAttr.iVal);
335 }
336 } 373 }
337 } 374 }
338 375
339 if (attrFound) 376 if (attrFound)
340 { 377 {
341 if (attrIt->m_pos == CFilterElementHideAttrPos::EXACT) 378 if (attrIt->m_pos == CFilterElementHideAttrPos::EXACT)
342 { 379 {
343 // TODO: IE rearranges the style attribute completely. Figure out if any thing can be done about it. 380 // TODO: IE rearranges the style attribute completely. Figure out if any thing can be done about it.
344 if (value != attrIt->m_value) 381 if (value != attrIt->m_value)
345 return false; 382 return false;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 m_contentMapText[CFilter::contentTypeSubdocument] = "SUBDOCUMENT"; 465 m_contentMapText[CFilter::contentTypeSubdocument] = "SUBDOCUMENT";
429 m_contentMapText[CFilter::contentTypeStyleSheet] = "STYLESHEET"; 466 m_contentMapText[CFilter::contentTypeStyleSheet] = "STYLESHEET";
430 m_contentMapText[CFilter::contentTypeXmlHttpRequest] = "XMLHTTPREQUEST"; 467 m_contentMapText[CFilter::contentTypeXmlHttpRequest] = "XMLHTTPREQUEST";
431 468
432 ClearFilters(); 469 ClearFilters();
433 } 470 }
434 471
435 472
436 bool CPluginFilter::AddFilterElementHide(CString filterText) 473 bool CPluginFilter::AddFilterElementHide(CString filterText)
437 { 474 {
438
439
440 DEBUG_FILTER("Input: " + filterText + " filterFile" + filterFile); 475 DEBUG_FILTER("Input: " + filterText + " filterFile" + filterFile);
441 476 CriticalSection::Lock filterEngineLock(s_criticalSectionFilterMap);
442 CriticalSection::Lock filterEngineLock(s_criticalSectionFilterMap);
443 { 477 {
444
445 CString filterString = filterText; 478 CString filterString = filterText;
446 // Create filter descriptor 479 // Create filter descriptor
447 std::auto_ptr<CFilterElementHide> filter; 480 std::auto_ptr<CFilterElementHide> filter;
448 481
449 CString wholeFilterString = filterString; 482 CString wholeFilterString = filterString;
450 wchar_t separatorChar; 483 wchar_t separatorChar;
451 do 484 do
452 { 485 {
453 int chunkEnd = filterText.FindOneOf(L"+>"); 486 int chunkEnd = filterText.FindOneOf(L"+>");
454 if (chunkEnd > 0) 487 if (chunkEnd > 0)
455 { 488 {
456 separatorChar = filterText.GetAt(chunkEnd); 489 separatorChar = filterText.GetAt(chunkEnd);
457 } 490 }
458 else 491 else
459 { 492 {
460 chunkEnd = filterText.GetLength(); 493 chunkEnd = filterText.GetLength();
461 separatorChar = L'\0'; 494 separatorChar = L'\0';
462 } 495 }
463 496
464 CString filterChunk = filterText.Left(chunkEnd).TrimRight(); 497 CString filterChunk = filterText.Left(chunkEnd).TrimRight();
465 std::auto_ptr<CFilterElementHide> filterParent(filter); 498 std::auto_ptr<CFilterElementHide> filterParent(filter);
466 499
467 filter.reset(new CFilterElementHide(filterChunk)); 500 filter.reset(new CFilterElementHide(filterChunk));
468 501
469 if (filterParent.get() != 0) 502 if (filterParent.get() != 0)
470 { 503 {
471 filter->m_predecessor.reset(filterParent.release()); 504 filter->m_predecessor.reset(filterParent.release());
472 } 505 }
473 506
474 if (separatorChar != L'\0') // complex selector 507 if (separatorChar != L'\0') // complex selector
475 { 508 {
476 filterText = filterText.Mid(chunkEnd + 1).TrimLeft(); 509 filterText = filterText.Mid(chunkEnd + 1).TrimLeft();
477 if (separatorChar == '+') 510 if (separatorChar == '+')
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 id = bstrId; 545 id = bstrId;
513 } 546 }
514 547
515 CString classNames; 548 CString classNames;
516 CComBSTR bstrClassNames; 549 CComBSTR bstrClassNames;
517 if (SUCCEEDED(pEl->get_className(&bstrClassNames)) && bstrClassNames) 550 if (SUCCEEDED(pEl->get_className(&bstrClassNames)) && bstrClassNames)
518 { 551 {
519 classNames = bstrClassNames; 552 classNames = bstrClassNames;
520 } 553 }
521 554
522 CriticalSection::Lock filterEngineLock(s_criticalSectionFilterMap); 555 CriticalSection::Lock filterEngineLock(s_criticalSectionFilterMap);
523 { 556 {
524 // Search tag/id filters 557 // Search tag/id filters
525 if (!id.IsEmpty()) 558 if (!id.IsEmpty())
526 { 559 {
527 std::pair<TFilterElementHideTagsNamed::const_iterator, TFilterElementHideT agsNamed::const_iterator> idItEnum = 560 std::pair<TFilterElementHideTagsNamed::const_iterator, TFilterElementHideT agsNamed::const_iterator> idItEnum =
528 m_elementHideTagsId.equal_range(std::make_pair(tagCString, id)); 561 m_elementHideTagsId.equal_range(std::make_pair(tagCString, id));
529 for (TFilterElementHideTagsNamed::const_iterator idIt = idItEnum.first; id It != idItEnum.second; idIt ++) 562 for (TFilterElementHideTagsNamed::const_iterator idIt = idItEnum.first; id It != idItEnum.second; idIt ++)
530 { 563 {
531 if (idIt->second.IsMatchFilterElementHide(pEl)) 564 if (idIt->second.IsMatchFilterElementHide(pEl))
532 { 565 {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 } 647 }
615 648
616 bool CPluginFilter::LoadHideFilters(std::vector<std::wstring> filters) 649 bool CPluginFilter::LoadHideFilters(std::vector<std::wstring> filters)
617 { 650 {
618 ClearFilters(); 651 ClearFilters();
619 bool isRead = false; 652 bool isRead = false;
620 CPluginClient* client = CPluginClient::GetInstance(); 653 CPluginClient* client = CPluginClient::GetInstance();
621 654
622 // Parse hide string 655 // Parse hide string
623 int pos = 0; 656 int pos = 0;
624 CriticalSection::Lock filterEngineLock(s_criticalSectionFilterMap); 657 CriticalSection::Lock filterEngineLock(s_criticalSectionFilterMap);
625 { 658 {
626 for (std::vector<std::wstring>::iterator it = filters.begin(); it < filters. end(); ++it) 659 for (std::vector<std::wstring>::iterator it = filters.begin(); it < filters. end(); ++it)
627 { 660 {
628 CString filter((*it).c_str()); 661 CString filter((*it).c_str());
629 // If the line is not commented out 662 // If the line is not commented out
630 if (!filter.Trim().IsEmpty() && filter.GetAt(0) != '!' && filter.GetAt(0) != '[') 663 if (!filter.Trim().IsEmpty() && filter.GetAt(0) != '!' && filter.GetAt(0) != '[')
631 { 664 {
632 int filterType = 0; 665 int filterType = 0;
633 666
634 // See http://adblockplus.org/en/filters for further documentation 667 // See http://adblockplus.org/en/filters for further documentation
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 CPluginDebug::DebugResultBlocking(type, srcCString, domain); 739 CPluginDebug::DebugResultBlocking(type, srcCString, domain);
707 #endif 740 #endif
708 } 741 }
709 return true; 742 return true;
710 } 743 }
711 #ifdef ENABLE_DEBUG_RESULT 744 #ifdef ENABLE_DEBUG_RESULT
712 CPluginDebug::DebugResultIgnoring(type, srcCString, domain); 745 CPluginDebug::DebugResultIgnoring(type, srcCString, domain);
713 #endif 746 #endif
714 return false; 747 return false;
715 } 748 }
OLDNEW
« no previous file with comments | « no previous file | src/plugin/PluginUtil.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld