OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/download/mhtml_generation_manager.h" | 5 #include "content/browser/download/mhtml_generation_manager.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <queue> | 8 #include <queue> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/files/file.h" | 12 #include "base/files/file.h" |
13 #include "base/guid.h" | 13 #include "base/guid.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ptr_util.h" | 15 #include "base/memory/ptr_util.h" |
16 #include "base/metrics/histogram_macros.h" | 16 #include "base/metrics/histogram_macros.h" |
17 #include "base/scoped_observer.h" | 17 #include "base/scoped_observer.h" |
18 #include "base/stl_util.h" | 18 #include "base/stl_util.h" |
19 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
20 #include "base/strings/stringprintf.h" | 20 #include "base/strings/stringprintf.h" |
21 #include "base/time/time.h" | 21 #include "base/time/time.h" |
22 #include "base/trace_event/trace_event.h" | 22 #include "base/trace_event/trace_event.h" |
23 #include "content/browser/bad_message.h" | 23 #include "content/browser/bad_message.h" |
24 #include "content/browser/download/mhtml_extra_data_impl.h" | |
24 #include "content/browser/frame_host/frame_tree_node.h" | 25 #include "content/browser/frame_host/frame_tree_node.h" |
25 #include "content/browser/frame_host/render_frame_host_impl.h" | 26 #include "content/browser/frame_host/render_frame_host_impl.h" |
26 #include "content/common/frame_messages.h" | 27 #include "content/common/frame_messages.h" |
27 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
29 #include "content/public/browser/mhtml_extra_data.h" | |
28 #include "content/public/browser/render_frame_host.h" | 30 #include "content/public/browser/render_frame_host.h" |
29 #include "content/public/browser/render_process_host.h" | 31 #include "content/public/browser/render_process_host.h" |
30 #include "content/public/browser/render_process_host_observer.h" | 32 #include "content/public/browser/render_process_host_observer.h" |
31 #include "content/public/browser/web_contents.h" | 33 #include "content/public/browser/web_contents.h" |
32 #include "content/public/common/mhtml_generation_params.h" | 34 #include "content/public/common/mhtml_generation_params.h" |
33 #include "net/base/mime_util.h" | 35 #include "net/base/mime_util.h" |
34 | 36 |
37 namespace { | |
38 const char kContentLocation[] = "Content-Location: "; | |
39 const char kContentType[] = "Content-Type: "; | |
40 int kInvalidFileSize = -1; | |
41 } // namespace | |
42 | |
35 namespace content { | 43 namespace content { |
36 | 44 |
37 // The class and all of its members live on the UI thread. Only static methods | 45 // The class and all of its members live on the UI thread. Only static methods |
38 // are executed on other threads. | 46 // are executed on other threads. |
39 class MHTMLGenerationManager::Job : public RenderProcessHostObserver { | 47 class MHTMLGenerationManager::Job : public RenderProcessHostObserver { |
40 public: | 48 public: |
41 Job(int job_id, | 49 Job(int job_id, |
42 WebContents* web_contents, | 50 WebContents* web_contents, |
43 const MHTMLGenerationParams& params, | 51 const MHTMLGenerationParams& params, |
44 const GenerateMHTMLCallback& callback); | 52 const GenerateMHTMLCallback& callback); |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 | 102 |
95 private: | 103 private: |
96 // Writes the MHTML footer to the file and closes it. | 104 // Writes the MHTML footer to the file and closes it. |
97 // | 105 // |
98 // Note: The same |boundary| marker must be used for all "boundaries" -- in | 106 // Note: The same |boundary| marker must be used for all "boundaries" -- in |
99 // the header, parts and footer -- that belong to the same MHTML document (see | 107 // the header, parts and footer -- that belong to the same MHTML document (see |
100 // also rfc1341, section 7.2.1, "boundary" description). | 108 // also rfc1341, section 7.2.1, "boundary" description). |
101 static std::tuple<MhtmlSaveStatus, int64_t> CloseFileOnFileThread( | 109 static std::tuple<MhtmlSaveStatus, int64_t> CloseFileOnFileThread( |
102 MhtmlSaveStatus save_status, | 110 MhtmlSaveStatus save_status, |
103 const std::string& boundary, | 111 const std::string& boundary, |
104 base::File file); | 112 base::File file, |
113 const MHTMLExtraDataImpl* extra_data); | |
105 void AddFrame(RenderFrameHost* render_frame_host); | 114 void AddFrame(RenderFrameHost* render_frame_host); |
106 | 115 |
116 // If we have any extra MHTML parts to write out, write them into the file | |
117 // while on the file thread. Returns true for success, or if there is no data | |
118 // to write. | |
119 static bool WriteExtraDataPartsOnFileThread( | |
120 const std::string& boundary, | |
121 base::File& file, | |
122 const MHTMLExtraDataImpl* extra_data); | |
123 | |
107 // Creates a new map with values (content ids) the same as in | 124 // Creates a new map with values (content ids) the same as in |
108 // |frame_tree_node_to_content_id_| map, but with the keys translated from | 125 // |frame_tree_node_to_content_id_| map, but with the keys translated from |
109 // frame_tree_node_id into a |site_instance|-specific routing_id. | 126 // frame_tree_node_id into a |site_instance|-specific routing_id. |
110 std::map<int, std::string> CreateFrameRoutingIdToContentId( | 127 std::map<int, std::string> CreateFrameRoutingIdToContentId( |
111 SiteInstance* site_instance); | 128 SiteInstance* site_instance); |
112 | 129 |
113 // Id used to map renderer responses to jobs. | 130 // Id used to map renderer responses to jobs. |
114 // See also MHTMLGenerationManager::id_to_job_ map. | 131 // See also MHTMLGenerationManager::id_to_job_ map. |
115 const int job_id_; | 132 const int job_id_; |
116 | 133 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
149 std::string salt_; | 166 std::string salt_; |
150 | 167 |
151 // The callback to call once generation is complete. | 168 // The callback to call once generation is complete. |
152 const GenerateMHTMLCallback callback_; | 169 const GenerateMHTMLCallback callback_; |
153 | 170 |
154 // Whether the job is finished (set to true only for the short duration of | 171 // Whether the job is finished (set to true only for the short duration of |
155 // time between MHTMLGenerationManager::JobFinished is called and the job is | 172 // time between MHTMLGenerationManager::JobFinished is called and the job is |
156 // destroyed by MHTMLGenerationManager::OnFileClosed). | 173 // destroyed by MHTMLGenerationManager::OnFileClosed). |
157 bool is_finished_; | 174 bool is_finished_; |
158 | 175 |
176 // Any extra data parts that should be emitted into the output MHTML. | |
177 MHTMLExtraDataImpl* extra_data_; | |
178 | |
159 // RAII helper for registering this Job as a RenderProcessHost observer. | 179 // RAII helper for registering this Job as a RenderProcessHost observer. |
160 ScopedObserver<RenderProcessHost, MHTMLGenerationManager::Job> | 180 ScopedObserver<RenderProcessHost, MHTMLGenerationManager::Job> |
161 observed_renderer_process_host_; | 181 observed_renderer_process_host_; |
162 | 182 |
163 DISALLOW_COPY_AND_ASSIGN(Job); | 183 DISALLOW_COPY_AND_ASSIGN(Job); |
164 }; | 184 }; |
165 | 185 |
166 MHTMLGenerationManager::Job::Job(int job_id, | 186 MHTMLGenerationManager::Job::Job(int job_id, |
167 WebContents* web_contents, | 187 WebContents* web_contents, |
168 const MHTMLGenerationParams& params, | 188 const MHTMLGenerationParams& params, |
169 const GenerateMHTMLCallback& callback) | 189 const GenerateMHTMLCallback& callback) |
170 : job_id_(job_id), | 190 : job_id_(job_id), |
171 creation_time_(base::TimeTicks::Now()), | 191 creation_time_(base::TimeTicks::Now()), |
172 params_(params), | 192 params_(params), |
173 frame_tree_node_id_of_busy_frame_(FrameTreeNode::kFrameTreeNodeInvalidId), | 193 frame_tree_node_id_of_busy_frame_(FrameTreeNode::kFrameTreeNodeInvalidId), |
174 mhtml_boundary_marker_(net::GenerateMimeMultipartBoundary()), | 194 mhtml_boundary_marker_(net::GenerateMimeMultipartBoundary()), |
175 salt_(base::GenerateGUID()), | 195 salt_(base::GenerateGUID()), |
176 callback_(callback), | 196 callback_(callback), |
177 is_finished_(false), | 197 is_finished_(false), |
178 observed_renderer_process_host_(this) { | 198 observed_renderer_process_host_(this) { |
179 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 199 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
180 web_contents->ForEachFrame(base::Bind( | 200 web_contents->ForEachFrame(base::Bind( |
181 &MHTMLGenerationManager::Job::AddFrame, | 201 &MHTMLGenerationManager::Job::AddFrame, |
182 base::Unretained(this))); // Safe because ForEachFrame is synchronous. | 202 base::Unretained(this))); // Safe because ForEachFrame is synchronous. |
183 | 203 |
184 // Main frame needs to be processed first. | 204 // Main frame needs to be processed first. |
185 DCHECK(!pending_frame_tree_node_ids_.empty()); | 205 DCHECK(!pending_frame_tree_node_ids_.empty()); |
186 DCHECK(FrameTreeNode::GloballyFindByID(pending_frame_tree_node_ids_.front()) | 206 DCHECK(FrameTreeNode::GloballyFindByID(pending_frame_tree_node_ids_.front()) |
187 ->parent() == nullptr); | 207 ->parent() == nullptr); |
208 | |
209 // Save off any extra data. | |
210 extra_data_ = static_cast<MHTMLExtraDataImpl*>( | |
211 MHTMLExtraData::FromWebContents(web_contents)); | |
188 } | 212 } |
189 | 213 |
190 MHTMLGenerationManager::Job::~Job() { | 214 MHTMLGenerationManager::Job::~Job() { |
191 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 215 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
192 } | 216 } |
193 | 217 |
194 std::map<int, std::string> | 218 std::map<int, std::string> |
195 MHTMLGenerationManager::Job::CreateFrameRoutingIdToContentId( | 219 MHTMLGenerationManager::Job::CreateFrameRoutingIdToContentId( |
196 SiteInstance* site_instance) { | 220 SiteInstance* site_instance) { |
197 std::map<int, std::string> result; | 221 std::map<int, std::string> result; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
348 return; | 372 return; |
349 } | 373 } |
350 | 374 |
351 // If no previous error occurred the boundary should be sent. | 375 // If no previous error occurred the boundary should be sent. |
352 BrowserThread::PostTaskAndReplyWithResult( | 376 BrowserThread::PostTaskAndReplyWithResult( |
353 BrowserThread::FILE, FROM_HERE, | 377 BrowserThread::FILE, FROM_HERE, |
354 base::Bind( | 378 base::Bind( |
355 &MHTMLGenerationManager::Job::CloseFileOnFileThread, save_status, | 379 &MHTMLGenerationManager::Job::CloseFileOnFileThread, save_status, |
356 (save_status == MhtmlSaveStatus::SUCCESS ? mhtml_boundary_marker_ | 380 (save_status == MhtmlSaveStatus::SUCCESS ? mhtml_boundary_marker_ |
357 : std::string()), | 381 : std::string()), |
358 base::Passed(&browser_file_)), | 382 base::Passed(&browser_file_), extra_data_), |
359 callback); | 383 callback); |
360 } | 384 } |
361 | 385 |
362 bool MHTMLGenerationManager::Job::IsMessageFromFrameExpected( | 386 bool MHTMLGenerationManager::Job::IsMessageFromFrameExpected( |
363 RenderFrameHostImpl* sender) { | 387 RenderFrameHostImpl* sender) { |
364 int sender_id = sender->frame_tree_node()->frame_tree_node_id(); | 388 int sender_id = sender->frame_tree_node()->frame_tree_node_id(); |
365 if (sender_id != frame_tree_node_id_of_busy_frame_) | 389 if (sender_id != frame_tree_node_id_of_busy_frame_) |
366 return false; | 390 return false; |
367 | 391 |
368 // We only expect one message per frame - let's make sure subsequent messages | 392 // We only expect one message per frame - let's make sure subsequent messages |
(...skipping 25 matching lines...) Expand all Loading... | |
394 | 418 |
395 // Report success if all frames have been processed. | 419 // Report success if all frames have been processed. |
396 if (pending_frame_tree_node_ids_.empty()) | 420 if (pending_frame_tree_node_ids_.empty()) |
397 return MhtmlSaveStatus::SUCCESS; | 421 return MhtmlSaveStatus::SUCCESS; |
398 | 422 |
399 return SendToNextRenderFrame(); | 423 return SendToNextRenderFrame(); |
400 } | 424 } |
401 | 425 |
402 // static | 426 // static |
403 std::tuple<MhtmlSaveStatus, int64_t> | 427 std::tuple<MhtmlSaveStatus, int64_t> |
404 MHTMLGenerationManager::Job::CloseFileOnFileThread(MhtmlSaveStatus save_status, | 428 MHTMLGenerationManager::Job::CloseFileOnFileThread( |
Dmitry Titov
2017/03/29 18:53:06
It's adding a side effect to the "CloseFile" funct
Pete Williamson
2017/03/29 22:05:43
Done.
| |
405 const std::string& boundary, | 429 MhtmlSaveStatus save_status, |
406 base::File file) { | 430 const std::string& boundary, |
431 base::File file, | |
432 const MHTMLExtraDataImpl* extra_data) { | |
407 DCHECK_CURRENTLY_ON(BrowserThread::FILE); | 433 DCHECK_CURRENTLY_ON(BrowserThread::FILE); |
408 | 434 |
409 // If no previous error occurred the boundary should have been provided. | 435 // If no previous error occurred the boundary should have been provided. |
410 if (save_status == MhtmlSaveStatus::SUCCESS) { | 436 if (save_status == MhtmlSaveStatus::SUCCESS) { |
411 TRACE_EVENT0("page-serialization", | 437 TRACE_EVENT0("page-serialization", |
412 "MHTMLGenerationManager::Job MHTML footer writing"); | 438 "MHTMLGenerationManager::Job MHTML footer writing"); |
413 DCHECK(!boundary.empty()); | 439 DCHECK(!boundary.empty()); |
440 | |
441 // Write the extra data into a part of its own, if we have any. | |
442 if (!WriteExtraDataPartsOnFileThread(boundary, file, extra_data)) { | |
443 save_status = MhtmlSaveStatus::FILE_WRITTING_ERROR; | |
444 return std::make_tuple(save_status, kInvalidFileSize); | |
445 } | |
446 | |
414 std::string footer = base::StringPrintf("--%s--\r\n", boundary.c_str()); | 447 std::string footer = base::StringPrintf("--%s--\r\n", boundary.c_str()); |
415 DCHECK(base::IsStringASCII(footer)); | 448 DCHECK(base::IsStringASCII(footer)); |
416 if (file.WriteAtCurrentPos(footer.data(), footer.size()) < 0) | 449 if (file.WriteAtCurrentPos(footer.data(), footer.size()) < 0) { |
417 save_status = MhtmlSaveStatus::FILE_WRITTING_ERROR; | 450 save_status = MhtmlSaveStatus::FILE_WRITTING_ERROR; |
451 return std::make_tuple(save_status, kInvalidFileSize); | |
452 } | |
418 } | 453 } |
419 | 454 |
420 // If the file is still valid try to close it. Only update the status if that | 455 // If the file is still valid try to close it. Only update the status if that |
421 // won't hide an earlier error. | 456 // won't hide an earlier error. |
422 int64_t file_size = -1; | 457 int64_t file_size = kInvalidFileSize; |
423 if (file.IsValid()) { | 458 if (file.IsValid()) { |
424 file_size = file.GetLength(); | 459 file_size = file.GetLength(); |
425 file.Close(); | 460 file.Close(); |
426 } else if (save_status == MhtmlSaveStatus::SUCCESS) { | 461 } else if (save_status == MhtmlSaveStatus::SUCCESS) { |
427 save_status = MhtmlSaveStatus::FILE_CLOSING_ERROR; | 462 save_status = MhtmlSaveStatus::FILE_CLOSING_ERROR; |
428 } | 463 } |
429 | 464 |
430 return std::make_tuple(save_status, file_size); | 465 return std::make_tuple(save_status, file_size); |
431 } | 466 } |
432 | 467 |
468 // static | |
469 bool MHTMLGenerationManager::Job::WriteExtraDataPartsOnFileThread( | |
470 const std::string& boundary, | |
471 base::File& file, | |
472 const MHTMLExtraDataImpl* extra_data) { | |
473 DCHECK_CURRENTLY_ON(BrowserThread::FILE); | |
474 // Don't write an extra data part if there is none. | |
475 if (extra_data == nullptr) | |
476 return true; | |
477 | |
478 const std::vector<MHTMLExtraDataPart>& extra_parts(extra_data->parts()); | |
479 if (extra_parts.empty()) | |
480 return true; | |
481 | |
482 std::string serialized_extra_data_parts; | |
483 | |
484 // For each extra part, serialize that part and add to our accumulator | |
485 // string. | |
486 for (auto part : extra_parts) { | |
487 // Write a newline, then a boundary, another newline, then the content | |
488 // location, another newline, the content type, another newline, the extra | |
489 // data string, and end with a newline. | |
490 std::string serialized_extra_data_part = base::StringPrintf( | |
491 "--%s--\r\n%s%s\r\n%s%s\r\n%s\r\n", boundary.c_str(), kContentLocation, | |
Dmitry Titov
2017/03/29 18:53:06
the boundary, if it is not the last one in the fil
Pete Williamson
2017/03/29 22:05:43
Done.
| |
492 part.content_location.c_str(), kContentType, part.content_type.c_str(), | |
493 part.body.c_str()); | |
494 DCHECK(base::IsStringASCII(serialized_extra_data_part)); | |
495 | |
496 serialized_extra_data_parts += serialized_extra_data_part; | |
497 } | |
498 | |
499 // Write the string into the file. Returns false if we failed the write. | |
500 return (file.WriteAtCurrentPos(serialized_extra_data_parts.data(), | |
501 serialized_extra_data_parts.size()) >= 0); | |
502 } | |
503 | |
433 MHTMLGenerationManager* MHTMLGenerationManager::GetInstance() { | 504 MHTMLGenerationManager* MHTMLGenerationManager::GetInstance() { |
434 return base::Singleton<MHTMLGenerationManager>::get(); | 505 return base::Singleton<MHTMLGenerationManager>::get(); |
435 } | 506 } |
436 | 507 |
437 MHTMLGenerationManager::MHTMLGenerationManager() : next_job_id_(0) {} | 508 MHTMLGenerationManager::MHTMLGenerationManager() : next_job_id_(0) {} |
438 | 509 |
439 MHTMLGenerationManager::~MHTMLGenerationManager() { | 510 MHTMLGenerationManager::~MHTMLGenerationManager() { |
440 } | 511 } |
441 | 512 |
442 void MHTMLGenerationManager::SaveMHTML(WebContents* web_contents, | 513 void MHTMLGenerationManager::SaveMHTML(WebContents* web_contents, |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
592 return iter->second.get(); | 663 return iter->second.get(); |
593 } | 664 } |
594 | 665 |
595 void MHTMLGenerationManager::RenderProcessExited(Job* job) { | 666 void MHTMLGenerationManager::RenderProcessExited(Job* job) { |
596 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 667 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
597 DCHECK(job); | 668 DCHECK(job); |
598 JobFinished(job, MhtmlSaveStatus::RENDER_PROCESS_EXITED); | 669 JobFinished(job, MhtmlSaveStatus::RENDER_PROCESS_EXITED); |
599 } | 670 } |
600 | 671 |
601 } // namespace content | 672 } // namespace content |
OLD | NEW |