1 /*
2  * Copyright (C) 2011 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include "config.h"
27 #include "InjectedBundlePageResourceLoadClient.h"
28 
29 #include "WKAPICast.h"
30 #include "WKBundleAPICast.h"
31 
32 using namespace WebCore;
33 
34 namespace WebKit {
35 
didInitiateLoadForResource(WebPage * page,WebFrame * frame,uint64_t identifier,const WebCore::ResourceRequest & request,bool pageIsProvisionallyLoading)36 void InjectedBundlePageResourceLoadClient::didInitiateLoadForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceRequest& request, bool pageIsProvisionallyLoading)
37 {
38     if (!m_client.didInitiateLoadForResource)
39         return;
40 
41     m_client.didInitiateLoadForResource(toAPI(page), toAPI(frame), identifier, toAPI(request), pageIsProvisionallyLoading, m_client.clientInfo);
42 }
43 
willSendRequestForFrame(WebPage * page,WebFrame * frame,uint64_t identifier,ResourceRequest & request,const ResourceResponse & redirectResponse)44 void InjectedBundlePageResourceLoadClient::willSendRequestForFrame(WebPage* page, WebFrame* frame, uint64_t identifier, ResourceRequest& request, const ResourceResponse& redirectResponse)
45 {
46     if (!m_client.willSendRequestForFrame)
47         return;
48 
49     RefPtr<WebURLRequest> returnedRequest = adoptRef(toImpl(m_client.willSendRequestForFrame(toAPI(page), toAPI(frame), identifier, toAPI(request), toAPI(redirectResponse), m_client.clientInfo)));
50     if (returnedRequest)
51         request = returnedRequest->resourceRequest();
52     else
53         request = ResourceRequest();
54 }
55 
didReceiveResponseForResource(WebPage * page,WebFrame * frame,uint64_t identifier,const WebCore::ResourceResponse & response)56 void InjectedBundlePageResourceLoadClient::didReceiveResponseForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceResponse& response)
57 {
58     if (!m_client.didReceiveResponseForResource)
59         return;
60 
61     m_client.didReceiveResponseForResource(toAPI(page), toAPI(frame), identifier, toAPI(response), m_client.clientInfo);
62 }
63 
didReceiveContentLengthForResource(WebPage * page,WebFrame * frame,uint64_t identifier,uint64_t contentLength)64 void InjectedBundlePageResourceLoadClient::didReceiveContentLengthForResource(WebPage* page, WebFrame* frame, uint64_t identifier, uint64_t contentLength)
65 {
66     if (!m_client.didReceiveContentLengthForResource)
67         return;
68 
69     m_client.didReceiveContentLengthForResource(toAPI(page), toAPI(frame), identifier, contentLength, m_client.clientInfo);
70 }
71 
didFinishLoadForResource(WebPage * page,WebFrame * frame,uint64_t identifier)72 void InjectedBundlePageResourceLoadClient::didFinishLoadForResource(WebPage* page, WebFrame* frame, uint64_t identifier)
73 {
74     if (!m_client.didFinishLoadForResource)
75         return;
76 
77     m_client.didFinishLoadForResource(toAPI(page), toAPI(frame), identifier, m_client.clientInfo);
78 }
79 
didFailLoadForResource(WebPage * page,WebFrame * frame,uint64_t identifier,const WebCore::ResourceError & error)80 void InjectedBundlePageResourceLoadClient::didFailLoadForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceError& error)
81 {
82     if (!m_client.didFailLoadForResource)
83         return;
84 
85     m_client.didFailLoadForResource(toAPI(page), toAPI(frame), identifier, toAPI(error), m_client.clientInfo);
86 }
87 
88 } // namespace WebKit
89