Delete unused downloads page asset.
[chromium-blink-merge.git] / cc / raster / tile_task_runner.h
blob186ce1fb2a672f8ca13edc652e23022e23f3c47a
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
3 // found in the LICENSE file.
5 #ifndef CC_RASTER_TILE_TASK_RUNNER_H_
6 #define CC_RASTER_TILE_TASK_RUNNER_H_
8 #include <bitset>
9 #include <vector>
11 #include "base/callback.h"
12 #include "cc/raster/task_graph_runner.h"
13 #include "cc/resources/resource_format.h"
15 namespace cc {
16 class ImageDecodeTask;
17 class RasterTask;
18 class Resource;
19 class RasterBuffer;
21 class CC_EXPORT TileTaskClient {
22 public:
23 virtual scoped_ptr<RasterBuffer> AcquireBufferForRaster(
24 const Resource* resource,
25 uint64_t resource_content_id,
26 uint64_t previous_content_id) = 0;
27 virtual void ReleaseBufferForRaster(scoped_ptr<RasterBuffer> buffer) = 0;
29 protected:
30 virtual ~TileTaskClient() {}
33 class CC_EXPORT TileTask : public Task {
34 public:
35 typedef std::vector<scoped_refptr<TileTask>> Vector;
37 virtual void ScheduleOnOriginThread(TileTaskClient* client) = 0;
38 virtual void CompleteOnOriginThread(TileTaskClient* client) = 0;
39 virtual void RunReplyOnOriginThread() = 0;
41 // Type-checking downcast routines.
42 virtual ImageDecodeTask* AsImageDecodeTask();
43 virtual RasterTask* AsRasterTask();
45 void WillSchedule();
46 void DidSchedule();
47 bool HasBeenScheduled() const;
49 void WillComplete();
50 void DidComplete();
51 bool HasCompleted() const;
53 protected:
54 TileTask();
55 ~TileTask() override;
57 bool did_schedule_;
58 bool did_complete_;
61 class CC_EXPORT ImageDecodeTask : public TileTask {
62 public:
63 typedef std::vector<scoped_refptr<ImageDecodeTask>> Vector;
65 // Overridden from TileTask:
66 ImageDecodeTask* AsImageDecodeTask() override;
68 protected:
69 ImageDecodeTask();
70 ~ImageDecodeTask() override;
73 class CC_EXPORT RasterTask : public TileTask {
74 public:
75 typedef std::vector<scoped_refptr<RasterTask>> Vector;
77 // Overridden from TileTask:
78 RasterTask* AsRasterTask() override;
80 const Resource* resource() const { return resource_; }
81 const ImageDecodeTask::Vector& dependencies() const { return dependencies_; }
83 protected:
84 RasterTask(const Resource* resource, ImageDecodeTask::Vector* dependencies);
85 ~RasterTask() override;
87 private:
88 const Resource* resource_;
89 ImageDecodeTask::Vector dependencies_;
92 // kNumberOfTaskSets must be greater or equal to the number of values in
93 // TileManager::NamedTaskSet.
94 // TODO(reveman): Use template specialization to make it easy for client code to
95 // check at compile time that the number of supported task sets is correct.
96 static const size_t kNumberOfTaskSets = 3;
97 typedef size_t TaskSet;
98 typedef std::bitset<kNumberOfTaskSets> TaskSetCollection;
100 class CC_EXPORT TileTaskRunnerClient {
101 public:
102 virtual void DidFinishRunningTileTasks(TaskSet task_set) = 0;
104 protected:
105 virtual ~TileTaskRunnerClient() {}
108 struct CC_EXPORT TileTaskQueue {
109 struct CC_EXPORT Item {
110 class TaskComparator {
111 public:
112 explicit TaskComparator(const RasterTask* task) : task_(task) {}
114 bool operator()(const Item& item) const { return item.task == task_; }
116 private:
117 const RasterTask* task_;
120 typedef std::vector<Item> Vector;
122 Item(RasterTask* task, const TaskSetCollection& task_sets);
123 ~Item();
125 RasterTask* task;
126 TaskSetCollection task_sets;
129 TileTaskQueue();
130 ~TileTaskQueue();
132 void Swap(TileTaskQueue* other);
133 void Reset();
135 Item::Vector items;
138 // This interface can be used to schedule and run tile tasks. The client will
139 // be notified asynchronously when the set of tasks marked as "required for
140 // activation" have finished running, when tasks marked "required for draw"
141 // have finished running, and when all scheduled tasks have finished running.
142 // The client can call CheckForCompletedTasks() at any time to dispatch
143 // pending completion callbacks for all tasks that have finished running.
144 class CC_EXPORT TileTaskRunner {
145 public:
146 // Set the client instance to be notified when finished running tasks.
147 virtual void SetClient(TileTaskRunnerClient* client) = 0;
149 // Tells the worker pool to shutdown after canceling all previously scheduled
150 // tasks. Reply callbacks are still guaranteed to run when
151 // CheckForCompletedTasks() is called.
152 virtual void Shutdown() = 0;
154 // Schedule running of tile tasks in |queue| and all dependencies.
155 // Previously scheduled tasks that are not in |queue| will be canceled unless
156 // already running. Once scheduled, reply callbacks are guaranteed to run for
157 // all tasks even if they later get canceled by another call to
158 // ScheduleTasks().
159 virtual void ScheduleTasks(TileTaskQueue* queue) = 0;
161 // Check for completed tasks and dispatch reply callbacks.
162 virtual void CheckForCompletedTasks() = 0;
164 // Returns the format to use for the tiles.
165 virtual ResourceFormat GetResourceFormat() const = 0;
167 // Determine if the resource requires swizzling.
168 virtual bool GetResourceRequiresSwizzle() const = 0;
170 protected:
171 virtual ~TileTaskRunner() {}
174 } // namespace cc
176 #endif // CC_RASTER_TILE_TASK_RUNNER_H_