blob: de2af04af1516b65f692201704a6d08c1cb7c150 [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:
52 virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
53 const SkPaint*) = 0;
54 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +000055
reed@android.com8a1c16f2008-12-17 15:59:43 +000056 Dumper* getDumper() const { return fDumper; }
57 void setDumper(Dumper*);
vandebo@chromium.org74b46192012-01-28 01:45:11 +000058
reed@android.com9b46e772009-06-05 12:24:41 +000059 int getNestLevel() const { return fNestLevel; }
vandebo@chromium.org74b46192012-01-28 01:45:11 +000060
reed@google.com43d74842011-12-07 14:46:39 +000061 virtual int save(SaveFlags) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000062 virtual int saveLayer(const SkRect* bounds, const SkPaint* paint,
reed@google.com43d74842011-12-07 14:46:39 +000063 SaveFlags) SK_OVERRIDE;
reed@google.com2d4297c2011-10-06 13:14:12 +000064 virtual void restore() SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000065
reed@google.com2d4297c2011-10-06 13:14:12 +000066 virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
67 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
68 virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
69 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
70 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
71 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000072
reed@google.com071eef92011-10-12 11:52:53 +000073 virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE;
74 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000075 virtual bool clipRegion(const SkRegion& deviceRgn,
reed@google.com43d74842011-12-07 14:46:39 +000076 SkRegion::Op) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000077
reed@google.com2d4297c2011-10-06 13:14:12 +000078 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000079 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000080 const SkPaint& paint) SK_OVERRIDE;
81 virtual void drawRect(const SkRect& rect, const SkPaint& paint) SK_OVERRIDE;
82 virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000083 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
reed@google.com43d74842011-12-07 14:46:39 +000084 const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000085 virtual void drawBitmapRect(const SkBitmap& bitmap, const SkIRect* src,
reed@google.com43d74842011-12-07 14:46:39 +000086 const SkRect& dst, const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000087 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
reed@google.com43d74842011-12-07 14:46:39 +000088 const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000089 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
reed@google.com43d74842011-12-07 14:46:39 +000090 const SkPaint* paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000091 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
reed@google.com2d4297c2011-10-06 13:14:12 +000092 SkScalar y, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000093 virtual void drawPosText(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000094 const SkPoint pos[], const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000095 virtual void drawPosTextH(const void* text, size_t byteLength,
96 const SkScalar xpos[], SkScalar constY,
reed@google.com2d4297c2011-10-06 13:14:12 +000097 const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000098 virtual void drawTextOnPath(const void* text, size_t byteLength,
99 const SkPath& path, const SkMatrix* matrix,
reed@google.com2d4297c2011-10-06 13:14:12 +0000100 const SkPaint& paint) SK_OVERRIDE;
101 virtual void drawPicture(SkPicture&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000102 virtual void drawVertices(VertexMode vmode, int vertexCount,
103 const SkPoint vertices[], const SkPoint texs[],
104 const SkColor colors[], SkXfermode* xmode,
105 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +0000106 const SkPaint& paint) SK_OVERRIDE;
107 virtual void drawData(const void*, size_t) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000108
109private:
110 Dumper* fDumper;
reed@android.com9b46e772009-06-05 12:24:41 +0000111 int fNestLevel; // for nesting recursive elements like pictures
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000112
reed@android.com8a1c16f2008-12-17 15:59:43 +0000113 void dump(Verb, const SkPaint*, const char format[], ...);
114
115 typedef SkCanvas INHERITED;
116};
117
118/** Formats the draw commands, and send them to a function-pointer provided
119 by the caller.
120 */
121class SkFormatDumper : public SkDumpCanvas::Dumper {
122public:
123 SkFormatDumper(void (*)(const char text[], void* refcon), void* refcon);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000124
reed@android.com8a1c16f2008-12-17 15:59:43 +0000125 // override from baseclass that does the formatting, and in turn calls
126 // the function pointer that was passed to the constructor
127 virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
reed@google.com2d4297c2011-10-06 13:14:12 +0000128 const SkPaint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000129
reed@android.com8a1c16f2008-12-17 15:59:43 +0000130private:
131 void (*fProc)(const char*, void*);
132 void* fRefcon;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000133
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134 typedef SkDumpCanvas::Dumper INHERITED;
135};
136
137/** Subclass of Dumper that dumps the drawing command to SkDebugf
138 */
139class SkDebugfDumper : public SkFormatDumper {
140public:
141 SkDebugfDumper();
142
143private:
144 typedef SkFormatDumper INHERITED;
145};
146
147#endif