Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: base/task_scheduler/task_scheduler_impl.cc

Issue 2064073003: TaskScheduler: Make the worker pools of TaskSchedulerImpl configurable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: delegate Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/task_scheduler/task_scheduler_impl.cc
diff --git a/base/task_scheduler/task_scheduler_impl.cc b/base/task_scheduler/task_scheduler_impl.cc
index e46a5b42977288fe6f9afb1c4c1b0d78c442473c..69603afcc5a14f7e8f652e4b48e8917db1a2416f 100644
--- a/base/task_scheduler/task_scheduler_impl.cc
+++ b/base/task_scheduler/task_scheduler_impl.cc
@@ -10,7 +10,6 @@
#include "base/bind_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/task_scheduler/scheduler_service_thread.h"
-#include "base/task_scheduler/scheduler_thread_pool_impl.h"
#include "base/task_scheduler/sequence_sort_key.h"
#include "base/task_scheduler/task.h"
#include "base/time/time.h"
@@ -19,8 +18,10 @@ namespace base {
namespace internal {
// static
-std::unique_ptr<TaskSchedulerImpl> TaskSchedulerImpl::Create() {
- std::unique_ptr<TaskSchedulerImpl> scheduler(new TaskSchedulerImpl);
+std::unique_ptr<TaskSchedulerImpl> TaskSchedulerImpl::Create(
+ std::unique_ptr<Delegate> delegate) {
+ std::unique_ptr<TaskSchedulerImpl> scheduler(
+ new TaskSchedulerImpl(std::move(delegate)));
scheduler->Initialize();
return scheduler;
}
@@ -57,18 +58,17 @@ void TaskSchedulerImpl::JoinForTesting() {
#if DCHECK_IS_ON()
DCHECK(!join_for_testing_returned_.IsSignaled());
#endif
- background_thread_pool_->JoinForTesting();
- background_file_io_thread_pool_->JoinForTesting();
- normal_thread_pool_->JoinForTesting();
- normal_file_io_thread_pool_->JoinForTesting();
+ for (const auto& thread_pool : thread_pools_)
+ thread_pool->JoinForTesting();
service_thread_->JoinForTesting();
#if DCHECK_IS_ON()
join_for_testing_returned_.Signal();
#endif
}
-TaskSchedulerImpl::TaskSchedulerImpl()
- : delayed_task_manager_(
+TaskSchedulerImpl::TaskSchedulerImpl(std::unique_ptr<Delegate> delegate)
+ : delegate_(std::move(delegate)),
+ delayed_task_manager_(
Bind(&TaskSchedulerImpl::OnDelayedRunTimeUpdated, Unretained(this)))
#if DCHECK_IS_ON()
,
@@ -76,44 +76,31 @@ TaskSchedulerImpl::TaskSchedulerImpl()
WaitableEvent::InitialState::NOT_SIGNALED)
#endif
{
+ DCHECK(delegate_);
}
void TaskSchedulerImpl::Initialize() {
- using IORestriction = SchedulerThreadPoolImpl::IORestriction;
+ constexpr char kTaskSchedulerThreadNamePrefix[] = "TaskScheduler";
const SchedulerThreadPoolImpl::ReEnqueueSequenceCallback
re_enqueue_sequence_callback =
Bind(&TaskSchedulerImpl::ReEnqueueSequenceCallback, Unretained(this));
- // TODO(fdoray): Derive the number of threads per pool from hardware
- // characteristics rather than using hard-coded constants.
-
- // Passing pointers to objects owned by |this| to
- // SchedulerThreadPoolImpl::Create() is safe because a TaskSchedulerImpl can't
- // be deleted before all its thread pools have been joined.
- background_thread_pool_ = SchedulerThreadPoolImpl::Create(
- "TaskSchedulerBackground", ThreadPriority::BACKGROUND, 1U,
- IORestriction::DISALLOWED, re_enqueue_sequence_callback, &task_tracker_,
- &delayed_task_manager_);
- CHECK(background_thread_pool_);
-
- background_file_io_thread_pool_ = SchedulerThreadPoolImpl::Create(
- "TaskSchedulerBackgroundFileIO", ThreadPriority::BACKGROUND, 1U,
- IORestriction::ALLOWED, re_enqueue_sequence_callback, &task_tracker_,
- &delayed_task_manager_);
- CHECK(background_file_io_thread_pool_);
-
- normal_thread_pool_ = SchedulerThreadPoolImpl::Create(
- "TaskSchedulerForeground", ThreadPriority::NORMAL, 4U,
- IORestriction::DISALLOWED, re_enqueue_sequence_callback, &task_tracker_,
- &delayed_task_manager_);
- CHECK(normal_thread_pool_);
-
- normal_file_io_thread_pool_ = SchedulerThreadPoolImpl::Create(
- "TaskSchedulerForegroundFileIO", ThreadPriority::NORMAL, 12U,
- IORestriction::ALLOWED, re_enqueue_sequence_callback, &task_tracker_,
- &delayed_task_manager_);
- CHECK(normal_file_io_thread_pool_);
+ const size_t num_thread_pools = delegate_->GetNumThreadPools();
robliao 2016/06/16 20:51:15 I'm not sure it's necessary to make the TaskSchedu
fdoray 2016/06/17 15:14:34 We don't plan to reconfigure the thread pool hiera
+ for (size_t i = 0; i < num_thread_pools; ++i) {
+ const Delegate::ThreadPoolCreationArgs creation_args =
+ delegate_->GetCreationArgsForThreadPool(i);
+
+ // Passing pointers to objects owned by |this| to
+ // SchedulerThreadPoolImpl::Create() is safe because a TaskSchedulerImpl
+ // can't be deleted before all its thread pools have been joined.
+ thread_pools_.push_back(SchedulerThreadPoolImpl::Create(
+ kTaskSchedulerThreadNamePrefix + creation_args.name,
+ creation_args.thread_priority, creation_args.max_threads,
+ creation_args.io_restriction, re_enqueue_sequence_callback,
+ &task_tracker_, &delayed_task_manager_));
+ CHECK(thread_pools_.back());
+ }
service_thread_ = SchedulerServiceThread::Create(&task_tracker_,
&delayed_task_manager_);
@@ -122,15 +109,9 @@ void TaskSchedulerImpl::Initialize() {
SchedulerThreadPool* TaskSchedulerImpl::GetThreadPoolForTraits(
const TaskTraits& traits) {
- if (traits.with_file_io()) {
- if (traits.priority() == TaskPriority::BACKGROUND)
- return background_file_io_thread_pool_.get();
- return normal_file_io_thread_pool_.get();
- }
-
- if (traits.priority() == TaskPriority::BACKGROUND)
- return background_thread_pool_.get();
- return normal_thread_pool_.get();
+ const size_t index = delegate_->GetThreadPoolIndexForTraits(traits);
+ DCHECK_LT(index, thread_pools_.size());
+ return thread_pools_[index].get();
}
void TaskSchedulerImpl::ReEnqueueSequenceCallback(

Powered by Google App Engine
This is Rietveld 408576698