Chromium Code Reviews| Index: base/task_scheduler/delayed_task_manager.cc |
| diff --git a/base/task_scheduler/delayed_task_manager.cc b/base/task_scheduler/delayed_task_manager.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ccb3bf7319e034f6eea7281695b5bb9bd7996c7d |
| --- /dev/null |
| +++ b/base/task_scheduler/delayed_task_manager.cc |
| @@ -0,0 +1,158 @@ |
| +// Copyright 2016 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 "base/task_scheduler/delayed_task_manager.h" |
| + |
| +#include <utility> |
| + |
| +#include "base/logging.h" |
| +#include "base/task_scheduler/scheduler_task_executor.h" |
| + |
| +namespace base { |
| +namespace internal { |
| + |
| +struct DelayedTaskManager::DelayedTask { |
| + DelayedTask(std::unique_ptr<Task> task, |
| + scoped_refptr<Sequence> sequence, |
| + SchedulerTaskExecutor* executor, |
| + uint64_t index) |
| + : task(std::move(task)), |
| + sequence(std::move(sequence)), |
| + executor(executor), |
| + index(index) {} |
| + |
| + DelayedTask(DelayedTask&& other) |
|
danakj
2016/04/19 21:16:46
this looks like you could use =default instead of
fdoray
2016/04/19 21:46:45
Done.
|
| + : task(std::move(other.task)), |
| + sequence(std::move(other.sequence)), |
| + executor(other.executor), |
| + index(other.index) {} |
| + |
| + ~DelayedTask() = default; |
| + |
| + DelayedTask& operator=(DelayedTask&& other) { |
|
danakj
2016/04/19 21:16:46
=default here too?
fdoray
2016/04/19 21:46:45
Done.
|
| + task = std::move(other.task); |
| + sequence = std::move(other.sequence); |
| + executor = other.executor; |
| + index = other.index; |
| + return *this; |
| + } |
| + |
| + // |task| will be posted to |executor| as part of |sequence| when it becomes |
| + // ripe for execution. |
| + std::unique_ptr<Task> task; |
| + scoped_refptr<Sequence> sequence; |
| + SchedulerTaskExecutor* executor; |
| + |
| + // Ensures that tasks that have the same |delayed_run_time| are sorted |
| + // according to the order in which they were added to the DelayedTaskManager. |
| + uint64_t index; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(DelayedTask); |
| +}; |
| + |
| +DelayedTaskManager::DelayedTaskManager( |
| + const Closure& on_delayed_run_time_updated) |
| + : on_delayed_run_time_updated_(on_delayed_run_time_updated) { |
| + DCHECK(!on_delayed_run_time_updated_.is_null()); |
| +} |
| + |
| +DelayedTaskManager::~DelayedTaskManager() = default; |
| + |
| +void DelayedTaskManager::AddDelayedTask(std::unique_ptr<Task> task, |
| + scoped_refptr<Sequence> sequence, |
| + SchedulerTaskExecutor* executor) { |
| + DCHECK(task); |
| + DCHECK(sequence); |
| + DCHECK(executor); |
| + |
| + const TimeTicks new_task_delayed_run_time = task->delayed_run_time; |
| + TimeTicks current_delayed_run_time; |
| + |
| + { |
| + AutoSchedulerLock auto_lock(lock_); |
| + |
| + if (!delayed_tasks_.empty()) |
| + current_delayed_run_time = delayed_tasks_.top().task->delayed_run_time; |
| + |
| + delayed_tasks_.emplace(std::move(task), std::move(sequence), executor, |
| + delayed_task_index_++); |
|
danakj
2016/04/19 21:16:46
maybe start with an index of 1 instead of 0 (ie pr
fdoray
2016/04/19 21:46:45
Done.
|
| + } |
| + |
| + if (current_delayed_run_time.is_null() || |
| + new_task_delayed_run_time < current_delayed_run_time) { |
| + on_delayed_run_time_updated_.Run(); |
| + } |
| +} |
| + |
| +void DelayedTaskManager::PostReadyTasks() { |
| + const TimeTicks now = Now(); |
| + |
| + // Move delayed tasks that are ready for execution into |ready_tasks|. Don't |
| + // post them right away to avoid imposing an unecessary lock dependency on |
| + // PostTaskNowHelper. |
| + std::vector<DelayedTask> ready_tasks; |
| + |
| + { |
| + AutoSchedulerLock auto_lock(lock_); |
| + while (!delayed_tasks_.empty() && |
| + delayed_tasks_.top().task->delayed_run_time <= now) { |
| + // The const_cast for std::move is okay since we're immediately popping |
| + // the task from |delayed_tasks_|. See DelayedTaskComparator::operator() |
| + // for minor debug-check implications. |
| + ready_tasks.emplace_back( |
|
danakj
2016/04/19 21:16:46
push_back?
fdoray
2016/04/19 21:46:45
Done.
|
| + std::move(const_cast<DelayedTask&>(delayed_tasks_.top()))); |
| + delayed_tasks_.pop(); |
| + } |
| + } |
| + |
| + // Post delayed tasks that are ready for execution. |
| + for (auto& delayed_task : ready_tasks) { |
| + delayed_task.executor->PostTaskWithSequence( |
| + std::move(delayed_task.task), std::move(delayed_task.sequence)); |
| + } |
| +} |
| + |
| +TimeTicks DelayedTaskManager::GetDelayedRunTime() const { |
| + AutoSchedulerLock auto_lock(lock_); |
| + |
| + if (delayed_tasks_.empty()) |
| + return TimeTicks(); |
| + |
| + return delayed_tasks_.top().task->delayed_run_time; |
| +} |
| + |
| +// In std::priority_queue, the largest element is on top. Therefore, this |
| +// comparator returns true if the delayed run time of |right| is earlier than |
| +// the delayed run time of |left|. |
| +bool DelayedTaskManager::DelayedTaskComparator::operator()( |
| + const DelayedTask& left, |
| + const DelayedTask& right) const { |
| +#ifndef NDEBUG |
| + // Due to STL consistency checks in Windows and const_cast'ing right before |
| + // popping the DelayedTask, a null task can be passed to this comparator in |
| + // Debug builds. To satisfy these consistency checks, this comparator |
| + // considers null tasks to be the larger than anything. |
| + DCHECK(left.task || right.task); |
| + if (!left.task) |
| + return false; |
| + if (!right.task) |
| + return true; |
| +#else |
| + DCHECK(left.task); |
| + DCHECK(right.task); |
| +#endif // NDEBUG |
| + if (left.task->delayed_run_time > right.task->delayed_run_time) |
| + return true; |
| + if (left.task->delayed_run_time < right.task->delayed_run_time) |
| + return false; |
| + return left.index > right.index; |
| +} |
| + |
| +TimeTicks DelayedTaskManager::Now() const { |
| + return TimeTicks::Now(); |
| +} |
| + |
| +} // namespace internal |
| +} // namespace base |