1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
#define WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
#include "net/url_request/url_request.h"
#include "webkit/appcache/appcache_host.h"
class URLRequest;
class URLRequestJob;
namespace appcache {
class AppCacheURLRequestJob;
// An instance is created for each URLRequest. The instance survives all
// http transactions involved in the processing of its URLRequest, and is
// given the opportunity to hijack the request along the way. Callers
// should use AppCacheHost::CreateRequestHandler to manufacture instances
// that can retrieve resources for a particular host.
class AppCacheRequestHandler : public URLRequest::UserData,
public AppCacheHost::Observer,
public AppCacheStorage::Delegate {
public:
virtual ~AppCacheRequestHandler();
// These are called on each request intercept opportunity.
AppCacheURLRequestJob* MaybeLoadResource(URLRequest* request);
AppCacheURLRequestJob* MaybeLoadFallbackForRedirect(URLRequest* request,
const GURL& location);
AppCacheURLRequestJob* MaybeLoadFallbackForResponse(URLRequest* request);
void GetExtraResponseInfo(int64* cache_id, GURL* manifest_url);
private:
friend class AppCacheHost;
// Callers should use AppCacheHost::CreateRequestHandler.
AppCacheRequestHandler(AppCacheHost* host, bool is_main_resource);
// AppCacheHost::Observer override
virtual void OnDestructionImminent(AppCacheHost* host);
// Helpers to instruct a waiting job with what response to
// deliver for the request we're handling.
void DeliverAppCachedResponse(const AppCacheEntry& entry, int64 cache_id,
const GURL& manifest_url);
void DeliverNetworkResponse();
void DeliverErrorResponse();
// Helper to retrieve a pointer to the storage object.
AppCacheStorage* storage();
// Main-resource loading -------------------------------------
void MaybeLoadMainResource(URLRequest* request);
// AppCacheStorage::Delegate methods
virtual void OnMainResponseFound(
const GURL& url, const AppCacheEntry& entry,
const AppCacheEntry& fallback_entry,
int64 cache_id, const GURL& mainfest_url);
// Sub-resource loading -------------------------------------
void MaybeLoadSubResource(URLRequest* request);
void ContinueMaybeLoadSubResource();
// AppCacheHost::Observer override
virtual void OnCacheSelectionComplete(AppCacheHost* host);
// Data members -----------------------------------------------
// What host we're servicing a request for.
AppCacheHost* host_;
// Main vs subresource loads are somewhat different.
bool is_main_request_;
// Subresource requests wait until after cache selection completes.
bool is_waiting_for_cache_selection_;
// Info about the type of response we found for delivery.
// These are relevant for both main and subresource requests.
AppCacheEntry found_entry_;
AppCacheEntry found_fallback_entry_;
int64 found_cache_id_;
GURL found_manifest_url_;
bool found_network_namespace_;
// The job we use to deliver a response.
scoped_refptr<AppCacheURLRequestJob> job_;
friend class AppCacheRequestHandlerTest;
DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler);
};
} // namespace appcache
#endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
|