2013-10-16 13:02:15 +00:00
|
|
|
#ifndef DMTask_DEFINED
|
|
|
|
#define DMTask_DEFINED
|
|
|
|
|
|
|
|
#include "DMReporter.h"
|
2014-03-26 21:26:15 +00:00
|
|
|
#include "DMGpuSupport.h"
|
2013-10-16 13:02:15 +00:00
|
|
|
#include "SkRunnable.h"
|
2014-03-03 15:44:56 +00:00
|
|
|
#include "SkTime.h"
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2014-02-28 20:31:31 +00:00
|
|
|
// DM will run() these tasks on one of two threadpools.
|
|
|
|
// Subclasses can call fail() to mark this task as failed, or make any number of spawnChild() calls
|
|
|
|
// to kick off dependent tasks.
|
2013-10-16 13:02:15 +00:00
|
|
|
//
|
2014-02-28 20:31:31 +00:00
|
|
|
// Tasks delete themselves when run.
|
2013-10-16 13:02:15 +00:00
|
|
|
|
|
|
|
namespace DM {
|
|
|
|
|
|
|
|
class TaskRunner;
|
|
|
|
|
2014-02-28 20:31:31 +00:00
|
|
|
class CpuTask;
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2014-02-28 20:31:31 +00:00
|
|
|
class Task {
|
|
|
|
public:
|
2013-10-16 13:02:15 +00:00
|
|
|
virtual bool shouldSkip() const = 0;
|
|
|
|
virtual SkString name() const = 0;
|
|
|
|
|
2013-12-02 13:50:38 +00:00
|
|
|
// Returns the number of parents above this task.
|
|
|
|
// Top-level tasks return 0, their children 1, and so on.
|
|
|
|
int depth() const { return fDepth; }
|
|
|
|
|
2013-10-16 13:02:15 +00:00
|
|
|
protected:
|
2014-02-28 20:31:31 +00:00
|
|
|
Task(Reporter* reporter, TaskRunner* taskRunner);
|
|
|
|
Task(const Task& parent);
|
|
|
|
virtual ~Task() {}
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2014-03-03 15:44:56 +00:00
|
|
|
void start();
|
2014-02-28 20:31:31 +00:00
|
|
|
void fail(const char* msg = NULL);
|
|
|
|
void finish();
|
2014-03-03 15:44:56 +00:00
|
|
|
|
2014-02-28 20:31:31 +00:00
|
|
|
void spawnChild(CpuTask* task); // For now we don't allow GPU child tasks.
|
2014-02-26 23:01:57 +00:00
|
|
|
|
2013-10-16 13:02:15 +00:00
|
|
|
private:
|
2014-02-28 20:31:31 +00:00
|
|
|
Reporter* fReporter; // Unowned.
|
|
|
|
TaskRunner* fTaskRunner; // Unowned.
|
2013-12-02 13:50:38 +00:00
|
|
|
int fDepth;
|
2014-03-03 15:44:56 +00:00
|
|
|
SkMSec fStart;
|
2014-02-28 20:31:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CpuTask : public Task, public SkRunnable {
|
|
|
|
public:
|
|
|
|
CpuTask(Reporter* reporter, TaskRunner* taskRunner);
|
|
|
|
CpuTask(const Task& parent);
|
|
|
|
virtual ~CpuTask() {}
|
|
|
|
|
|
|
|
void run() SK_OVERRIDE;
|
|
|
|
virtual void draw() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class GpuTask : public Task, public SkTRunnable<GrContextFactory> {
|
|
|
|
public:
|
|
|
|
GpuTask(Reporter* reporter, TaskRunner* taskRunner);
|
|
|
|
virtual ~GpuTask() {}
|
2013-11-20 16:44:59 +00:00
|
|
|
|
2014-02-28 20:31:31 +00:00
|
|
|
void run(GrContextFactory&) SK_OVERRIDE;
|
|
|
|
virtual void draw(GrContextFactory*) = 0;
|
2013-10-16 13:02:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace DM
|
|
|
|
|
|
|
|
#endif // DMTask_DEFINED
|