Chromium Code Reviews| Index: base/task_scheduler/task_scheduler_impl.h |
| diff --git a/base/task_scheduler/task_scheduler_impl.h b/base/task_scheduler/task_scheduler_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5d0c7f2a374dc31effa33cbd7fa2cc050774008b |
| --- /dev/null |
| +++ b/base/task_scheduler/task_scheduler_impl.h |
| @@ -0,0 +1,81 @@ |
| +// 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. |
| + |
| +#ifndef BASE_TASK_SCHEDULER_TASK_SCHEDULER_IMPL_H_ |
| +#define BASE_TASK_SCHEDULER_TASK_SCHEDULER_IMPL_H_ |
| + |
| +#include <memory> |
| + |
| +#include "base/base_export.h" |
| +#include "base/macros.h" |
| +#include "base/memory/ref_counted.h" |
| +#include "base/synchronization/waitable_event.h" |
| +#include "base/task_runner.h" |
| +#include "base/task_scheduler/delayed_task_manager.h" |
| +#include "base/task_scheduler/scheduler_thread_pool_impl.h" |
| +#include "base/task_scheduler/sequence.h" |
| +#include "base/task_scheduler/task_scheduler.h" |
| +#include "base/task_scheduler/task_tracker.h" |
| +#include "base/task_scheduler/task_traits.h" |
| + |
| +namespace base { |
| +namespace internal { |
| + |
| +// Default TaskScheduler implementation. This class is thread-safe. |
| +class BASE_EXPORT TaskSchedulerImpl : public TaskScheduler { |
| + public: |
| + // Destroying a TaskSchedulerImpl is not allowed in production; it is always |
| + // leaked. In tests, it can only be destroyed after JoinForTesting() has |
| + // returned. |
| + ~TaskSchedulerImpl() override; |
| + |
| + static std::unique_ptr<TaskSchedulerImpl> Create(); |
|
gab
2016/04/27 19:15:28
// Creates and returns an initialized TaskSchedule
fdoray
2016/04/28 18:36:32
Removed this method. Added a similar comment on th
|
| + |
| + // TaskScheduler: |
| + scoped_refptr<TaskRunner> CreateTaskRunnerWithTraits( |
| + const TaskTraits& traits, |
| + ExecutionMode execution_mode) override; |
| + void Shutdown() override; |
| + |
| + // Joins all threads of this scheduler. Tasks that are already running are |
| + // allowed to complete their execution. This can only be called once. |
| + void JoinForTesting(); |
| + |
| + private: |
| + TaskSchedulerImpl(); |
| + |
| + void Initialize(); |
| + |
| + // Returns the thread pool that runs Tasks with |traits|. |
| + SchedulerThreadPool* GetThreadPoolForTraits(const TaskTraits& traits); |
| + |
| + // Callback invoked when a non-single-thread |sequence| isn't empty after a |
| + // worker thread pops a Task from it. |
| + void ReEnqueueSequenceCallback(scoped_refptr<Sequence> sequence); |
| + |
| + TaskTracker task_tracker_; |
| + DelayedTaskManager delayed_task_manager_; |
| + |
| + // Thread pool for BACKGROUND Tasks without file I/O. |
| + std::unique_ptr<SchedulerThreadPoolImpl> background_thread_pool_; |
| + |
| + // Thread pool for BACKGROUND Tasks with file I/O. |
| + std::unique_ptr<SchedulerThreadPoolImpl> background_file_io_thread_pool_; |
| + |
| + // Thread pool for USER_VISIBLE and USER_BLOCKING Tasks without file I/O. |
| + std::unique_ptr<SchedulerThreadPoolImpl> normal_thread_pool_; |
| + |
| + // Thread pool for USER_VISIBLE and USER_BLOCKING Tasks with file I/O. |
| + std::unique_ptr<SchedulerThreadPoolImpl> normal_file_io_thread_pool_; |
| + |
| + // Signaled once JoinForTesting() has returned. |
| + WaitableEvent join_for_testing_returned_; |
|
gab
2016/04/27 19:15:28
#if DCHECK_IS_ON()
fdoray
2016/04/28 18:36:32
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(TaskSchedulerImpl); |
| +}; |
| + |
| +} // namespace internal |
| +} // namespace base |
| + |
| +#endif // BASE_TASK_SCHEDULER_TASK_SCHEDULER_IMPL_H_ |