blob: a5c75f0f8a5d10f99fcb5de6518a375e77e73d9b [file] [log] [blame]
mtklein@google.comd36522d2013-10-16 13:02:15 +00001#include "DMTask.h"
2
3#include "DMTaskRunner.h"
4#include "DMUtil.h"
5#include "SkBitmap.h"
6#include "SkCommandLineFlags.h"
7
8namespace DM {
9
10Task::Task(Reporter* reporter, TaskRunner* taskRunner)
rmistry@google.comd6bab022013-12-02 13:50:38 +000011 : fReporter(reporter), fTaskRunner(taskRunner), fDepth(0) {
mtklein@google.comd36522d2013-10-16 13:02:15 +000012 fReporter->start();
13}
14
rmistry@google.comd6bab022013-12-02 13:50:38 +000015Task::Task(const Task& parent)
16 : INHERITED(parent)
17 , fReporter(parent.fReporter)
18 , fTaskRunner(parent.fTaskRunner)
19 , fDepth(parent.depth()+1) {
mtklein@google.comd36522d2013-10-16 13:02:15 +000020 fReporter->start();
21}
22
23Task::~Task() {}
24
25void Task::run() {
26 if (!this->shouldSkip()) {
27 this->draw();
28 }
29 fReporter->finish();
30 fReporter->updateStatusLine();
31 delete this;
32}
33
34void Task::spawnChild(Task* task) {
35 if (!task->usesGpu()) {
36 fTaskRunner->add(task);
37 } else {
38 SkDEBUGFAIL("Sorry, we can't spawn GPU tasks. :( See comment in TaskRunner::wait().");
39 }
40}
41
42void Task::fail() {
43 fReporter->fail(this->name());
44}
45
46} // namespace DM