aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DMTask.h
blob: 744fd6bb9c0634fcee000e09960ea1eadfa91e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef DMTask_DEFINED
#define DMTask_DEFINED

#include "DMReporter.h"
#include "SkRunnable.h"
#include "SkThreadPool.h"

// DM will run() these tasks on one of two threadpools, depending on the result
// of usesGpu().  The subclasses can call fail() to mark this task as failed,
// or make any number of spawnChild() calls to kick off dependent tasks.
//
// Task deletes itself when run.

namespace DM {

class TaskRunner;

class Task : public SkRunnable {
public:
    Task(Reporter* reporter, TaskRunner* taskRunner);
    Task(const Task& that);
    virtual ~Task();

    void run();

    virtual void draw() = 0;
    virtual bool usesGpu() const = 0;
    virtual bool shouldSkip() const = 0;
    virtual SkString name() const = 0;

protected:
    void spawnChild(Task* task);
    void fail();

private:
    // Both unowned.
    Reporter* fReporter;
    TaskRunner* fTaskRunner;
};

}  // namespace DM

#endif  // DMTask_DEFINED