OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "components/offline_pages/snapshot_controller.h" | 5 #include "components/offline_pages/snapshot_controller.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
11 | 11 |
12 namespace { | 12 namespace { |
13 // Delay, in milliseconds, between the main document parsed event and snapshot. | 13 // Default delay, in milliseconds, between the main document parsed event and |
14 // Note if the "load" event fires before this delay is up, then the snapshot | 14 // snapshot. Note: this snapshot might not occur if the OnLoad event and |
15 // is taken immediately. | 15 // OnLoad delay elapses first to trigger a final snapshot. |
16 const size_t kDelayAfterDocumentAvailable = 7000; | 16 const size_t kDefaultDelayAfterDocumentAvailableMs = 7000; |
17 | |
18 // Default delay, in milliseconds, between the main document OnLoad event and | |
19 // snapshot. | |
20 const size_t kDelayAfterDocumentOnLoadCompletedMs = 1000; | |
17 | 21 |
18 } // namespace | 22 } // namespace |
19 | 23 |
20 namespace offline_pages { | 24 namespace offline_pages { |
21 | 25 |
22 SnapshotController::SnapshotController( | 26 SnapshotController::SnapshotController( |
23 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, | 27 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, |
24 SnapshotController::Client* client) | 28 SnapshotController::Client* client) |
25 : task_runner_(task_runner), | 29 : task_runner_(task_runner), |
26 client_(client), | 30 client_(client), |
27 state_(State::READY), | 31 state_(State::READY), |
28 weak_ptr_factory_(this) { | 32 delay_after_document_available_ms_( |
29 } | 33 kDefaultDelayAfterDocumentAvailableMs), |
34 delay_after_document_on_load_completed_ms_( | |
35 kDelayAfterDocumentOnLoadCompletedMs), | |
36 weak_ptr_factory_(this) {} | |
37 | |
38 SnapshotController::SnapshotController( | |
39 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, | |
40 SnapshotController::Client* client, | |
41 size_t delay_after_document_available_ms, | |
42 size_t delay_after_document_on_load_completed_ms) | |
43 : task_runner_(task_runner), | |
44 client_(client), | |
45 state_(State::READY), | |
46 delay_after_document_available_ms_( | |
47 delay_after_document_available_ms), | |
48 delay_after_document_on_load_completed_ms_( | |
49 delay_after_document_on_load_completed_ms), | |
50 weak_ptr_factory_(this) {} | |
30 | 51 |
31 SnapshotController::~SnapshotController() {} | 52 SnapshotController::~SnapshotController() {} |
32 | 53 |
33 void SnapshotController::Reset() { | 54 void SnapshotController::Reset() { |
34 // Cancel potentially delayed tasks that relate to the previous 'session'. | 55 // Cancel potentially delayed tasks that relate to the previous 'session'. |
35 weak_ptr_factory_.InvalidateWeakPtrs(); | 56 weak_ptr_factory_.InvalidateWeakPtrs(); |
36 state_ = State::READY; | 57 state_ = State::READY; |
37 } | 58 } |
38 | 59 |
39 void SnapshotController::Stop() { | 60 void SnapshotController::Stop() { |
40 state_ = State::STOPPED; | 61 state_ = State::STOPPED; |
41 } | 62 } |
42 | 63 |
43 void SnapshotController::PendingSnapshotCompleted() { | 64 void SnapshotController::PendingSnapshotCompleted() { |
44 // Unless the controller is "stopped", enable the subsequent snapshots. | 65 // Unless the controller is "stopped", enable the subsequent snapshots. |
45 // Stopped state prevents any further snapshots form being started. | 66 // Stopped state prevents any further snapshots form being started. |
46 if (state_ == State::STOPPED) | 67 if (state_ == State::STOPPED) |
47 return; | 68 return; |
48 state_ = State::READY; | 69 state_ = State::READY; |
49 } | 70 } |
50 | 71 |
51 void SnapshotController::DocumentAvailableInMainFrame() { | 72 void SnapshotController::DocumentAvailableInMainFrame() { |
52 // Post a delayed task. The snapshot will happen either when the delay | 73 // Post a delayed task. The snapshot will happen either when the delay |
53 // is up, or if the "load" event is dispatched in the main frame. | 74 // is up, or if the "load" event is dispatched in the main frame. |
Dmitry Titov
2016/10/21 18:21:03
This comment should be updated. Maybe just removed
dougarnett
2016/10/21 18:41:06
Done.
| |
54 task_runner_->PostDelayedTask( | 75 task_runner_->PostDelayedTask( |
55 FROM_HERE, | 76 FROM_HERE, base::Bind(&SnapshotController::MaybeStartSnapshot, |
56 base::Bind(&SnapshotController::MaybeStartSnapshot, | 77 weak_ptr_factory_.GetWeakPtr()), |
57 weak_ptr_factory_.GetWeakPtr()), | 78 base::TimeDelta::FromMilliseconds( |
58 base::TimeDelta::FromMilliseconds(kDelayAfterDocumentAvailable)); | 79 delay_after_document_available_ms_)); |
59 } | 80 } |
60 | 81 |
61 void SnapshotController::DocumentOnLoadCompletedInMainFrame() { | 82 void SnapshotController::DocumentOnLoadCompletedInMainFrame() { |
62 MaybeStartSnapshot(); | 83 // Post a delayed task to snapshot and then stop this controller. |
63 // No more snapshots after onLoad (there still can be other events | 84 task_runner_->PostDelayedTask( |
64 // or delayed tasks that can try to start another snapshot) | 85 FROM_HERE, base::Bind(&SnapshotController::MaybeStartSnapshotThenStop, |
65 Stop(); | 86 weak_ptr_factory_.GetWeakPtr()), |
87 base::TimeDelta::FromMilliseconds( | |
88 delay_after_document_on_load_completed_ms_)); | |
66 } | 89 } |
67 | 90 |
68 void SnapshotController::MaybeStartSnapshot() { | 91 void SnapshotController::MaybeStartSnapshot() { |
69 if (state_ != State::READY) | 92 if (state_ != State::READY) |
70 return; | 93 return; |
71 state_ = State::SNAPSHOT_PENDING; | 94 state_ = State::SNAPSHOT_PENDING; |
72 client_->StartSnapshot(); | 95 client_->StartSnapshot(); |
73 } | 96 } |
74 | 97 |
98 void SnapshotController::MaybeStartSnapshotThenStop() { | |
99 MaybeStartSnapshot(); | |
100 Stop(); | |
101 } | |
102 | |
75 size_t SnapshotController::GetDelayAfterDocumentAvailableForTest() { | 103 size_t SnapshotController::GetDelayAfterDocumentAvailableForTest() { |
76 return kDelayAfterDocumentAvailable; | 104 return delay_after_document_available_ms_; |
105 } | |
106 | |
107 size_t SnapshotController::GetDelayAfterDocumentOnLoadCompletedForTest() { | |
108 return delay_after_document_on_load_completed_ms_; | |
77 } | 109 } |
78 | 110 |
79 | 111 |
80 } // namespace offline_pages | 112 } // namespace offline_pages |
OLD | NEW |