blob: e2662e758c96569206a4f4b56c9f34613c063f7e [file] [log] [blame]
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include <stdio.h>
9
10#include "SkRecord.h"
11#include "SkRecordDraw.h"
12
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000013#include "DumpRecord.h"
mtklein2f2903d2015-11-18 11:06:37 -080014#include "SkTime.h"
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000015
16namespace {
17
18class Dumper {
19public:
20 explicit Dumper(SkCanvas* canvas, int count, bool timeWithCommand)
21 : fDigits(0)
22 , fIndent(0)
mtklein00f30bd2014-09-02 12:03:31 -070023 , fIndex(0)
halcanary96fcdcc2015-08-27 07:41:13 -070024 , fDraw(canvas, nullptr, nullptr, 0, nullptr)
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000025 , fTimeWithCommand(timeWithCommand) {
26 while (count > 0) {
27 count /= 10;
28 fDigits++;
29 }
30 }
31
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000032 template <typename T>
33 void operator()(const T& command) {
mtklein2f2903d2015-11-18 11:06:37 -080034 auto start = SkTime::GetNSecs();
35 fDraw(command);
36 this->print(command, SkTime::GetNSecs() - start);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000037 }
38
39 void operator()(const SkRecords::NoOp&) {
40 // Move on without printing anything.
41 }
42
43 template <typename T>
mtklein2f2903d2015-11-18 11:06:37 -080044 void print(const T& command, double ns) {
45 this->printNameAndTime(command, ns);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000046 }
47
mtklein2f2903d2015-11-18 11:06:37 -080048 void print(const SkRecords::Restore& command, double ns) {
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000049 --fIndent;
mtklein2f2903d2015-11-18 11:06:37 -080050 this->printNameAndTime(command, ns);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000051 }
52
mtklein2f2903d2015-11-18 11:06:37 -080053 void print(const SkRecords::Save& command, double ns) {
54 this->printNameAndTime(command, ns);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000055 ++fIndent;
56 }
57
mtklein2f2903d2015-11-18 11:06:37 -080058 void print(const SkRecords::SaveLayer& command, double ns) {
59 this->printNameAndTime(command, ns);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000060 ++fIndent;
61 }
62
63private:
64 template <typename T>
mtklein2f2903d2015-11-18 11:06:37 -080065 void printNameAndTime(const T& command, double ns) {
66 int us = (int)(ns * 1e-3);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000067 if (!fTimeWithCommand) {
mtklein2f2903d2015-11-18 11:06:37 -080068 printf("%6dus ", us);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000069 }
mtklein00f30bd2014-09-02 12:03:31 -070070 printf("%*d ", fDigits, fIndex++);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000071 for (int i = 0; i < fIndent; i++) {
mtklein2f2903d2015-11-18 11:06:37 -080072 printf(" ");
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000073 }
74 if (fTimeWithCommand) {
mtklein2f2903d2015-11-18 11:06:37 -080075 printf("%6dus ", us);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000076 }
77 puts(NameOf(command));
78 }
79
80 template <typename T>
81 static const char* NameOf(const T&) {
82 #define CASE(U) case SkRecords::U##_Type: return #U;
83 switch(T::kType) { SK_RECORD_TYPES(CASE); }
84 #undef CASE
85 SkDEBUGFAIL("Unknown T");
86 return "Unknown T";
87 }
88
89 static const char* NameOf(const SkRecords::SaveLayer&) {
90 return "\x1b[31;1mSaveLayer\x1b[0m"; // Bold red.
91 }
92
93 int fDigits;
94 int fIndent;
mtklein00f30bd2014-09-02 12:03:31 -070095 int fIndex;
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +000096 SkRecords::Draw fDraw;
97 const bool fTimeWithCommand;
98};
99
100} // namespace
101
102void DumpRecord(const SkRecord& record,
103 SkCanvas* canvas,
104 bool timeWithCommand) {
mtklein00f30bd2014-09-02 12:03:31 -0700105 Dumper dumper(canvas, record.count(), timeWithCommand);
mtkleinc6ad06a2015-08-19 09:51:00 -0700106 for (int i = 0; i < record.count(); i++) {
mtklein00f30bd2014-09-02 12:03:31 -0700107 record.visit<void>(i, dumper);
commit-bot@chromium.org85fd1932014-05-15 16:10:37 +0000108 }
109}