blob: e01b24f5a15df7fee368250136aa7e3635aff3d8 [file] [log] [blame]
// Copyright 2018 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_WORKER_WORKER_SCHEDULER_PROXY_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_WORKER_WORKER_SCHEDULER_PROXY_H_
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/optional.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_checker.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/scheduler/main_thread/frame_origin_type.h"
#include "third_party/blink/renderer/platform/scheduler/public/frame_or_worker_scheduler.h"
#include "third_party/blink/renderer/platform/wtf/wtf.h"
namespace blink {
namespace scheduler {
class WorkerScheduler;
// Helper class for communication between parent scheduler (may be a frame
// scheduler on the main thread or another woker scheduler on a worker thread)
// and worker scheduler (worker thread).
//
// It's owned by DedicatedWorkerThread and is created and destroyed
// on the parent thread. It's passed to WorkerScheduler during its
// construction. Given that DedicatedWorkerThread object outlives worker thread,
// this class outlives worker thread too.
class PLATFORM_EXPORT WorkerSchedulerProxy
: public FrameOrWorkerScheduler::Observer {
public:
explicit WorkerSchedulerProxy(FrameOrWorkerScheduler* scheduler);
~WorkerSchedulerProxy() override;
void OnWorkerSchedulerCreated(
base::WeakPtr<WorkerScheduler> worker_scheduler);
void OnLifecycleStateChanged(
SchedulingLifecycleState lifecycle_state) override;
// Accessed only during init.
SchedulingLifecycleState lifecycle_state() const {
DCHECK(!initialized_);
return lifecycle_state_;
}
// Accessed only during init.
base::Optional<FrameOriginType> parent_frame_type() const {
DCHECK(!initialized_);
return parent_frame_type_;
}
private:
// Can be accessed only from the worker thread.
base::WeakPtr<WorkerScheduler> worker_scheduler_;
// Const after init on the worker thread.
scoped_refptr<base::SingleThreadTaskRunner> worker_thread_task_runner_;
SchedulingLifecycleState lifecycle_state_ =
SchedulingLifecycleState::kNotThrottled;
std::unique_ptr<FrameOrWorkerScheduler::LifecycleObserverHandle>
throttling_observer_handle_;
bool initialized_ = false;
base::Optional<FrameOriginType> parent_frame_type_;
THREAD_CHECKER(parent_thread_checker_);
DISALLOW_COPY_AND_ASSIGN(WorkerSchedulerProxy);
};
} // namespace scheduler
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_WORKER_WORKER_SCHEDULER_PROXY_H_