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_
11 #include "base/callback.h"
12 #include "cc/raster/task_graph_runner.h"
13 #include "cc/resources/resource_format.h"
16 class ImageDecodeTask
;
21 class CC_EXPORT TileTaskClient
{
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;
30 virtual ~TileTaskClient() {}
33 class CC_EXPORT TileTask
: public Task
{
35 typedef std::vector
<scoped_refptr
<TileTask
>> Vector
;
37 virtual void ScheduleOnOriginThread(TileTaskClient
* client
) = 0;
38 virtual void CompleteOnOriginThread(TileTaskClient
* client
) = 0;
42 bool HasBeenScheduled() const;
46 bool HasCompleted() const;
56 class CC_EXPORT ImageDecodeTask
: public TileTask
{
58 typedef std::vector
<scoped_refptr
<ImageDecodeTask
>> Vector
;
62 ~ImageDecodeTask() override
;
65 class CC_EXPORT RasterTask
: public TileTask
{
67 typedef std::vector
<scoped_refptr
<RasterTask
>> Vector
;
69 const ImageDecodeTask::Vector
& dependencies() const { return dependencies_
; }
72 explicit RasterTask(ImageDecodeTask::Vector
* dependencies
);
73 ~RasterTask() override
;
76 ImageDecodeTask::Vector dependencies_
;
79 // kNumberOfTaskSets must be greater or equal to the number of values in
80 // TileManager::NamedTaskSet.
81 // TODO(reveman): Use template specialization to make it easy for client code to
82 // check at compile time that the number of supported task sets is correct.
83 static const size_t kNumberOfTaskSets
= 3;
84 typedef size_t TaskSet
;
85 typedef std::bitset
<kNumberOfTaskSets
> TaskSetCollection
;
87 class CC_EXPORT TileTaskRunnerClient
{
89 virtual void DidFinishRunningTileTasks(TaskSet task_set
) = 0;
92 virtual ~TileTaskRunnerClient() {}
95 struct CC_EXPORT TileTaskQueue
{
96 struct CC_EXPORT Item
{
97 class TaskComparator
{
99 explicit TaskComparator(const RasterTask
* task
) : task_(task
) {}
101 bool operator()(const Item
& item
) const { return item
.task
== task_
; }
104 const RasterTask
* task_
;
107 typedef std::vector
<Item
> Vector
;
109 Item(RasterTask
* task
, const TaskSetCollection
& task_sets
);
113 TaskSetCollection task_sets
;
119 void Swap(TileTaskQueue
* other
);
125 // This interface can be used to schedule and run tile tasks. The client will
126 // be notified asynchronously when the set of tasks marked as "required for
127 // activation" have finished running, when tasks marked "required for draw"
128 // have finished running, and when all scheduled tasks have finished running.
129 // The client can call CheckForCompletedTasks() at any time to dispatch
130 // pending completion callbacks for all tasks that have finished running.
131 class CC_EXPORT TileTaskRunner
{
133 // Set the client instance to be notified when finished running tasks.
134 virtual void SetClient(TileTaskRunnerClient
* client
) = 0;
136 // Tells the worker pool to shutdown after canceling all previously scheduled
137 // tasks. Reply callbacks are still guaranteed to run when
138 // CheckForCompletedTasks() is called.
139 virtual void Shutdown() = 0;
141 // Schedule running of tile tasks in |queue| and all dependencies.
142 // Previously scheduled tasks that are not in |queue| will be canceled unless
143 // already running. Once scheduled, reply callbacks are guaranteed to run for
144 // all tasks even if they later get canceled by another call to
146 virtual void ScheduleTasks(TileTaskQueue
* queue
) = 0;
148 // Check for completed tasks and dispatch reply callbacks.
149 virtual void CheckForCompletedTasks() = 0;
151 // Returns the format to use for the tiles.
152 virtual ResourceFormat
GetResourceFormat() const = 0;
154 // Determine if the resource requires swizzling.
155 virtual bool GetResourceRequiresSwizzle() const = 0;
158 virtual ~TileTaskRunner() {}
163 #endif // CC_RASTER_TILE_TASK_RUNNER_H_