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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
// Copyright (c) 2006-2008 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/dom_ui/chrome_url_data_manager.h"
#include "app/l10n_util.h"
#include "base/file_util.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/string_util.h"
#include "base/thread.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/ref_counted_util.h"
#include "chrome/common/url_constants.h"
#include "googleurl/src/url_util.h"
#include "net/url_request/url_request.h"
#include "net/url_request/url_request_file_job.h"
#include "net/url_request/url_request_job.h"
#ifdef CHROME_PERSONALIZATION
// TODO(timsteele): Remove all CHROME_PERSONALIZATION code in this file.
// It is only temporarily needed to configure some personalization data sources
// that will go away soon.
#include "chrome/personalization/personalization.h"
#endif
#include "grit/locale_settings.h"
// The URL scheme used for internal chrome resources.
// TODO(glen): Choose a better location for this.
static const char kChromeURLScheme[] = "chrome";
// The single global instance of ChromeURLDataManager.
ChromeURLDataManager chrome_url_data_manager;
// URLRequestChromeJob is a URLRequestJob that manages running chrome-internal
// resource requests asynchronously.
// It hands off URL requests to ChromeURLDataManager, which asynchronously
// calls back once the data is available.
class URLRequestChromeJob : public URLRequestJob {
public:
explicit URLRequestChromeJob(URLRequest* request);
virtual ~URLRequestChromeJob();
// URLRequestJob implementation.
virtual void Start();
virtual void Kill();
virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
virtual bool GetMimeType(std::string* mime_type) const;
// Called by ChromeURLDataManager to notify us that the data blob is ready
// for us.
void DataAvailable(RefCountedBytes* bytes);
void SetMimeType(const std::string& mime_type) {
mime_type_ = mime_type;
}
private:
// Helper for Start(), to let us start asynchronously.
// (This pattern is shared by most URLRequestJob implementations.)
void StartAsync();
// Do the actual copy from data_ (the data we're serving) into |buf|.
// Separate from ReadRawData so we can handle async I/O.
void CompleteRead(net::IOBuffer* buf, int buf_size, int* bytes_read);
// The actual data we're serving. NULL until it's been fetched.
scoped_refptr<RefCountedBytes> data_;
// The current offset into the data that we're handing off to our
// callers via the Read interfaces.
int data_offset_;
// For async reads, we keep around a pointer to the buffer that
// we're reading into.
scoped_refptr<net::IOBuffer> pending_buf_;
int pending_buf_size_;
std::string mime_type_;
DISALLOW_EVIL_CONSTRUCTORS(URLRequestChromeJob);
};
// URLRequestChromeFileJob is a URLRequestJob that acts like a file:// URL
class URLRequestChromeFileJob : public URLRequestFileJob {
public:
URLRequestChromeFileJob(URLRequest* request, const FilePath& path);
virtual ~URLRequestChromeFileJob();
private:
DISALLOW_EVIL_CONSTRUCTORS(URLRequestChromeFileJob);
};
void RegisterURLRequestChromeJob() {
// Being a standard scheme allows us to resolve relative paths. This method
// is invoked multiple times during testing, so only add the scheme once.
url_parse::Component url_scheme_component(0, arraysize(kChromeURLScheme) - 1);
if (!url_util::IsStandard(kChromeURLScheme, arraysize(kChromeURLScheme) - 1,
url_scheme_component)) {
url_util::AddStandardScheme(kChromeURLScheme);
}
std::wstring inspector_dir;
if (PathService::Get(chrome::DIR_INSPECTOR, &inspector_dir)) {
// TODO(yurys): remove "inspector" source when new developer tools support
// all features of in-process Web Inspector and Console Debugger. For the
// time being we need to serve the same content from chrome://inspector
// for the Console Debugger and in-process Web Inspector.
chrome_url_data_manager.AddFileSource("inspector", inspector_dir);
chrome_url_data_manager.AddFileSource(chrome::kChromeUIDevToolsHost,
inspector_dir);
}
URLRequest::RegisterProtocolFactory(kChromeURLScheme,
&ChromeURLDataManager::Factory);
#ifdef CHROME_PERSONALIZATION
url_util::AddStandardScheme(kPersonalizationScheme);
URLRequest::RegisterProtocolFactory(kPersonalizationScheme,
&ChromeURLDataManager::Factory);
#endif
}
void UnregisterURLRequestChromeJob() {
std::wstring inspector_dir;
if (PathService::Get(chrome::DIR_INSPECTOR, &inspector_dir)) {
chrome_url_data_manager.RemoveFileSource("inspector");
chrome_url_data_manager.RemoveFileSource(chrome::kChromeUIDevToolsHost);
}
}
// static
void ChromeURLDataManager::URLToRequest(const GURL& url,
std::string* source_name,
std::string* path) {
#ifdef CHROME_PERSONALIZATION
DCHECK(url.SchemeIs(kChromeURLScheme) ||
url.SchemeIs(kPersonalizationScheme));
#else
DCHECK(url.SchemeIs(kChromeURLScheme));
#endif
if (!url.is_valid()) {
NOTREACHED();
return;
}
// Our input looks like: chrome://source_name/extra_bits?foo .
// So the url's "host" is our source, and everything after the host is
// the path.
source_name->assign(url.host());
const std::string& spec = url.possibly_invalid_spec();
const url_parse::Parsed& parsed = url.parsed_for_possibly_invalid_spec();
int offset = parsed.CountCharactersBefore(url_parse::Parsed::PATH, false);
++offset; // Skip the slash at the beginning of the path.
if (offset < static_cast<int>(spec.size()))
path->assign(spec.substr(offset));
}
// static
bool ChromeURLDataManager::URLToFilePath(const GURL& url,
std::wstring* file_path) {
// Parse the URL into a request for a source and path.
std::string source_name;
std::string relative_path;
URLToRequest(url, &source_name, &relative_path);
FileSourceMap::const_iterator i(
chrome_url_data_manager.file_sources_.find(source_name));
if (i == chrome_url_data_manager.file_sources_.end())
return false;
file_path->assign(i->second);
file_util::AppendToPath(file_path, UTF8ToWide(relative_path));
return true;
}
ChromeURLDataManager::ChromeURLDataManager() : next_request_id_(0) { }
ChromeURLDataManager::~ChromeURLDataManager() { }
void ChromeURLDataManager::AddDataSource(scoped_refptr<DataSource> source) {
// TODO(jackson): A new data source with same name should not clobber the
// existing one.
data_sources_[source->source_name()] = source;
}
void ChromeURLDataManager::AddFileSource(const std::string& source_name,
const std::wstring& file_path) {
DCHECK(file_sources_.count(source_name) == 0);
file_sources_[source_name] = file_path;
}
void ChromeURLDataManager::RemoveFileSource(const std::string& source_name) {
DCHECK(file_sources_.count(source_name) == 1);
file_sources_.erase(source_name);
}
bool ChromeURLDataManager::StartRequest(const GURL& url,
URLRequestChromeJob* job) {
// Parse the URL into a request for a source and path.
std::string source_name;
std::string path;
URLToRequest(url, &source_name, &path);
// Look up the data source for the request.
DataSourceMap::iterator i = data_sources_.find(source_name);
if (i == data_sources_.end())
return false;
DataSource* source = i->second;
// Save this request so we know where to send the data.
RequestID request_id = next_request_id_++;
pending_requests_.insert(std::make_pair(request_id, job));
// TODO(eroman): would be nicer if the mimetype were set at the same time
// as the data blob. For now do it here, since NotifyHeadersComplete() is
// going to get called once we return.
job->SetMimeType(source->GetMimeType(path));
// Forward along the request to the data source.
source->message_loop()->PostTask(FROM_HERE,
NewRunnableMethod(source, &DataSource::StartDataRequest,
path, request_id));
return true;
}
void ChromeURLDataManager::RemoveRequest(URLRequestChromeJob* job) {
// Remove the request from our list of pending requests.
// If/when the source sends the data that was requested, the data will just
// be thrown away.
for (PendingRequestMap::iterator i = pending_requests_.begin();
i != pending_requests_.end(); ++i) {
if (i->second == job) {
pending_requests_.erase(i);
return;
}
}
}
void ChromeURLDataManager::DataAvailable(
RequestID request_id,
scoped_refptr<RefCountedBytes> bytes) {
// Forward this data on to the pending URLRequest, if it exists.
PendingRequestMap::iterator i = pending_requests_.find(request_id);
if (i != pending_requests_.end()) {
// We acquire a reference to the job so that it doesn't disappear under the
// feet of any method invoked here (we could trigger a callback).
scoped_refptr<URLRequestChromeJob> job = i->second;
pending_requests_.erase(i);
job->DataAvailable(bytes);
}
}
void ChromeURLDataManager::DataSource::SendResponse(
RequestID request_id,
RefCountedBytes* bytes) {
g_browser_process->io_thread()->message_loop()->PostTask(FROM_HERE,
NewRunnableMethod(&chrome_url_data_manager,
&ChromeURLDataManager::DataAvailable,
request_id, scoped_refptr<RefCountedBytes>(bytes)));
}
// static
void ChromeURLDataManager::DataSource::SetFontAndTextDirection(
DictionaryValue* localized_strings) {
localized_strings->SetString(L"fontfamily",
l10n_util::GetString(IDS_WEB_FONT_FAMILY));
localized_strings->SetString(L"fontsize",
l10n_util::GetString(IDS_WEB_FONT_SIZE));
localized_strings->SetString(L"textdirection",
(l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) ?
L"rtl" : L"ltr");
}
URLRequestJob* ChromeURLDataManager::Factory(URLRequest* request,
const std::string& scheme) {
// Try first with a file handler
std::wstring path;
if (ChromeURLDataManager::URLToFilePath(request->url(), &path))
return new URLRequestChromeFileJob(request,
FilePath::FromWStringHack(path));
// Fall back to using a custom handler
return new URLRequestChromeJob(request);
}
URLRequestChromeJob::URLRequestChromeJob(URLRequest* request)
: URLRequestJob(request), data_offset_(0) {}
URLRequestChromeJob::~URLRequestChromeJob() {
}
void URLRequestChromeJob::Start() {
// Start reading asynchronously so that all error reporting and data
// callbacks happen as they would for network requests.
MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(
this, &URLRequestChromeJob::StartAsync));
}
void URLRequestChromeJob::Kill() {
chrome_url_data_manager.RemoveRequest(this);
}
bool URLRequestChromeJob::GetMimeType(std::string* mime_type) const {
*mime_type = mime_type_;
return !mime_type_.empty();
}
void URLRequestChromeJob::DataAvailable(RefCountedBytes* bytes) {
if (bytes) {
// The request completed, and we have all the data.
// Clear any IO pending status.
SetStatus(URLRequestStatus());
data_ = bytes;
int bytes_read;
if (pending_buf_.get()) {
CompleteRead(pending_buf_, pending_buf_size_, &bytes_read);
pending_buf_ = NULL;
NotifyReadComplete(bytes_read);
}
} else {
// The request failed.
NotifyDone(URLRequestStatus(URLRequestStatus::FAILED, 0));
}
}
bool URLRequestChromeJob::ReadRawData(net::IOBuffer* buf, int buf_size,
int* bytes_read) {
if (!data_.get()) {
SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
DCHECK(!pending_buf_.get());
pending_buf_ = buf;
pending_buf_size_ = buf_size;
return false; // Tell the caller we're still waiting for data.
}
// Otherwise, the data is available.
CompleteRead(buf, buf_size, bytes_read);
return true;
}
void URLRequestChromeJob::CompleteRead(net::IOBuffer* buf, int buf_size,
int* bytes_read) {
int remaining = static_cast<int>(data_->data.size()) - data_offset_;
if (buf_size > remaining)
buf_size = remaining;
if (buf_size > 0) {
memcpy(buf->data(), &data_->data[0] + data_offset_, buf_size);
data_offset_ += buf_size;
}
*bytes_read = buf_size;
}
void URLRequestChromeJob::StartAsync() {
if (!request_)
return;
if (chrome_url_data_manager.StartRequest(request_->url(), this)) {
NotifyHeadersComplete();
} else {
NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED,
net::ERR_INVALID_URL));
}
}
URLRequestChromeFileJob::URLRequestChromeFileJob(URLRequest* request,
const FilePath& path)
: URLRequestFileJob(request, path) {
}
URLRequestChromeFileJob::~URLRequestChromeFileJob() { }
|