Chromium Code Reviews| 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 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 #include "content/browser/frame_host/render_frame_host_impl.h" | 25 #include "content/browser/frame_host/render_frame_host_impl.h" |
| 26 #include "content/common/frame_messages.h" | 26 #include "content/common/frame_messages.h" |
| 27 #include "content/public/browser/browser_thread.h" | 27 #include "content/public/browser/browser_thread.h" |
| 28 #include "content/public/browser/render_frame_host.h" | 28 #include "content/public/browser/render_frame_host.h" |
| 29 #include "content/public/browser/render_process_host.h" | 29 #include "content/public/browser/render_process_host.h" |
| 30 #include "content/public/browser/render_process_host_observer.h" | 30 #include "content/public/browser/render_process_host_observer.h" |
| 31 #include "content/public/browser/web_contents.h" | 31 #include "content/public/browser/web_contents.h" |
| 32 #include "content/public/common/mhtml_generation_params.h" | 32 #include "content/public/common/mhtml_generation_params.h" |
| 33 #include "net/base/mime_util.h" | 33 #include "net/base/mime_util.h" |
| 34 | 34 |
| 35 namespace { | |
| 36 const char kContentLocation[] = "Content-Location: "; | |
| 37 const char kContentType[] = "Content-Type: "; | |
| 38 const int kMHTMLExtraDataKey = 0; | |
| 39 | |
|
Dmitry Titov
2017/03/18 00:58:34
extra empty line
Pete Williamson
2017/03/20 18:26:53
Done.
| |
| 40 } // namespace | |
| 41 | |
| 35 namespace content { | 42 namespace content { |
| 36 | 43 |
| 37 // The class and all of its members live on the UI thread. Only static methods | 44 // The class and all of its members live on the UI thread. Only static methods |
| 38 // are executed on other threads. | 45 // are executed on other threads. |
| 39 class MHTMLGenerationManager::Job : public RenderProcessHostObserver { | 46 class MHTMLGenerationManager::Job : public RenderProcessHostObserver { |
| 40 public: | 47 public: |
| 41 Job(int job_id, | 48 Job(int job_id, |
| 42 WebContents* web_contents, | 49 WebContents* web_contents, |
| 43 const MHTMLGenerationParams& params, | 50 const MHTMLGenerationParams& params, |
| 44 const GenerateMHTMLCallback& callback); | 51 const GenerateMHTMLCallback& callback); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 | 101 |
| 95 private: | 102 private: |
| 96 // Writes the MHTML footer to the file and closes it. | 103 // Writes the MHTML footer to the file and closes it. |
| 97 // | 104 // |
| 98 // Note: The same |boundary| marker must be used for all "boundaries" -- in | 105 // 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 | 106 // the header, parts and footer -- that belong to the same MHTML document (see |
| 100 // also rfc1341, section 7.2.1, "boundary" description). | 107 // also rfc1341, section 7.2.1, "boundary" description). |
| 101 static std::tuple<MhtmlSaveStatus, int64_t> CloseFileOnFileThread( | 108 static std::tuple<MhtmlSaveStatus, int64_t> CloseFileOnFileThread( |
| 102 MhtmlSaveStatus save_status, | 109 MhtmlSaveStatus save_status, |
| 103 const std::string& boundary, | 110 const std::string& boundary, |
| 104 base::File file); | 111 base::File file, |
| 112 const std::vector<MHTMLGenerationManager::MHTMLExtraSection>* | |
| 113 extra_sections); | |
| 105 void AddFrame(RenderFrameHost* render_frame_host); | 114 void AddFrame(RenderFrameHost* render_frame_host); |
| 106 | 115 |
| 116 // If we have any extra data sections to write out, write them into the file | |
| 117 // while on the file thread. Returns true for success. | |
| 118 static bool WriteExtraDataSectionsOnFileThread( | |
| 119 const std::string& boundary, | |
| 120 base::File& file, | |
| 121 const std::vector<MHTMLExtraSection>* extra_sections); | |
| 122 | |
| 107 // Creates a new map with values (content ids) the same as in | 123 // 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 | 124 // |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. | 125 // frame_tree_node_id into a |site_instance|-specific routing_id. |
| 110 std::map<int, std::string> CreateFrameRoutingIdToContentId( | 126 std::map<int, std::string> CreateFrameRoutingIdToContentId( |
| 111 SiteInstance* site_instance); | 127 SiteInstance* site_instance); |
| 112 | 128 |
| 113 // Id used to map renderer responses to jobs. | 129 // Id used to map renderer responses to jobs. |
| 114 // See also MHTMLGenerationManager::id_to_job_ map. | 130 // See also MHTMLGenerationManager::id_to_job_ map. |
| 115 const int job_id_; | 131 const int job_id_; |
| 116 | 132 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 149 std::string salt_; | 165 std::string salt_; |
| 150 | 166 |
| 151 // The callback to call once generation is complete. | 167 // The callback to call once generation is complete. |
| 152 const GenerateMHTMLCallback callback_; | 168 const GenerateMHTMLCallback callback_; |
| 153 | 169 |
| 154 // Whether the job is finished (set to true only for the short duration of | 170 // 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 | 171 // time between MHTMLGenerationManager::JobFinished is called and the job is |
| 156 // destroyed by MHTMLGenerationManager::OnFileClosed). | 172 // destroyed by MHTMLGenerationManager::OnFileClosed). |
| 157 bool is_finished_; | 173 bool is_finished_; |
| 158 | 174 |
| 175 // Any extra data sections that should be emitted into the output MHTML. | |
| 176 std::vector<MHTMLExtraSection>* extra_sections_; | |
| 177 | |
| 159 // RAII helper for registering this Job as a RenderProcessHost observer. | 178 // RAII helper for registering this Job as a RenderProcessHost observer. |
| 160 ScopedObserver<RenderProcessHost, MHTMLGenerationManager::Job> | 179 ScopedObserver<RenderProcessHost, MHTMLGenerationManager::Job> |
| 161 observed_renderer_process_host_; | 180 observed_renderer_process_host_; |
| 162 | 181 |
| 163 DISALLOW_COPY_AND_ASSIGN(Job); | 182 DISALLOW_COPY_AND_ASSIGN(Job); |
| 164 }; | 183 }; |
| 165 | 184 |
| 166 MHTMLGenerationManager::Job::Job(int job_id, | 185 MHTMLGenerationManager::Job::Job(int job_id, |
| 167 WebContents* web_contents, | 186 WebContents* web_contents, |
| 168 const MHTMLGenerationParams& params, | 187 const MHTMLGenerationParams& params, |
| 169 const GenerateMHTMLCallback& callback) | 188 const GenerateMHTMLCallback& callback) |
| 170 : job_id_(job_id), | 189 : job_id_(job_id), |
| 171 creation_time_(base::TimeTicks::Now()), | 190 creation_time_(base::TimeTicks::Now()), |
| 172 params_(params), | 191 params_(params), |
| 173 frame_tree_node_id_of_busy_frame_(FrameTreeNode::kFrameTreeNodeInvalidId), | 192 frame_tree_node_id_of_busy_frame_(FrameTreeNode::kFrameTreeNodeInvalidId), |
| 174 mhtml_boundary_marker_(net::GenerateMimeMultipartBoundary()), | 193 mhtml_boundary_marker_(net::GenerateMimeMultipartBoundary()), |
| 175 salt_(base::GenerateGUID()), | 194 salt_(base::GenerateGUID()), |
| 176 callback_(callback), | 195 callback_(callback), |
| 177 is_finished_(false), | 196 is_finished_(false), |
| 178 observed_renderer_process_host_(this) { | 197 observed_renderer_process_host_(this) { |
| 179 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 198 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 180 web_contents->ForEachFrame(base::Bind( | 199 web_contents->ForEachFrame(base::Bind( |
| 181 &MHTMLGenerationManager::Job::AddFrame, | 200 &MHTMLGenerationManager::Job::AddFrame, |
| 182 base::Unretained(this))); // Safe because ForEachFrame is synchronous. | 201 base::Unretained(this))); // Safe because ForEachFrame is synchronous. |
| 183 | 202 |
| 184 // Main frame needs to be processed first. | 203 // Main frame needs to be processed first. |
| 185 DCHECK(!pending_frame_tree_node_ids_.empty()); | 204 DCHECK(!pending_frame_tree_node_ids_.empty()); |
| 186 DCHECK(FrameTreeNode::GloballyFindByID(pending_frame_tree_node_ids_.front()) | 205 DCHECK(FrameTreeNode::GloballyFindByID(pending_frame_tree_node_ids_.front()) |
| 187 ->parent() == nullptr); | 206 ->parent() == nullptr); |
| 207 | |
| 208 // Save off any extra data. | |
| 209 extra_sections_ = MHTMLExtraData::FromWebContents(web_contents); | |
| 188 } | 210 } |
| 189 | 211 |
| 190 MHTMLGenerationManager::Job::~Job() { | 212 MHTMLGenerationManager::Job::~Job() { |
| 191 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 213 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 192 } | 214 } |
| 193 | 215 |
| 194 std::map<int, std::string> | 216 std::map<int, std::string> |
| 195 MHTMLGenerationManager::Job::CreateFrameRoutingIdToContentId( | 217 MHTMLGenerationManager::Job::CreateFrameRoutingIdToContentId( |
| 196 SiteInstance* site_instance) { | 218 SiteInstance* site_instance) { |
| 197 std::map<int, std::string> result; | 219 std::map<int, std::string> result; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 348 return; | 370 return; |
| 349 } | 371 } |
| 350 | 372 |
| 351 // If no previous error occurred the boundary should be sent. | 373 // If no previous error occurred the boundary should be sent. |
| 352 BrowserThread::PostTaskAndReplyWithResult( | 374 BrowserThread::PostTaskAndReplyWithResult( |
| 353 BrowserThread::FILE, FROM_HERE, | 375 BrowserThread::FILE, FROM_HERE, |
| 354 base::Bind( | 376 base::Bind( |
| 355 &MHTMLGenerationManager::Job::CloseFileOnFileThread, save_status, | 377 &MHTMLGenerationManager::Job::CloseFileOnFileThread, save_status, |
| 356 (save_status == MhtmlSaveStatus::SUCCESS ? mhtml_boundary_marker_ | 378 (save_status == MhtmlSaveStatus::SUCCESS ? mhtml_boundary_marker_ |
| 357 : std::string()), | 379 : std::string()), |
| 358 base::Passed(&browser_file_)), | 380 base::Passed(&browser_file_), extra_sections_), |
| 359 callback); | 381 callback); |
| 360 } | 382 } |
| 361 | 383 |
| 362 bool MHTMLGenerationManager::Job::IsMessageFromFrameExpected( | 384 bool MHTMLGenerationManager::Job::IsMessageFromFrameExpected( |
| 363 RenderFrameHostImpl* sender) { | 385 RenderFrameHostImpl* sender) { |
| 364 int sender_id = sender->frame_tree_node()->frame_tree_node_id(); | 386 int sender_id = sender->frame_tree_node()->frame_tree_node_id(); |
| 365 if (sender_id != frame_tree_node_id_of_busy_frame_) | 387 if (sender_id != frame_tree_node_id_of_busy_frame_) |
| 366 return false; | 388 return false; |
| 367 | 389 |
| 368 // We only expect one message per frame - let's make sure subsequent messages | 390 // We only expect one message per frame - let's make sure subsequent messages |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 394 | 416 |
| 395 // Report success if all frames have been processed. | 417 // Report success if all frames have been processed. |
| 396 if (pending_frame_tree_node_ids_.empty()) | 418 if (pending_frame_tree_node_ids_.empty()) |
| 397 return MhtmlSaveStatus::SUCCESS; | 419 return MhtmlSaveStatus::SUCCESS; |
| 398 | 420 |
| 399 return SendToNextRenderFrame(); | 421 return SendToNextRenderFrame(); |
| 400 } | 422 } |
| 401 | 423 |
| 402 // static | 424 // static |
| 403 std::tuple<MhtmlSaveStatus, int64_t> | 425 std::tuple<MhtmlSaveStatus, int64_t> |
| 404 MHTMLGenerationManager::Job::CloseFileOnFileThread(MhtmlSaveStatus save_status, | 426 MHTMLGenerationManager::Job::CloseFileOnFileThread( |
| 405 const std::string& boundary, | 427 MhtmlSaveStatus save_status, |
| 406 base::File file) { | 428 const std::string& boundary, |
| 429 base::File file, | |
| 430 const std::vector<MHTMLExtraSection>* extra_sections) { | |
| 407 DCHECK_CURRENTLY_ON(BrowserThread::FILE); | 431 DCHECK_CURRENTLY_ON(BrowserThread::FILE); |
| 432 int64_t file_size = -1; | |
| 408 | 433 |
| 409 // If no previous error occurred the boundary should have been provided. | 434 // If no previous error occurred the boundary should have been provided. |
| 410 if (save_status == MhtmlSaveStatus::SUCCESS) { | 435 if (save_status == MhtmlSaveStatus::SUCCESS) { |
| 411 TRACE_EVENT0("page-serialization", | 436 TRACE_EVENT0("page-serialization", |
| 412 "MHTMLGenerationManager::Job MHTML footer writing"); | 437 "MHTMLGenerationManager::Job MHTML footer writing"); |
| 413 DCHECK(!boundary.empty()); | 438 DCHECK(!boundary.empty()); |
| 439 | |
| 440 // Write the extra data into a section of its own, if we have any. | |
| 441 if (!WriteExtraDataSectionsOnFileThread(boundary, file, extra_sections)) | |
| 442 save_status = MhtmlSaveStatus::FILE_WRITTING_ERROR; | |
|
Dmitry Titov
2017/03/18 00:58:34
there was a comment about early return here and yo
Pete Williamson
2017/03/20 18:26:53
Ah, there are now two cases, and only one of them
| |
| 443 | |
| 414 std::string footer = base::StringPrintf("--%s--\r\n", boundary.c_str()); | 444 std::string footer = base::StringPrintf("--%s--\r\n", boundary.c_str()); |
| 415 DCHECK(base::IsStringASCII(footer)); | 445 DCHECK(base::IsStringASCII(footer)); |
| 416 if (file.WriteAtCurrentPos(footer.data(), footer.size()) < 0) | 446 if (file.WriteAtCurrentPos(footer.data(), footer.size()) < 0) { |
| 417 save_status = MhtmlSaveStatus::FILE_WRITTING_ERROR; | 447 save_status = MhtmlSaveStatus::FILE_WRITTING_ERROR; |
| 448 return std::make_tuple(save_status, file_size); | |
| 449 } | |
| 418 } | 450 } |
| 419 | 451 |
| 420 // If the file is still valid try to close it. Only update the status if that | 452 // If the file is still valid try to close it. Only update the status if that |
| 421 // won't hide an earlier error. | 453 // won't hide an earlier error. |
| 422 int64_t file_size = -1; | |
| 423 if (file.IsValid()) { | 454 if (file.IsValid()) { |
| 424 file_size = file.GetLength(); | 455 file_size = file.GetLength(); |
| 425 file.Close(); | 456 file.Close(); |
| 426 } else if (save_status == MhtmlSaveStatus::SUCCESS) { | 457 } else if (save_status == MhtmlSaveStatus::SUCCESS) { |
| 427 save_status = MhtmlSaveStatus::FILE_CLOSING_ERROR; | 458 save_status = MhtmlSaveStatus::FILE_CLOSING_ERROR; |
| 428 } | 459 } |
| 429 | 460 |
| 430 return std::make_tuple(save_status, file_size); | 461 return std::make_tuple(save_status, file_size); |
| 431 } | 462 } |
| 432 | 463 |
| 464 // static | |
| 465 bool MHTMLGenerationManager::Job::WriteExtraDataSectionsOnFileThread( | |
| 466 const std::string& boundary, | |
| 467 base::File& file, | |
| 468 const std::vector<MHTMLExtraSection>* extra_sections) { | |
| 469 // Don't write an extra data section if there is none. | |
| 470 if (extra_sections->empty()) | |
| 471 return true; | |
| 472 | |
| 473 std::string extra_sections_serialized; | |
| 474 | |
| 475 // For each extra section, serialize that section and add to our accumulator | |
| 476 // string. | |
| 477 for (auto section : *extra_sections) { | |
| 478 // Write a newline, then a boundary, another newline, then the content | |
| 479 // location, another newline, the content type, another newline, the extra | |
| 480 // data string, and end with a newline. | |
| 481 std::string extra_data_section = base::StringPrintf( | |
| 482 "--%s--\r\n%s%s\r\n%s%s\r\n%s\r\n", boundary.c_str(), kContentLocation, | |
| 483 section.content_location.c_str(), kContentType, | |
| 484 section.content_type.c_str(), section.body.c_str()); | |
| 485 DCHECK(base::IsStringASCII(extra_data_section)); | |
| 486 | |
| 487 extra_sections_serialized += extra_data_section; | |
| 488 } | |
| 489 | |
| 490 // Write the string into the file. Returns false if we failed the write. | |
| 491 return (file.WriteAtCurrentPos(extra_sections_serialized.data(), | |
| 492 extra_sections_serialized.size()) >= 0); | |
| 493 } | |
| 494 | |
| 433 MHTMLGenerationManager* MHTMLGenerationManager::GetInstance() { | 495 MHTMLGenerationManager* MHTMLGenerationManager::GetInstance() { |
| 434 return base::Singleton<MHTMLGenerationManager>::get(); | 496 return base::Singleton<MHTMLGenerationManager>::get(); |
| 435 } | 497 } |
| 436 | 498 |
| 499 MHTMLGenerationManager::MHTMLExtraData::MHTMLExtraData() {} | |
| 500 | |
| 501 MHTMLGenerationManager::MHTMLExtraData::~MHTMLExtraData() {} | |
| 502 | |
| 503 std::vector<MHTMLGenerationManager::MHTMLExtraSection>* | |
| 504 MHTMLGenerationManager::MHTMLExtraData::FromWebContents( | |
| 505 content::WebContents* contents) { | |
| 506 MHTMLExtraData* extra_data = | |
| 507 static_cast<MHTMLExtraData*>(contents->GetUserData(&kMHTMLExtraDataKey)); | |
| 508 return extra_data->sections(); | |
| 509 } | |
| 510 | |
| 511 void MHTMLGenerationManager::MHTMLExtraData::AddToWebContents( | |
| 512 content::WebContents* contents, | |
| 513 MHTMLGenerationManager::MHTMLExtraSection& section) { | |
| 514 MHTMLExtraData* extra_data = | |
| 515 static_cast<MHTMLExtraData*>(contents->GetUserData(&kMHTMLExtraDataKey)); | |
| 516 // If we don't already have any extra data, add it now. | |
| 517 if (extra_data == nullptr) { | |
| 518 extra_data = new MHTMLExtraData(); | |
| 519 // Note that we hold onto extra_data until the end of this function, even | |
| 520 // though we transfer it to the web contents user data. | |
| 521 contents->SetUserData(&kMHTMLExtraDataKey, | |
| 522 std::unique_ptr<MHTMLExtraData>(extra_data)); | |
| 523 } | |
| 524 // Add this section to the list of sections to be saved out. | |
| 525 extra_data->sections()->push_back(section); | |
| 526 } | |
| 527 | |
| 437 MHTMLGenerationManager::MHTMLGenerationManager() : next_job_id_(0) {} | 528 MHTMLGenerationManager::MHTMLGenerationManager() : next_job_id_(0) {} |
| 438 | 529 |
| 439 MHTMLGenerationManager::~MHTMLGenerationManager() { | 530 MHTMLGenerationManager::~MHTMLGenerationManager() { |
| 440 } | 531 } |
| 441 | 532 |
| 442 void MHTMLGenerationManager::SaveMHTML(WebContents* web_contents, | 533 void MHTMLGenerationManager::SaveMHTML(WebContents* web_contents, |
| 443 const MHTMLGenerationParams& params, | 534 const MHTMLGenerationParams& params, |
| 444 const GenerateMHTMLCallback& callback) { | 535 const GenerateMHTMLCallback& callback) { |
| 445 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 536 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 446 | 537 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 592 return iter->second.get(); | 683 return iter->second.get(); |
| 593 } | 684 } |
| 594 | 685 |
| 595 void MHTMLGenerationManager::RenderProcessExited(Job* job) { | 686 void MHTMLGenerationManager::RenderProcessExited(Job* job) { |
| 596 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 687 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 597 DCHECK(job); | 688 DCHECK(job); |
| 598 JobFinished(job, MhtmlSaveStatus::RENDER_PROCESS_EXITED); | 689 JobFinished(job, MhtmlSaveStatus::RENDER_PROCESS_EXITED); |
| 599 } | 690 } |
| 600 | 691 |
| 601 } // namespace content | 692 } // namespace content |
| OLD | NEW |