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
|
// Copyright (c) 2012 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 "content/browser/download/mhtml_generation_manager.h"
#include "base/bind.h"
#include "base/files/file.h"
#include "base/stl_util.h"
#include "content/browser/renderer_host/render_view_host_impl.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/render_process_host_observer.h"
#include "content/public/browser/web_contents.h"
#include "content/common/view_messages.h"
namespace content {
class MHTMLGenerationManager::Job : public RenderProcessHostObserver {
public:
Job();
virtual ~Job();
void SetWebContents(WebContents* web_contents);
base::File browser_file() { return browser_file_.Pass(); }
void set_browser_file(base::File file) { browser_file_ = file.Pass(); }
int process_id() { return process_id_; }
int routing_id() { return routing_id_; }
GenerateMHTMLCallback callback() { return callback_; }
void set_callback(GenerateMHTMLCallback callback) { callback_ = callback; }
// RenderProcessHostObserver:
virtual void RenderProcessExited(RenderProcessHost* host,
base::ProcessHandle handle,
base::TerminationStatus status,
int exit_code) OVERRIDE;
virtual void RenderProcessHostDestroyed(RenderProcessHost* host) OVERRIDE;
private:
// The handle to the file the MHTML is saved to for the browser process.
base::File browser_file_;
// The IDs mapping to a specific contents.
int process_id_;
int routing_id_;
// The callback to call once generation is complete.
GenerateMHTMLCallback callback_;
// The RenderProcessHost being observed, or NULL if none is.
RenderProcessHost* host_;
DISALLOW_COPY_AND_ASSIGN(Job);
};
MHTMLGenerationManager::Job::Job()
: process_id_(-1),
routing_id_(-1),
host_(NULL) {
}
MHTMLGenerationManager::Job::~Job() {
if (host_)
host_->RemoveObserver(this);
}
void MHTMLGenerationManager::Job::SetWebContents(WebContents* web_contents) {
process_id_ = web_contents->GetRenderProcessHost()->GetID();
routing_id_ = web_contents->GetRenderViewHost()->GetRoutingID();
host_ = web_contents->GetRenderProcessHost();
host_->AddObserver(this);
}
void MHTMLGenerationManager::Job::RenderProcessExited(
RenderProcessHost* host,
base::ProcessHandle handle,
base::TerminationStatus status,
int exit_code) {
MHTMLGenerationManager::GetInstance()->RenderProcessExited(this);
}
void MHTMLGenerationManager::Job::RenderProcessHostDestroyed(
RenderProcessHost* host) {
host_ = NULL;
}
MHTMLGenerationManager* MHTMLGenerationManager::GetInstance() {
return Singleton<MHTMLGenerationManager>::get();
}
MHTMLGenerationManager::MHTMLGenerationManager() {
}
MHTMLGenerationManager::~MHTMLGenerationManager() {
STLDeleteValues(&id_to_job_);
}
void MHTMLGenerationManager::SaveMHTML(WebContents* web_contents,
const base::FilePath& file,
const GenerateMHTMLCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
int job_id = NewJob(web_contents, callback);
base::ProcessHandle renderer_process =
web_contents->GetRenderProcessHost()->GetHandle();
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
base::Bind(&MHTMLGenerationManager::CreateFile, base::Unretained(this),
job_id, file, renderer_process));
}
void MHTMLGenerationManager::StreamMHTML(
WebContents* web_contents,
base::File browser_file,
const GenerateMHTMLCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
int job_id = NewJob(web_contents, callback);
base::ProcessHandle renderer_process =
web_contents->GetRenderProcessHost()->GetHandle();
IPC::PlatformFileForTransit renderer_file =
IPC::GetFileHandleForProcess(browser_file.GetPlatformFile(),
renderer_process, false);
FileAvailable(job_id, browser_file.Pass(), renderer_file);
}
void MHTMLGenerationManager::MHTMLGenerated(int job_id, int64 mhtml_data_size) {
JobFinished(job_id, mhtml_data_size);
}
void MHTMLGenerationManager::CreateFile(
int job_id, const base::FilePath& file_path,
base::ProcessHandle renderer_process) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
base::File browser_file(
file_path, base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
if (!browser_file.IsValid()) {
LOG(ERROR) << "Failed to create file to save MHTML at: " <<
file_path.value();
}
IPC::PlatformFileForTransit renderer_file =
IPC::GetFileHandleForProcess(browser_file.GetPlatformFile(),
renderer_process, false);
BrowserThread::PostTask(
BrowserThread::UI,
FROM_HERE,
base::Bind(&MHTMLGenerationManager::FileAvailable,
base::Unretained(this),
job_id,
base::Passed(&browser_file),
renderer_file));
}
void MHTMLGenerationManager::FileAvailable(
int job_id,
base::File browser_file,
IPC::PlatformFileForTransit renderer_file) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
if (!browser_file.IsValid()) {
LOG(ERROR) << "Failed to create file";
JobFinished(job_id, -1);
return;
}
IDToJobMap::iterator iter = id_to_job_.find(job_id);
if (iter == id_to_job_.end()) {
NOTREACHED();
return;
}
Job* job = iter->second;
job->set_browser_file(browser_file.Pass());
RenderViewHost* rvh = RenderViewHost::FromID(
job->process_id(), job->routing_id());
if (!rvh) {
// The contents went away.
JobFinished(job_id, -1);
return;
}
rvh->Send(new ViewMsg_SavePageAsMHTML(rvh->GetRoutingID(), job_id,
renderer_file));
}
void MHTMLGenerationManager::JobFinished(int job_id, int64 file_size) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
IDToJobMap::iterator iter = id_to_job_.find(job_id);
if (iter == id_to_job_.end()) {
NOTREACHED();
return;
}
Job* job = iter->second;
job->callback().Run(file_size);
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
base::Bind(&MHTMLGenerationManager::CloseFile, base::Unretained(this),
base::Passed(job->browser_file())));
id_to_job_.erase(job_id);
delete job;
}
void MHTMLGenerationManager::CloseFile(base::File file) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
file.Close();
}
int MHTMLGenerationManager::NewJob(WebContents* web_contents,
const GenerateMHTMLCallback& callback) {
static int id_counter = 0;
int job_id = id_counter++;
Job* job = new Job();
id_to_job_[job_id] = job;
job->SetWebContents(web_contents);
job->set_callback(callback);
return job_id;
}
void MHTMLGenerationManager::RenderProcessExited(Job* job) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
for (IDToJobMap::iterator it = id_to_job_.begin(); it != id_to_job_.end();
++it) {
if (it->second == job) {
JobFinished(it->first, -1);
return;
}
}
NOTREACHED();
}
} // namespace content
|