OLD | NEW |
---|---|
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_WORK_QUEUE_H_ | 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_WORK_QUEUE_H_ |
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_WORK_QUEUE_H_ | 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_WORK_QUEUE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <set> | 10 #include <set> |
11 | 11 |
12 #include "base/trace_event/trace_event.h" | 12 #include "base/trace_event/trace_event.h" |
13 #include "base/trace_event/trace_event_argument.h" | 13 #include "base/trace_event/trace_event_argument.h" |
14 #include "platform/scheduler/base/enqueue_order.h" | 14 #include "platform/scheduler/base/enqueue_order.h" |
15 #include "platform/scheduler/base/task_queue_impl.h" | 15 #include "platform/scheduler/base/task_queue_impl.h" |
16 | 16 |
17 namespace blink { | 17 namespace blink { |
18 namespace scheduler { | 18 namespace scheduler { |
19 namespace internal { | 19 namespace internal { |
20 class WorkQueueSets; | 20 class WorkQueueSets; |
21 | 21 |
22 // This class keeps track of immediate and delayed tasks which are due to run | |
23 // now. It interfaces deeply with WorkQueueSets which keeps track of which queue | |
24 // (with a given priority) contains the oldest task. | |
22 class BLINK_PLATFORM_EXPORT WorkQueue { | 25 class BLINK_PLATFORM_EXPORT WorkQueue { |
23 public: | 26 public: |
24 WorkQueue(TaskQueueImpl* task_queue, const char* name); | 27 WorkQueue(TaskQueueImpl* task_queue, |
28 const char* name, | |
29 TaskQueueImpl::Task::ComparatorFn queue_comparator); | |
25 ~WorkQueue(); | 30 ~WorkQueue(); |
26 | 31 |
27 // Associates this work queue with the given work queue sets. This must be | 32 // Associates this work queue with the given work queue sets. This must be |
28 // called before any tasks can be inserted into this work queue. | 33 // called before any tasks can be inserted into this work queue. |
29 void AssignToWorkQueueSets(WorkQueueSets* work_queue_sets); | 34 void AssignToWorkQueueSets(WorkQueueSets* work_queue_sets); |
30 | 35 |
31 // Assigns the current set index. | 36 // Assigns the current set index. |
32 void AssignSetIndex(size_t work_queue_set_index); | 37 void AssignSetIndex(size_t work_queue_set_index); |
33 | 38 |
34 void AsValueInto(base::trace_event::TracedValue* state) const; | 39 void AsValueInto(base::trace_event::TracedValue* state) const; |
35 | 40 |
36 // Clears the |work_queue_|. | 41 // Clears the |work_queue_|. |
37 void Clear(); | 42 void Clear(); |
38 | 43 |
39 // returns true if the |work_queue_| is empty. | 44 // returns true if the |work_queue_| is empty. |
40 bool Empty() const { return work_queue_.empty(); } | 45 bool Empty() const { return work_queue_.empty(); } |
41 | 46 |
42 // If the |work_queue_| isn't empty, |enqueue_order| gets set to the enqueue | 47 // If the |work_queue_| isn't empty, |enqueue_order| gets set to the enqueue |
43 // order of the front task and the function returns true. Otherwise the | 48 // order of the front task and the function returns true. Otherwise the |
44 // function returns false. | 49 // function returns false. |
45 bool GetFrontTaskEnqueueOrder(EnqueueOrder* enqueue_order) const; | 50 bool GetFrontTaskEnqueueOrder(EnqueueOrder* enqueue_order) const; |
46 | 51 |
47 // Returns the first task in this queue or null if the queue is empty. | 52 // Returns the first task in this queue or null if the queue is empty. |
48 const TaskQueueImpl::Task* GetFrontTask() const; | 53 const TaskQueueImpl::Task* GetFrontTask() const; |
49 | 54 |
50 // Pushes the task onto the |work_queue_| and informs the WorkQueueSets if | 55 // Pushes the task onto the |work_queue_| and informs the WorkQueueSets if |
51 // the head changed. | 56 // the head changed. |
52 void Push(TaskQueueImpl::Task task); | 57 void Push(TaskQueueImpl::Task task); |
53 | 58 |
54 // Pushes the task onto the |work_queue_|, sets the |enqueue_order| and | 59 // Removes a cancelled task from the |work_queue_|. Note |key| isn't required |
55 // informs the WorkQueueSets if the head changed. | 60 // to be the origional task posted, rather it must match the key of the task |
haraken
2016/08/19 10:42:51
original
haraken
2016/08/19 10:42:51
I don't fully get the meaning of this comment. Wha
alex clarke (OOO till 29th)
2016/08/19 11:02:59
The handle doesn't contain all the information in
alex clarke (OOO till 29th)
2016/08/19 11:02:59
Done.
| |
56 void PushAndSetEnqueueOrder(TaskQueueImpl::Task task, | 61 // posted. |
57 EnqueueOrder enqueue_order); | 62 bool CancelTask(const TaskQueueImpl::Task& key); |
63 | |
64 // Returns true if |work_queue_| contains a task matching |key|. | |
65 bool IsTaskPending(const TaskQueueImpl::Task& key) const; | |
58 | 66 |
59 // Swap the |work_queue_| with |incoming_queue| and informs the | 67 // Swap the |work_queue_| with |incoming_queue| and informs the |
60 // WorkQueueSets if the head changed. Assumes |task_queue_->any_thread_lock_| | 68 // WorkQueueSets if the head changed. Assumes |task_queue_->any_thread_lock_| |
61 // is locked. | 69 // is locked. |
62 void SwapLocked(std::queue<TaskQueueImpl::Task>& incoming_queue); | 70 void SwapLocked(TaskQueueImpl::ComparatorQueue& incoming_queue); |
63 | 71 |
64 size_t Size() const { return work_queue_.size(); } | 72 size_t Size() const { return work_queue_.size(); } |
65 | 73 |
66 // Pulls a task off the |work_queue_| and informs the WorkQueueSets. | 74 // Pulls a task off the |work_queue_| and informs the WorkQueueSets. |
67 TaskQueueImpl::Task TakeTaskFromWorkQueue(); | 75 TaskQueueImpl::Task TakeTaskFromWorkQueue(); |
68 | 76 |
69 const char* name() const { return name_; } | 77 const char* name() const { return name_; } |
70 | 78 |
71 TaskQueueImpl* task_queue() const { return task_queue_; } | 79 TaskQueueImpl* task_queue() const { return task_queue_; } |
72 | 80 |
73 WorkQueueSets* work_queue_sets() const { return work_queue_sets_; } | 81 WorkQueueSets* work_queue_sets() const { return work_queue_sets_; } |
74 | 82 |
75 size_t work_queue_set_index() const { return work_queue_set_index_; } | 83 size_t work_queue_set_index() const { return work_queue_set_index_; } |
76 | 84 |
77 // Test support function. This should not be used in production code. | 85 // Test support function. This should not be used in production code. |
78 void PopTaskForTest(); | 86 void PopTaskForTest(); |
79 | 87 |
80 // Returns true if the front task in this queue has an older enqueue order | 88 // Returns true if the front task in this queue has an older enqueue order |
81 // than the front task of |other_queue|. Both queue are assumed to be | 89 // than the front task of |other_queue|. Both queue are assumed to be |
82 // non-empty. | 90 // non-empty. |
83 bool ShouldRunBefore(const WorkQueue* other_queue) const; | 91 bool ShouldRunBefore(const WorkQueue* other_queue) const; |
84 | 92 |
85 private: | 93 private: |
86 std::queue<TaskQueueImpl::Task> work_queue_; | 94 TaskQueueImpl::ComparatorQueue work_queue_; |
87 WorkQueueSets* work_queue_sets_; // NOT OWNED. | 95 WorkQueueSets* work_queue_sets_; // NOT OWNED. |
88 TaskQueueImpl* task_queue_; // NOT OWNED. | 96 TaskQueueImpl* task_queue_; // NOT OWNED. |
89 size_t work_queue_set_index_; | 97 size_t work_queue_set_index_; |
90 const char* name_; | 98 const char* name_; |
91 | 99 |
92 DISALLOW_COPY_AND_ASSIGN(WorkQueue); | 100 DISALLOW_COPY_AND_ASSIGN(WorkQueue); |
93 }; | 101 }; |
94 | 102 |
95 } // namespace internal | 103 } // namespace internal |
96 } // namespace scheduler | 104 } // namespace scheduler |
97 } // namespace blink | 105 } // namespace blink |
98 | 106 |
99 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_WORK_QUEUE_H_ | 107 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_BASE_WORK_QUEUE_H_ |
OLD | NEW |