| LEFT | RIGHT | 
 |    1 /* | 
 |    2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 
 |    3  * Copyright (C) 2006-2015 Eyeo GmbH | 
 |    4  * | 
 |    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 | 
 |    7  * published by the Free Software Foundation. | 
 |    8  * | 
 |    9  * Adblock Plus is distributed in the hope that it will be useful, | 
 |   10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |   11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 |   12  * GNU General Public License for more details. | 
 |   13  * | 
 |   14  * You should have received a copy of the GNU General Public License | 
 |   15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
 |   16  */ | 
 |   17  | 
|    1 #pragma once |   18 #pragma once | 
|    2 #include <cstdint> |   19 #include <cstdint> | 
|    3 #include <AdblockPlus/FilterEngine.h> |   20 #include <AdblockPlus/FilterEngine.h> | 
|    4 #include "ProtocolCF.h" |   21 #include "ProtocolCF.h" | 
|    5 #include "ProtocolImpl.h" |   22 #include "ProtocolImpl.h" | 
|    6 #define IE_MAX_URL_LENGTH 2048 |   23 #define IE_MAX_URL_LENGTH 2048 | 
|    7  |   24  | 
|    8 class WBPassthruSink : |   25 class WBPassthruSink : | 
|    9         public PassthroughAPP::CInternetProtocolSinkWithSP<WBPassthruSink, CComM
     ultiThreadModel>, |   26         public PassthroughAPP::CInternetProtocolSinkWithSP<WBPassthruSink, CComM
     ultiThreadModel>, | 
|   10         public IHttpNegotiate |   27         public IHttpNegotiate | 
|   11 { |   28 { | 
|   12         typedef PassthroughAPP::CInternetProtocolSinkWithSP<WBPassthruSink, CCom
     MultiThreadModel> BaseClass; |   29         typedef PassthroughAPP::CInternetProtocolSinkWithSP<WBPassthruSink, CCom
     MultiThreadModel> BaseClass; | 
|   13  |   30  | 
|   14 public: |   31 public: | 
|   15         WBPassthruSink(); |   32         WBPassthruSink(); | 
|   16  |   33  | 
|   17         uint64_t m_currentPositionOfSentPage; |   34         uint64_t m_currentPositionOfSentPage; | 
|   18         CComPtr<IInternetProtocol> m_pTargetProtocol; |   35         CComPtr<IInternetProtocol> m_pTargetProtocol; | 
|   19         AdblockPlus::FilterEngine::ContentType m_contentType; |   36         AdblockPlus::FilterEngine::ContentType m_contentType; | 
|   20         std::wstring m_boundDomain; |   37         std::wstring m_boundDomain; | 
|   21 »       bool m_blockedInTransaction; |   38 »       bool m_isCustomResponse; | 
|   22  |   39  | 
|   23         AdblockPlus::FilterEngine::ContentType GetContentTypeFromMimeType(const 
     CString& mimeType); |   40         AdblockPlus::FilterEngine::ContentType GetContentTypeFromMimeType(const 
     CString& mimeType); | 
|   24 »       AdblockPlus::FilterEngine::ContentType GetContentTypeFromURL(const CStri
     ng& src); |   41 »       AdblockPlus::FilterEngine::ContentType GetContentTypeFromURL(const std::
     wstring& src); | 
|   25 »       AdblockPlus::FilterEngine::ContentType GetContentType(const CString& mim
     eType, const std::wstring& domain, const CString& src); |   42 »       AdblockPlus::FilterEngine::ContentType GetContentType(const CString& mim
     eType, const std::wstring& domain, const std::wstring& src); | 
|   26         bool IsFlashRequest(const wchar_t* const* additionalHeaders); |   43         bool IsFlashRequest(const wchar_t* const* additionalHeaders); | 
|   27 public: |   44 public: | 
|   28         BEGIN_COM_MAP(WBPassthruSink) |   45         BEGIN_COM_MAP(WBPassthruSink) | 
|   29                 COM_INTERFACE_ENTRY(IHttpNegotiate) |   46                 COM_INTERFACE_ENTRY(IHttpNegotiate) | 
|   30                 COM_INTERFACE_ENTRY_CHAIN(BaseClass) |   47                 COM_INTERFACE_ENTRY_CHAIN(BaseClass) | 
|   31         END_COM_MAP() |   48         END_COM_MAP() | 
|   32  |   49  | 
|   33         BEGIN_SERVICE_MAP(WBPassthruSink) |   50         BEGIN_SERVICE_MAP(WBPassthruSink) | 
|   34                 SERVICE_ENTRY(IID_IHttpNegotiate) |   51                 SERVICE_ENTRY(IID_IHttpNegotiate) | 
|   35         END_SERVICE_MAP() |   52         END_SERVICE_MAP() | 
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   74   WBPassthru(); |   91   WBPassthru(); | 
|   75   // IInternetProtocolRoot |   92   // IInternetProtocolRoot | 
|   76   STDMETHODIMP Start(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink, |   93   STDMETHODIMP Start(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink, | 
|   77     IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved) override
     ; |   94     IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved) override
     ; | 
|   78  |   95  | 
|   79   //IInternetProtocol |   96   //IInternetProtocol | 
|   80   STDMETHODIMP Read(/* [in, out] */ void *pv,/* [in] */ ULONG cb,/* [out] */ ULO
     NG *pcbRead) override; |   97   STDMETHODIMP Read(/* [in, out] */ void *pv,/* [in] */ ULONG cb,/* [out] */ ULO
     NG *pcbRead) override; | 
|   81  |   98  | 
|   82   bool m_shouldSupplyCustomContent; |   99   bool m_shouldSupplyCustomContent; | 
|   83 }; |  100 }; | 
| LEFT | RIGHT |