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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
// Copyright (c) 2006-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.
#include "chrome/browser/automation/automation_profile_impl.h"
#include "chrome/browser/automation/automation_resource_message_filter.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/net/chrome_url_request_context.h"
#include "chrome/browser/profile.h"
#include "net/url_request/url_request_context.h"
#include "chrome/test/automation/automation_messages.h"
namespace AutomationRequestContext {
// A special Request context for automation. Substitute a few things
// like cookie store, proxy settings etc to handle them differently
// for automation.
class AutomationURLRequestContext : public ChromeURLRequestContext {
public:
AutomationURLRequestContext(ChromeURLRequestContext* original_context,
net::CookieStore* automation_cookie_store)
: ChromeURLRequestContext(original_context),
// We must hold a reference to |original_context|, since many
// of the dependencies that ChromeURLRequestContext(original_context)
// copied are scoped to |original_context|.
original_context_(original_context) {
cookie_store_ = automation_cookie_store;
}
private:
virtual ~AutomationURLRequestContext() {
// Clear out members before calling base class dtor since we don't
// own any of them.
// Clear URLRequestContext members.
host_resolver_ = NULL;
proxy_service_ = NULL;
http_transaction_factory_ = NULL;
ftp_transaction_factory_ = NULL;
cookie_store_ = NULL;
transport_security_state_ = NULL;
}
scoped_refptr<ChromeURLRequestContext> original_context_;
DISALLOW_COPY_AND_ASSIGN(AutomationURLRequestContext);
};
// CookieStore specialization to have automation specific
// behavior for cookies.
class AutomationCookieStore : public net::CookieStore {
public:
AutomationCookieStore(net::CookieStore* original_cookie_store,
AutomationResourceMessageFilter* automation_client,
int tab_handle)
: original_cookie_store_(original_cookie_store),
automation_client_(automation_client),
tab_handle_(tab_handle) {
}
// CookieStore implementation.
virtual bool SetCookieWithOptions(const GURL& url,
const std::string& cookie_line,
const net::CookieOptions& options) {
bool cookie_set =
original_cookie_store_->SetCookieWithOptions(url, cookie_line,
options);
if (cookie_set) {
// TODO(eroman): Should NOT be accessing the profile from here, as this
// is running on the IO thread.
SendIPCMessageOnIOThread(new AutomationMsg_SetCookieAsync(0,
tab_handle_, url, cookie_line));
}
return cookie_set;
}
virtual std::string GetCookiesWithOptions(const GURL& url,
const net::CookieOptions& options) {
return original_cookie_store_->GetCookiesWithOptions(url, options);
}
virtual void DeleteCookie(const GURL& url,
const std::string& cookie_name) {
return original_cookie_store_->DeleteCookie(url, cookie_name);
}
virtual net::CookieMonster* GetCookieMonster() {
return original_cookie_store_->GetCookieMonster();
}
protected:
void SendIPCMessageOnIOThread(IPC::Message* m) {
if (ChromeThread::CurrentlyOn(ChromeThread::IO)) {
automation_client_->Send(m);
} else {
Task* task = NewRunnableMethod(this,
&AutomationCookieStore::SendIPCMessageOnIOThread, m);
ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, task);
}
}
net::CookieStore* original_cookie_store_;
scoped_refptr<AutomationResourceMessageFilter> automation_client_;
int tab_handle_;
private:
DISALLOW_COPY_AND_ASSIGN(AutomationCookieStore);
};
class Factory : public ChromeURLRequestContextFactory {
public:
Factory(ChromeURLRequestContextGetter* original_context_getter,
Profile* profile,
AutomationResourceMessageFilter* automation_client,
int tab_handle)
: ChromeURLRequestContextFactory(profile),
original_context_getter_(original_context_getter),
automation_client_(automation_client),
tab_handle_(tab_handle) {
}
virtual ChromeURLRequestContext* Create() {
ChromeURLRequestContext* original_context =
original_context_getter_->GetIOContext();
// Create an automation cookie store.
scoped_refptr<net::CookieStore> automation_cookie_store =
new AutomationCookieStore(original_context->cookie_store(),
automation_client_,
tab_handle_);
return new AutomationURLRequestContext(original_context,
automation_cookie_store);
}
private:
scoped_refptr<ChromeURLRequestContextGetter> original_context_getter_;
scoped_refptr<AutomationResourceMessageFilter> automation_client_;
int tab_handle_;
};
ChromeURLRequestContextGetter* CreateAutomationURLRequestContextForTab(
int tab_handle,
Profile* profile,
AutomationResourceMessageFilter* automation_client) {
ChromeURLRequestContextGetter* original_context =
static_cast<ChromeURLRequestContextGetter*>(
profile->GetRequestContext());
ChromeURLRequestContextGetter* request_context =
new ChromeURLRequestContextGetter(
NULL, // Don't register an observer on PrefService.
new Factory(original_context, profile, automation_client,
tab_handle));
return request_context;
}
} // namespace AutomationRequestContext
|