blob: 4eb1f25fcc6439b3897daa2eaf146690089f5d53 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#ifndef SkDumpCanvas_DEFINED
9#define SkDumpCanvas_DEFINED
10
11#include "SkCanvas.h"
12
13/** This class overrides all the draw methods on SkCanvas, and formats them
14 as text, and then sends that to a Dumper helper object.
vandebo@chromium.org74b46192012-01-28 01:45:11 +000015
reed@android.com8a1c16f2008-12-17 15:59:43 +000016 Typical use might be to dump a display list to a log file to see what is
17 being drawn.
18 */
19class SkDumpCanvas : public SkCanvas {
20public:
21 class Dumper;
22
23 explicit SkDumpCanvas(Dumper* = 0);
24 virtual ~SkDumpCanvas();
vandebo@chromium.org74b46192012-01-28 01:45:11 +000025
reed@android.com8a1c16f2008-12-17 15:59:43 +000026 enum Verb {
27 kNULL_Verb,
28
29 kSave_Verb,
30 kRestore_Verb,
vandebo@chromium.org74b46192012-01-28 01:45:11 +000031
reed@android.com8a1c16f2008-12-17 15:59:43 +000032 kMatrix_Verb,
vandebo@chromium.org74b46192012-01-28 01:45:11 +000033
reed@android.com8a1c16f2008-12-17 15:59:43 +000034 kClip_Verb,
vandebo@chromium.org74b46192012-01-28 01:45:11 +000035
reed@android.com8a1c16f2008-12-17 15:59:43 +000036 kDrawPaint_Verb,
37 kDrawPoints_Verb,
38 kDrawRect_Verb,
39 kDrawPath_Verb,
40 kDrawBitmap_Verb,
41 kDrawText_Verb,
42 kDrawPicture_Verb,
reed@android.comcb608442009-12-04 21:32:27 +000043 kDrawVertices_Verb,
44 kDrawData_Verb
reed@android.com8a1c16f2008-12-17 15:59:43 +000045 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +000046
reed@android.com8a1c16f2008-12-17 15:59:43 +000047 /** Subclasses of this are installed on the DumpCanvas, and then called for
48 each drawing command.
49 */
50 class Dumper : public SkRefCnt {
51 public:
reed@google.com563a3b42012-06-26 19:24:50 +000052 SK_DECLARE_INST_COUNT(Dumper)
53
reed@android.com8a1c16f2008-12-17 15:59:43 +000054 virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
55 const SkPaint*) = 0;
rmistry@google.comfbfcd562012-08-23 18:09:54 +000056
reed@google.com563a3b42012-06-26 19:24:50 +000057 private:
58 typedef SkRefCnt INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +000059 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +000060
reed@android.com8a1c16f2008-12-17 15:59:43 +000061 Dumper* getDumper() const { return fDumper; }
62 void setDumper(Dumper*);
vandebo@chromium.org74b46192012-01-28 01:45:11 +000063
reed@android.com9b46e772009-06-05 12:24:41 +000064 int getNestLevel() const { return fNestLevel; }
vandebo@chromium.org74b46192012-01-28 01:45:11 +000065
reed@google.com43d74842011-12-07 14:46:39 +000066 virtual int save(SaveFlags) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000067 virtual int saveLayer(const SkRect* bounds, const SkPaint* paint,
reed@google.com43d74842011-12-07 14:46:39 +000068 SaveFlags) SK_OVERRIDE;
reed@google.com2d4297c2011-10-06 13:14:12 +000069 virtual void restore() SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000070
reed@google.com2d4297c2011-10-06 13:14:12 +000071 virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
72 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
73 virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
74 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
75 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
76 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000077
reed@google.com071eef92011-10-12 11:52:53 +000078 virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE;
79 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000080 virtual bool clipRegion(const SkRegion& deviceRgn,
reed@google.com43d74842011-12-07 14:46:39 +000081 SkRegion::Op) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000082
reed@google.com2d4297c2011-10-06 13:14:12 +000083 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000084 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000085 const SkPaint& paint) SK_OVERRIDE;
reed@google.com25c14082012-12-12 19:15:31 +000086 virtual void drawRect(const SkRect& rect, const SkPaint& paint) SK_OVERRIDE;
reed@google.com2d4297c2011-10-06 13:14:12 +000087 virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000088 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
reed@google.com43d74842011-12-07 14:46:39 +000089 const SkPaint* paint) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000090 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
reed@google.com43d74842011-12-07 14:46:39 +000091 const SkRect& dst, const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000092 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
reed@google.com43d74842011-12-07 14:46:39 +000093 const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000094 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
reed@google.com43d74842011-12-07 14:46:39 +000095 const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000096 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
reed@google.com2d4297c2011-10-06 13:14:12 +000097 SkScalar y, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000098 virtual void drawPosText(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000099 const SkPoint pos[], const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000100 virtual void drawPosTextH(const void* text, size_t byteLength,
101 const SkScalar xpos[], SkScalar constY,
reed@google.com2d4297c2011-10-06 13:14:12 +0000102 const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000103 virtual void drawTextOnPath(const void* text, size_t byteLength,
104 const SkPath& path, const SkMatrix* matrix,
reed@google.com2d4297c2011-10-06 13:14:12 +0000105 const SkPaint& paint) SK_OVERRIDE;
106 virtual void drawPicture(SkPicture&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000107 virtual void drawVertices(VertexMode vmode, int vertexCount,
108 const SkPoint vertices[], const SkPoint texs[],
109 const SkColor colors[], SkXfermode* xmode,
110 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +0000111 const SkPaint& paint) SK_OVERRIDE;
112 virtual void drawData(const void*, size_t) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000113
114private:
115 Dumper* fDumper;
reed@android.com9b46e772009-06-05 12:24:41 +0000116 int fNestLevel; // for nesting recursive elements like pictures
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000117
reed@android.com8a1c16f2008-12-17 15:59:43 +0000118 void dump(Verb, const SkPaint*, const char format[], ...);
119
120 typedef SkCanvas INHERITED;
121};
122
123/** Formats the draw commands, and send them to a function-pointer provided
124 by the caller.
125 */
126class SkFormatDumper : public SkDumpCanvas::Dumper {
127public:
128 SkFormatDumper(void (*)(const char text[], void* refcon), void* refcon);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000129
reed@android.com8a1c16f2008-12-17 15:59:43 +0000130 // override from baseclass that does the formatting, and in turn calls
131 // the function pointer that was passed to the constructor
132 virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
reed@google.com2d4297c2011-10-06 13:14:12 +0000133 const SkPaint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000134
reed@android.com8a1c16f2008-12-17 15:59:43 +0000135private:
136 void (*fProc)(const char*, void*);
137 void* fRefcon;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000138
reed@android.com8a1c16f2008-12-17 15:59:43 +0000139 typedef SkDumpCanvas::Dumper INHERITED;
140};
141
142/** Subclass of Dumper that dumps the drawing command to SkDebugf
143 */
144class SkDebugfDumper : public SkFormatDumper {
145public:
146 SkDebugfDumper();
147
148private:
149 typedef SkFormatDumper INHERITED;
150};
151
152#endif