OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_LOAD_TRAC
KER_H_ |
| 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_LOAD_TRAC
KER_H_ |
| 7 |
| 8 #include "base/callback.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/time/time.h" |
| 11 #include "public/platform/WebCommon.h" |
| 12 |
| 13 namespace blink { |
| 14 namespace scheduler { |
| 15 |
| 16 // This class tracks thread load level, i.e. percentage of wall time spent |
| 17 // running tasks. |
| 18 // In order to avoid bias it reports load level at regular intervals. |
| 19 class BLINK_PLATFORM_EXPORT ThreadLoadTracker { |
| 20 public: |
| 21 // Callback is called with (current_time, load_level) parameters. |
| 22 using Callback = base::Callback<void(base::TimeTicks, double)>; |
| 23 |
| 24 ThreadLoadTracker(base::TimeTicks now, const Callback& callback); |
| 25 ~ThreadLoadTracker(); |
| 26 |
| 27 void Pause(base::TimeTicks now); |
| 28 void Resume(base::TimeTicks now); |
| 29 |
| 30 void RecordTaskTime(base::TimeTicks start_time, base::TimeTicks end_time); |
| 31 |
| 32 void RecordIdle(base::TimeTicks now); |
| 33 |
| 34 // TODO(altimin): Count wakeups. |
| 35 |
| 36 private: |
| 37 enum class ThreadState { ACTIVE, PAUSED }; |
| 38 |
| 39 enum class TaskState { TASK_RUNNING, IDLE }; |
| 40 |
| 41 // This function advances |time_| to |now|, calling |callback_| |
| 42 // in the process (multiple times if needed). |
| 43 void Advance(base::TimeTicks now, TaskState task_state); |
| 44 |
| 45 double Load(); |
| 46 |
| 47 // |time_| is the last timestamp LoadTracker knows about. |
| 48 base::TimeTicks time_; |
| 49 base::TimeTicks next_reporting_time_; |
| 50 |
| 51 ThreadState thread_state_; |
| 52 base::TimeTicks last_state_change_time_; |
| 53 |
| 54 base::TimeDelta total_time_; |
| 55 base::TimeDelta total_runtime_; |
| 56 |
| 57 // Start reporting values after |waiting_period_|. |
| 58 base::TimeDelta waiting_period_; |
| 59 base::TimeDelta reporting_interval_; |
| 60 |
| 61 Callback callback_; |
| 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(ThreadLoadTracker); |
| 64 }; |
| 65 |
| 66 } // namespace scheduler |
| 67 } // namespace blink |
| 68 |
| 69 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_RENDERER_LOAD_T
RACKER_H_ |
OLD | NEW |