OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CC_RASTER_TASK_GRAPH_RUNNER_H_ | 5 #ifndef CC_RASTER_TASK_GRAPH_RUNNER_H_ |
6 #define CC_RASTER_TASK_GRAPH_RUNNER_H_ | 6 #define CC_RASTER_TASK_GRAPH_RUNNER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <algorithm> | 11 #include <algorithm> |
12 #include <map> | 12 #include <map> |
13 #include <memory> | 13 #include <memory> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
18 #include "cc/base/cc_export.h" | 18 #include "cc/base/cc_export.h" |
19 | 19 |
20 namespace cc { | 20 namespace cc { |
21 | 21 |
22 class TaskGraphRunner; | 22 class TaskGraphRunner; |
23 | 23 |
24 typedef uint32_t TaskTypeId; | |
25 const TaskTypeId kDefaultTaskTypeId = 0; | |
26 | |
24 // A task which can be run by a TaskGraphRunner. To run a Task, it should be | 27 // A task which can be run by a TaskGraphRunner. To run a Task, it should be |
25 // inserted into a TaskGraph, which can then be scheduled on the | 28 // inserted into a TaskGraph, which can then be scheduled on the |
26 // TaskGraphRunner. | 29 // TaskGraphRunner. |
27 class CC_EXPORT Task : public base::RefCountedThreadSafe<Task> { | 30 class CC_EXPORT Task : public base::RefCountedThreadSafe<Task> { |
28 public: | 31 public: |
29 typedef std::vector<scoped_refptr<Task>> Vector; | 32 typedef std::vector<scoped_refptr<Task>> Vector; |
30 | 33 |
34 TaskTypeId GetTaskTypeId(); | |
prashant.n
2016/04/11 14:17:48
This looks little wierd. But I don't see any other
| |
35 | |
31 // Subclasses should implement this method. RunOnWorkerThread may be called | 36 // Subclasses should implement this method. RunOnWorkerThread may be called |
32 // on any thread, and subclasses are responsible for locking and thread | 37 // on any thread, and subclasses are responsible for locking and thread |
33 // safety. | 38 // safety. |
34 virtual void RunOnWorkerThread() = 0; | 39 virtual void RunOnWorkerThread() = 0; |
35 | 40 |
36 void WillRun(); | 41 void WillRun(); |
37 void DidRun(); | 42 void DidRun(); |
38 bool HasFinishedRunning() const; | 43 bool HasFinishedRunning() const; |
39 | 44 |
40 protected: | 45 protected: |
41 friend class base::RefCountedThreadSafe<Task>; | 46 friend class base::RefCountedThreadSafe<Task>; |
42 | 47 |
48 void SetTaskTypeId(TaskTypeId type_id); | |
49 | |
43 Task(); | 50 Task(); |
44 virtual ~Task(); | 51 virtual ~Task(); |
45 | 52 |
53 TaskTypeId type_id_; | |
46 bool will_run_; | 54 bool will_run_; |
47 bool did_run_; | 55 bool did_run_; |
48 }; | 56 }; |
49 | 57 |
50 // A task dependency graph describes the order in which to execute a set | 58 // A task dependency graph describes the order in which to execute a set |
51 // of tasks. Dependencies are represented as edges. Each node is assigned | 59 // of tasks. Dependencies are represented as edges. Each node is assigned |
52 // a category, a priority and a run count that matches the number of | 60 // a category, a priority and a run count that matches the number of |
53 // dependencies. Priority range from 0 (most favorable scheduling) to UINT16_MAX | 61 // dependencies. Priority range from 0 (most favorable scheduling) to UINT16_MAX |
54 // (least favorable). Categories range from 0 to UINT16_MAX. It is up to the | 62 // (least favorable). Categories range from 0 to UINT16_MAX. It is up to the |
55 // implementation and its consumer to determine the meaning (if any) of a | 63 // implementation and its consumer to determine the meaning (if any) of a |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
217 private: | 225 private: |
218 TaskGraph* graph_; | 226 TaskGraph* graph_; |
219 const Task* task_; | 227 const Task* task_; |
220 size_t current_index_; | 228 size_t current_index_; |
221 TaskGraph::Node* current_node_; | 229 TaskGraph::Node* current_node_; |
222 }; | 230 }; |
223 | 231 |
224 } // namespace cc | 232 } // namespace cc |
225 | 233 |
226 #endif // CC_RASTER_TASK_GRAPH_RUNNER_H_ | 234 #endif // CC_RASTER_TASK_GRAPH_RUNNER_H_ |
OLD | NEW |