initial import
[vuplus_webkit] / Source / WebKit / chromium / src / ResourceHandleInternal.h
1 /*
2  * Copyright (C) 2011 Google 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 are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef ResourceHandleInternal_h
32 #define ResourceHandleInternal_h
33
34 #include "ResourceRequest.h"
35 #include "WebCommon.h"
36 #include "WebURLLoader.h"
37 #include "WebURLLoaderClient.h"
38
39 namespace WebCore {
40
41 class ResourceHandle;
42 class ResourceHandleClient;
43
44 class ResourceHandleInternal : public WebKit::WebURLLoaderClient {
45 public:
46     ResourceHandleInternal(const ResourceRequest&, ResourceHandleClient*);
47
48     virtual ~ResourceHandleInternal() { }
49
50     void start();
51     void cancel();
52     void setDefersLoading(bool);
53     bool allowStoredCredentials() const;
54
55     // WebURLLoaderClient methods:
56     virtual void willSendRequest(WebKit::WebURLLoader*, WebKit::WebURLRequest&, const WebKit::WebURLResponse&);
57     virtual void didSendData(WebKit::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
58     virtual void didReceiveResponse(WebKit::WebURLLoader*, const WebKit::WebURLResponse&);
59     virtual void didDownloadData(WebKit::WebURLLoader*, int dataLength);
60     virtual void didReceiveData(WebKit::WebURLLoader*, const char* data, int dataLength, int encodedDataLength);
61
62     virtual void didReceiveCachedMetadata(WebKit::WebURLLoader*, const char* data, int dataLength);
63     virtual void didFinishLoading(WebKit::WebURLLoader*, double finishTime);
64     virtual void didFail(WebKit::WebURLLoader*, const WebKit::WebURLError&);
65
66     enum ConnectionState {
67         ConnectionStateNew,
68         ConnectionStateStarted,
69         ConnectionStateReceivedResponse,
70         ConnectionStateReceivingData,
71         ConnectionStateFinishedLoading,
72         ConnectionStateCanceled,
73         ConnectionStateFailed,
74     };
75
76     void setOwner(ResourceHandle* owner) { m_owner = owner; }
77     ResourceRequest& request() { return m_request; }
78     ResourceHandleClient* client() const { return m_client; }
79     void setClient(ResourceHandleClient* client) { m_client = client; }
80     WebKit::WebURLLoader* loader() const { return m_loader.get(); }
81
82     static ResourceHandleInternal* FromResourceHandle(ResourceHandle*);
83
84 private:
85     ResourceRequest m_request;
86     ResourceHandle* m_owner;
87     ResourceHandleClient* m_client;
88     OwnPtr<WebKit::WebURLLoader> m_loader;
89
90     // Used for sanity checking to make sure we don't experience illegal state
91     // transitions.
92     ConnectionState m_state;
93 };
94
95 } // namespace WebCore
96
97 #endif