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

Side by Side Diff: third_party/WebKit/Source/platform/scheduler/base/time_domain.h

Issue 2546423002: [Try # 3] Scheduler refactoring to virtually eliminate redundant DoWorks (Closed)
Patch Set: Fix lock order inversion Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TIME_DOMAIN_H_ 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TIME_DOMAIN_H_
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TIME_DOMAIN_H_ 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TIME_DOMAIN_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 virtual ~TimeDomain(); 55 virtual ~TimeDomain();
56 56
57 // Returns a LazyNow that evaluate this TimeDomain's Now. Can be called from 57 // Returns a LazyNow that evaluate this TimeDomain's Now. Can be called from
58 // any thread. 58 // any thread.
59 // TODO(alexclarke): Make this main thread only. 59 // TODO(alexclarke): Make this main thread only.
60 virtual LazyNow CreateLazyNow() const = 0; 60 virtual LazyNow CreateLazyNow() const = 0;
61 61
62 // Evaluate this TimeDomain's Now. Can be called from any thread. 62 // Evaluate this TimeDomain's Now. Can be called from any thread.
63 virtual base::TimeTicks Now() const = 0; 63 virtual base::TimeTicks Now() const = 0;
64 64
65 // Some TimeDomains support virtual time, this method tells us to advance time 65 // Computes the delay until the next task the TimeDomain is aware of, if any.
66 // if possible and return true if time was advanced. 66 // Note virtual time domains may return base::TimeDelta() if they have any
67 virtual bool MaybeAdvanceTime() = 0; 67 // tasks that are eligible to run.
68 virtual base::Optional<base::TimeDelta> DelayTillNextTask(
69 LazyNow* lazy_now) = 0;
68 70
69 // Returns the name of this time domain for tracing. 71 // Returns the name of this time domain for tracing.
70 virtual const char* GetName() const = 0; 72 virtual const char* GetName() const = 0;
71 73
72 // If there is a scheduled delayed task, |out_time| is set to the scheduled 74 // If there is a scheduled delayed task, |out_time| is set to the scheduled
73 // runtime for the next one and it returns true. Returns false otherwise. 75 // runtime for the next one and it returns true. Returns false otherwise.
74 bool NextScheduledRunTime(base::TimeTicks* out_time) const; 76 bool NextScheduledRunTime(base::TimeTicks* out_time) const;
75 77
76 protected: 78 protected:
77 friend class internal::TaskQueueImpl; 79 friend class internal::TaskQueueImpl;
78 friend class TaskQueueManager; 80 friend class TaskQueueManager;
79 81
80 void AsValueInto(base::trace_event::TracedValue* state) const; 82 void AsValueInto(base::trace_event::TracedValue* state) const;
81 83
82 // Migrates |queue| from this time domain to |destination_time_domain|. 84 // Migrates |queue| from this time domain to |destination_time_domain|.
83 // Main-thread only. 85 // Main-thread only.
84 void MigrateQueue(internal::TaskQueueImpl* queue, 86 void MigrateQueue(internal::TaskQueueImpl* queue,
85 TimeDomain* destination_time_domain); 87 TimeDomain* destination_time_domain);
86 88
87 // If there is a scheduled delayed task, |out_task_queue| is set to the queue 89 // If there is a scheduled delayed task, |out_task_queue| is set to the queue
88 // the next task was posted to and it returns true. Returns false otherwise. 90 // the next task was posted to and it returns true. Returns false otherwise.
89 bool NextScheduledTaskQueue(TaskQueue** out_task_queue) const; 91 bool NextScheduledTaskQueue(TaskQueue** out_task_queue) const;
90 92
91 // Adds |queue| to the set of task queues that UpdateWorkQueues calls
92 // UpdateWorkQueue on.
93 void RegisterAsUpdatableTaskQueue(internal::TaskQueueImpl* queue);
94
95 // Schedules a call to TaskQueueImpl::WakeUpForDelayedWork when this 93 // Schedules a call to TaskQueueImpl::WakeUpForDelayedWork when this
96 // TimeDomain reaches |delayed_run_time|. This supersedes any previously 94 // TimeDomain reaches |delayed_run_time|. This supersedes any previously
97 // registered wakeup for |queue|. 95 // registered wakeup for |queue|.
98 void ScheduleDelayedWork(internal::TaskQueueImpl* queue, 96 void ScheduleDelayedWork(internal::TaskQueueImpl* queue,
99 base::TimeTicks delayed_run_time, 97 base::TimeTicks delayed_run_time,
100 base::TimeTicks now); 98 base::TimeTicks now);
101 99
102 // Registers the |queue|. 100 // Registers the |queue|.
103 void RegisterQueue(internal::TaskQueueImpl* queue); 101 void RegisterQueue(internal::TaskQueueImpl* queue);
104 102
105 // Removes |queue| from the set of task queues that UpdateWorkQueues calls
106 // UpdateWorkQueue on. Returns true if |queue| was updatable.
107 bool UnregisterAsUpdatableTaskQueue(internal::TaskQueueImpl* queue);
108
109 // Removes |queue| from all internal data structures. 103 // Removes |queue| from all internal data structures.
110 void UnregisterQueue(internal::TaskQueueImpl* queue); 104 void UnregisterQueue(internal::TaskQueueImpl* queue);
111 105
112 // Updates active queues associated with this TimeDomain. 106 // Tells the time domain that |queue| went from having no immediate work to
113 void UpdateWorkQueues(LazyNow lazy_now); 107 // having some.
108 void OnQueueHasImmediateWork(internal::TaskQueueImpl* queue);
114 109
115 // Called by the TaskQueueManager when the TimeDomain is registered. 110 // Called by the TaskQueueManager when the TimeDomain is registered.
116 virtual void OnRegisterWithTaskQueueManager( 111 virtual void OnRegisterWithTaskQueueManager(
117 TaskQueueManager* task_queue_manager) = 0; 112 TaskQueueManager* task_queue_manager) = 0;
118 113
119 // The implementaion will secedule task processing to run with |delay| with 114 // The implementaion will secedule task processing to run with |delay| with
120 // respect to the TimeDomain's time source. Always called on the main thread. 115 // respect to the TimeDomain's time source. Always called on the main thread.
121 // NOTE this is only called by ScheduleDelayedWork if the scheduled runtime 116 // NOTE this is only called by ScheduleDelayedWork if the scheduled runtime
122 // is sooner than any previously sheduled work or if there is no other 117 // is sooner than any previously sheduled work or if there is no other
123 // scheduled work. 118 // scheduled work.
124 virtual void RequestWakeup(base::TimeTicks now, base::TimeDelta delay) = 0; 119 virtual void RequestWakeup(base::TimeTicks now, base::TimeDelta delay) = 0;
125 120
126 // For implementation specific tracing. 121 // For implementation specific tracing.
127 virtual void AsValueIntoInternal( 122 virtual void AsValueIntoInternal(
128 base::trace_event::TracedValue* state) const = 0; 123 base::trace_event::TracedValue* state) const = 0;
129 124
130 // Call TaskQueueImpl::UpdateDelayedWorkQueue for each queue where the delay 125 // Call TaskQueueImpl::UpdateDelayedWorkQueue for each queue where the delay
131 // has elapsed. 126 // has elapsed.
132 void WakeupReadyDelayedQueues(LazyNow* lazy_now); 127 void WakeupReadyDelayedQueues(LazyNow* lazy_now);
133 128
134 size_t NumberOfScheduledWakeups() const { 129 size_t NumberOfScheduledWakeups() const {
135 return delayed_wakeup_queue_.size(); 130 return delayed_wakeup_queue_.size();
136 } 131 }
137 132
138 private: 133 private:
139 void MoveNewlyUpdatableQueuesIntoUpdatableQueueSet();
140
141 struct DelayedWakeup { 134 struct DelayedWakeup {
142 base::TimeTicks time; 135 base::TimeTicks time;
143 internal::TaskQueueImpl* queue; 136 internal::TaskQueueImpl* queue;
144 137
145 bool operator<=(const DelayedWakeup& other) const { 138 bool operator<=(const DelayedWakeup& other) const {
146 if (time == other.time) 139 if (time == other.time)
147 return queue <= other.queue; 140 return queue <= other.queue;
148 return time < other.time; 141 return time < other.time;
149 } 142 }
150 143
151 void SetHeapHandle(HeapHandle handle) { 144 void SetHeapHandle(HeapHandle handle) {
152 DCHECK(handle.IsValid()); 145 DCHECK(handle.IsValid());
153 queue->set_heap_handle(handle); 146 queue->set_heap_handle(handle);
154 } 147 }
155 148
156 void ClearHeapHandle() { 149 void ClearHeapHandle() {
157 DCHECK(queue->heap_handle().IsValid()); 150 DCHECK(queue->heap_handle().IsValid());
158 queue->set_heap_handle(HeapHandle()); 151 queue->set_heap_handle(HeapHandle());
159 152
160 DCHECK_NE(queue->scheduled_time_domain_wakeup(), base::TimeTicks()); 153 DCHECK_NE(queue->scheduled_time_domain_wakeup(), base::TimeTicks());
161 queue->set_scheduled_time_domain_wakeup(base::TimeTicks()); 154 queue->set_scheduled_time_domain_wakeup(base::TimeTicks());
162 } 155 }
163 }; 156 };
164 157
165 IntrusiveHeap<DelayedWakeup> delayed_wakeup_queue_; 158 IntrusiveHeap<DelayedWakeup> delayed_wakeup_queue_;
166 159
167 // This lock guards only |newly_updatable_|. It's not expected to be heavily
168 // contended.
169 base::Lock newly_updatable_lock_;
170 std::vector<internal::TaskQueueImpl*> newly_updatable_;
171
172 // Set of task queues with avaliable work on the incoming queue. This should
173 // only be accessed from the main thread.
174 std::set<internal::TaskQueueImpl*> updatable_queue_set_;
175
176 Observer* observer_; // NOT OWNED. 160 Observer* observer_; // NOT OWNED.
177 161
178 base::ThreadChecker main_thread_checker_; 162 base::ThreadChecker main_thread_checker_;
179 163
180 DISALLOW_COPY_AND_ASSIGN(TimeDomain); 164 DISALLOW_COPY_AND_ASSIGN(TimeDomain);
181 }; 165 };
182 166
183 } // namespace scheduler 167 } // namespace scheduler
184 } // namespace blink 168 } // namespace blink
185 169
186 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TIME_DOMAIN_H_ 170 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_TIME_DOMAIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698