OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/scheduler/base/task_queue_impl.h" | 5 #include "components/scheduler/base/task_queue_impl.h" |
6 | 6 |
7 #include "components/scheduler/base/task_queue_manager.h" | 7 #include "components/scheduler/base/task_queue_manager.h" |
8 #include "components/scheduler/base/task_queue_manager_delegate.h" | 8 #include "components/scheduler/base/task_queue_manager_delegate.h" |
9 #include "components/scheduler/base/time_domain.h" | 9 #include "components/scheduler/base/time_domain.h" |
10 #include "components/scheduler/base/work_queue.h" | 10 #include "components/scheduler/base/work_queue.h" |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 TaskType task_type) { | 179 TaskType task_type) { |
180 DCHECK_GT(delay, base::TimeDelta()); | 180 DCHECK_GT(delay, base::TimeDelta()); |
181 if (base::PlatformThread::CurrentId() == thread_id_) { | 181 if (base::PlatformThread::CurrentId() == thread_id_) { |
182 // Lock-free fast path for delayed tasks posted from the main thread. | 182 // Lock-free fast path for delayed tasks posted from the main thread. |
183 if (!main_thread_only().task_queue_manager) | 183 if (!main_thread_only().task_queue_manager) |
184 return false; | 184 return false; |
185 | 185 |
186 EnqueueOrder sequence_number = | 186 EnqueueOrder sequence_number = |
187 main_thread_only().task_queue_manager->GetNextSequenceNumber(); | 187 main_thread_only().task_queue_manager->GetNextSequenceNumber(); |
188 | 188 |
189 base::TimeTicks time_domain_now = main_thread_only().time_domain->Now(); | 189 base::TimeTicks now = main_thread_only().time_domain->Now(); |
190 base::TimeTicks time_domain_delayed_run_time = | |
191 main_thread_only().time_domain->ComputeDelayedRunTime(time_domain_now, | |
192 delay); | |
193 PushOntoDelayedIncomingQueueFromMainThread( | 190 PushOntoDelayedIncomingQueueFromMainThread( |
194 Task(from_here, task, time_domain_delayed_run_time, sequence_number, | 191 Task(from_here, task, now + delay, sequence_number, |
195 task_type != TaskType::NON_NESTABLE), | 192 task_type != TaskType::NON_NESTABLE), |
196 time_domain_now); | 193 now); |
197 } else { | 194 } else { |
198 // NOTE posting a delayed task from a different thread is not expected to | 195 // NOTE posting a delayed task from a different thread is not expected to |
199 // be common. This pathway is less optimal than perhaps it could be | 196 // be common. This pathway is less optimal than perhaps it could be |
200 // because it causes two main thread tasks to be run. Should this | 197 // because it causes two main thread tasks to be run. Should this |
201 // assumption prove to be false in future, we may need to revisit this. | 198 // assumption prove to be false in future, we may need to revisit this. |
202 base::AutoLock lock(any_thread_lock_); | 199 base::AutoLock lock(any_thread_lock_); |
203 if (!any_thread().task_queue_manager) | 200 if (!any_thread().task_queue_manager) |
204 return false; | 201 return false; |
205 | 202 |
206 EnqueueOrder sequence_number = | 203 EnqueueOrder sequence_number = |
207 any_thread().task_queue_manager->GetNextSequenceNumber(); | 204 any_thread().task_queue_manager->GetNextSequenceNumber(); |
208 | 205 |
209 base::TimeTicks time_domain_now = any_thread().time_domain->Now(); | |
210 base::TimeTicks time_domain_delayed_run_time = | |
211 any_thread().time_domain->ComputeDelayedRunTime(time_domain_now, delay); | |
212 PushOntoDelayedIncomingQueueLocked( | 206 PushOntoDelayedIncomingQueueLocked( |
213 Task(from_here, task, time_domain_delayed_run_time, sequence_number, | 207 Task(from_here, task, any_thread().time_domain->Now() + delay, |
214 task_type != TaskType::NON_NESTABLE)); | 208 sequence_number, task_type != TaskType::NON_NESTABLE)); |
215 } | 209 } |
216 return true; | 210 return true; |
217 } | 211 } |
218 | 212 |
219 void TaskQueueImpl::PushOntoDelayedIncomingQueueFromMainThread( | 213 void TaskQueueImpl::PushOntoDelayedIncomingQueueFromMainThread( |
220 Task&& pending_task, | 214 Task&& pending_task, |
221 base::TimeTicks now) { | 215 base::TimeTicks now) { |
222 main_thread_only().task_queue_manager->DidQueueTask(pending_task); | 216 main_thread_only().task_queue_manager->DidQueueTask(pending_task); |
223 | 217 |
224 // Schedule a later call to MoveReadyDelayedTasksToDelayedWorkQueue. | 218 // Schedule a later call to MoveReadyDelayedTasksToDelayedWorkQueue. |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 state->SetBoolean("nestable", task.nestable); | 673 state->SetBoolean("nestable", task.nestable); |
680 state->SetBoolean("is_high_res", task.is_high_res); | 674 state->SetBoolean("is_high_res", task.is_high_res); |
681 state->SetDouble( | 675 state->SetDouble( |
682 "delayed_run_time", | 676 "delayed_run_time", |
683 (task.delayed_run_time - base::TimeTicks()).InMicroseconds() / 1000.0L); | 677 (task.delayed_run_time - base::TimeTicks()).InMicroseconds() / 1000.0L); |
684 state->EndDictionary(); | 678 state->EndDictionary(); |
685 } | 679 } |
686 | 680 |
687 } // namespace internal | 681 } // namespace internal |
688 } // namespace scheduler | 682 } // namespace scheduler |
OLD | NEW |