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

Side by Side Diff: cc/raster/task_graph_runner.h

Issue 1787453003: Test dynamic priorities on android (1F + 1B) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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
« no previous file with comments | « base/threading/simple_thread.cc ('k') | cc/raster/task_graph_runner.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <vector> 13 #include <vector>
14 14
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/threading/simple_thread.h"
19 #include "base/time/time.h"
18 #include "cc/base/cc_export.h" 20 #include "cc/base/cc_export.h"
21 #include "cc/raster/task_category.h"
19 22
20 namespace cc { 23 namespace cc {
21 24
22 class TaskGraphRunner; 25 class TaskGraphRunner;
23 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
31 // Subclasses should implement this method. RunOnWorkerThread may be called 34 // Subclasses should implement this method. RunOnWorkerThread may be called
32 // on any thread, and subclasses are responsible for locking and thread 35 // on any thread, and subclasses are responsible for locking and thread
33 // safety. 36 // safety.
34 virtual void RunOnWorkerThread() = 0; 37 virtual void RunOnWorkerThread() = 0;
35 38
39 virtual bool IsRasterTask() { return false; }
40
41 void SetRunner(base::TestSimpleThread* runner) { runner_ = runner; }
42 base::TestSimpleThread* GetRunner() { return runner_; }
43
36 void WillRun(); 44 void WillRun();
37 void DidRun(); 45 void DidRun();
38 bool HasFinishedRunning() const; 46 bool HasFinishedRunning() const;
39 47
40 protected: 48 protected:
41 friend class base::RefCountedThreadSafe<Task>; 49 friend class base::RefCountedThreadSafe<Task>;
42 50
43 Task(); 51 Task();
44 virtual ~Task(); 52 virtual ~Task();
45 53
46 bool will_run_; 54 bool will_run_;
47 bool did_run_; 55 bool did_run_;
56
57 base::TestSimpleThread* runner_;
48 }; 58 };
49 59
50 // A task dependency graph describes the order in which to execute a set 60 // 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 61 // 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 62 // 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 63 // 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 64 // (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 65 // implementation and its consumer to determine the meaning (if any) of a
56 // category. A TaskGraphRunner implementation may chose to prioritize certain 66 // category. A TaskGraphRunner implementation may chose to prioritize certain
57 // categories over others, regardless of the individual priorities of tasks. 67 // categories over others, regardless of the individual priorities of tasks.
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 private: 227 private:
218 TaskGraph* graph_; 228 TaskGraph* graph_;
219 const Task* task_; 229 const Task* task_;
220 size_t current_index_; 230 size_t current_index_;
221 TaskGraph::Node* current_node_; 231 TaskGraph::Node* current_node_;
222 }; 232 };
223 233
224 } // namespace cc 234 } // namespace cc
225 235
226 #endif // CC_RASTER_TASK_GRAPH_RUNNER_H_ 236 #endif // CC_RASTER_TASK_GRAPH_RUNNER_H_
OLDNEW
« no previous file with comments | « base/threading/simple_thread.cc ('k') | cc/raster/task_graph_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698