blob: da79fc1bbb013b3558452e60b493f165fdcf22a2 [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 SkPictureRecord_DEFINED
9#define SkPictureRecord_DEFINED
10
11#include "SkCanvas.h"
12#include "SkFlattenable.h"
13#include "SkPathHeap.h"
14#include "SkPicture.h"
15#include "SkPictureFlat.h"
16#include "SkTemplates.h"
17#include "SkWriter32.h"
18
rileya@google.com9f5898d2012-09-11 20:21:44 +000019class SkPictureStateTree;
20class SkBBoxHierarchy;
21
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +000022// These macros help with packing and unpacking a single byte value and
23// a 3 byte value into/out of a uint32_t
24#define MASK_24 0x00FFFFFF
25#define UNPACK_8_24(combined, small, large) \
26 small = (combined >> 24) & 0xFF; \
27 large = combined & MASK_24;
28#define PACK_8_24(small, large) ((small << 24) | large)
29
30
reed@android.com8a1c16f2008-12-17 15:59:43 +000031class SkPictureRecord : public SkCanvas {
32public:
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000033 SkPictureRecord(uint32_t recordFlags, SkBaseDevice*);
reed@android.com8a1c16f2008-12-17 15:59:43 +000034 virtual ~SkPictureRecord();
35
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000036 virtual SkBaseDevice* setDevice(SkBaseDevice* device) SK_OVERRIDE;
junov@chromium.org4e6dfa52012-07-16 14:04:59 +000037
reed@google.com2d4297c2011-10-06 13:14:12 +000038 virtual int save(SaveFlags) SK_OVERRIDE;
39 virtual int saveLayer(const SkRect* bounds, const SkPaint*, SaveFlags) SK_OVERRIDE;
40 virtual void restore() SK_OVERRIDE;
41 virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
42 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
43 virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
44 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
45 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
46 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
reed@google.com071eef92011-10-12 11:52:53 +000047 virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000048 virtual bool clipRRect(const SkRRect&, SkRegion::Op, bool) SK_OVERRIDE;
reed@google.com071eef92011-10-12 11:52:53 +000049 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
reed@google.com2d4297c2011-10-06 13:14:12 +000050 virtual bool clipRegion(const SkRegion& region, SkRegion::Op op) SK_OVERRIDE;
51 virtual void clear(SkColor) SK_OVERRIDE;
52 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000053 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000054 const SkPaint&) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000055 virtual void drawOval(const SkRect&, const SkPaint&) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000056 virtual void drawRect(const SkRect&, const SkPaint&) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000057 virtual void drawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000058 virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000059 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
reed@google.com2d4297c2011-10-06 13:14:12 +000060 const SkPaint*) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000061 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src,
skia.committer@gmail.com74758112013-08-17 07:01:54 +000062 const SkRect& dst, const SkPaint* paint,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000063 DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000064 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&,
reed@google.com2d4297c2011-10-06 13:14:12 +000065 const SkPaint*) SK_OVERRIDE;
reed@google.comf0b5e112011-09-07 11:57:34 +000066 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
reed@google.com2d4297c2011-10-06 13:14:12 +000067 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000068 virtual void drawSprite(const SkBitmap&, int left, int top,
reed@google.com2d4297c2011-10-06 13:14:12 +000069 const SkPaint*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000070 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
reed@google.com2d4297c2011-10-06 13:14:12 +000071 SkScalar y, const SkPaint&) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000072 virtual void drawPosText(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000073 const SkPoint pos[], const SkPaint&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 virtual void drawPosTextH(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000075 const SkScalar xpos[], SkScalar constY, const SkPaint&) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000076 virtual void drawTextOnPath(const void* text, size_t byteLength,
77 const SkPath& path, const SkMatrix* matrix,
reed@google.com2d4297c2011-10-06 13:14:12 +000078 const SkPaint&) SK_OVERRIDE;
79 virtual void drawPicture(SkPicture& picture) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000080 virtual void drawVertices(VertexMode, int vertexCount,
81 const SkPoint vertices[], const SkPoint texs[],
82 const SkColor colors[], SkXfermode*,
83 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +000084 const SkPaint&) SK_OVERRIDE;
85 virtual void drawData(const void*, size_t) SK_OVERRIDE;
robertphillips@google.com0a4805e2013-05-29 13:24:23 +000086 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
87 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
88 virtual void endCommentGroup() SK_OVERRIDE;
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000089 virtual bool isDrawingToLayer() const SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000090
junov@chromium.org3f5ecd62013-01-22 18:01:26 +000091 void addFontMetricsTopBottom(const SkPaint& paint, const SkFlatData&,
reed@google.com45954262012-12-07 17:14:40 +000092 SkScalar minY, SkScalar maxY);
vandebo@chromium.org74b46192012-01-28 01:45:11 +000093
reed@android.com8a1c16f2008-12-17 15:59:43 +000094 const SkTDArray<SkPicture* >& getPictureRefs() const {
95 return fPictureRefs;
96 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +000097
junov@chromium.org4866cc02012-06-01 21:23:07 +000098 void setFlags(uint32_t recordFlags) {
99 fRecordFlags = recordFlags;
100 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000101
102 const SkWriter32& writeStream() const {
103 return fWriter;
104 }
105
reed@google.comd86e7ab2012-09-27 20:31:31 +0000106 void beginRecording();
junov@chromium.orga6c9e0e2012-07-12 17:47:34 +0000107 void endRecording();
reed@google.comd86e7ab2012-09-27 20:31:31 +0000108
reed@android.com8a1c16f2008-12-17 15:59:43 +0000109private:
commit-bot@chromium.org4b32bd52013-03-15 15:06:03 +0000110 void handleOptimization(int opt);
junov@chromium.orge3dbedb2012-07-09 16:03:55 +0000111 void recordRestoreOffsetPlaceholder(SkRegion::Op);
112 void fillRestoreOffsetPlaceholdersForCurrentStackLevel(
113 uint32_t restoreOffset);
114
reed@google.comffacd3c2012-08-30 15:31:23 +0000115 SkTDArray<int32_t> fRestoreOffsetStack;
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000116 int fFirstSavedLayerIndex;
117 enum {
118 kNoSavedLayerIndex = -1
119 };
reed@android.com8a1c16f2008-12-17 15:59:43 +0000120
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000121 /*
122 * Write the 'drawType' operation and chunk size to the skp. 'size'
skia.committer@gmail.comce8343d2013-02-16 07:01:31 +0000123 * can potentially be increased if the chunk size needs its own storage
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000124 * location (i.e., it overflows 24 bits).
125 * Returns the start offset of the chunk. This is the location at which
126 * the opcode & size are stored.
skia.committer@gmail.comce8343d2013-02-16 07:01:31 +0000127 * TODO: since we are handing the size into here we could call reserve
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000128 * and then return a pointer to the memory storage. This could decrease
129 * allocation overhead but could lead to more wasted space (the tail
130 * end of blocks could go unused). Possibly add a second addDraw that
131 * operates in this manner.
132 */
robertphillips@google.com8b169312013-10-15 17:47:36 +0000133 size_t addDraw(DrawType drawType, uint32_t* size) {
reed@google.com44699382013-10-31 17:28:30 +0000134 size_t offset = fWriter.bytesWritten();
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000135
reed@google.com97af1a62012-08-28 12:19:02 +0000136 this->predrawNotify();
137
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000138 #ifdef SK_DEBUG_TRACE
reed@android.com8a1c16f2008-12-17 15:59:43 +0000139 SkDebugf("add %s\n", DrawTypeToString(drawType));
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000140 #endif
141
142 SkASSERT(0 != *size);
143 SkASSERT(((uint8_t) drawType) == drawType);
144
145 if (0 != (*size & ~MASK_24) || *size == MASK_24) {
146 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
147 *size += 1;
148 fWriter.writeInt(*size);
149 } else {
150 fWriter.writeInt(PACK_8_24(drawType, *size));
151 }
152
153 return offset;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000154 }
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000155
reed@android.com8a1c16f2008-12-17 15:59:43 +0000156 void addInt(int value) {
157 fWriter.writeInt(value);
158 }
159 void addScalar(SkScalar scalar) {
160 fWriter.writeScalar(scalar);
161 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000162
reed@android.com8a1c16f2008-12-17 15:59:43 +0000163 void addBitmap(const SkBitmap& bitmap);
164 void addMatrix(const SkMatrix& matrix);
165 void addMatrixPtr(const SkMatrix* matrix);
junov@chromium.orgf3b12232013-01-22 17:50:47 +0000166 const SkFlatData* addPaint(const SkPaint& paint) { return this->addPaintPtr(&paint); }
167 const SkFlatData* addPaintPtr(const SkPaint* paint);
commit-bot@chromium.orgcf7be952013-08-22 17:19:52 +0000168 void addFlatPaint(const SkFlatData* flatPaint);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000169 void addPath(const SkPath& path);
170 void addPicture(SkPicture& picture);
171 void addPoint(const SkPoint& point);
172 void addPoints(const SkPoint pts[], int count);
173 void addRect(const SkRect& rect);
174 void addRectPtr(const SkRect* rect);
reed@google.comf0b5e112011-09-07 11:57:34 +0000175 void addIRect(const SkIRect& rect);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000176 void addIRectPtr(const SkIRect* rect);
reed@google.com4ed0fb72012-12-12 20:48:18 +0000177 void addRRect(const SkRRect&);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000178 void addRegion(const SkRegion& region);
179 void addText(const void* text, size_t byteLength);
180
junov@chromium.org4866cc02012-06-01 21:23:07 +0000181 int find(const SkBitmap& bitmap);
182
reed@android.com8a1c16f2008-12-17 15:59:43 +0000183#ifdef SK_DEBUG_DUMP
184public:
185 void dumpMatrices();
186 void dumpPaints();
187#endif
188
189#ifdef SK_DEBUG_SIZE
190public:
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000191 size_t size() const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000192 int bitmaps(size_t* size) const;
193 int matrices(size_t* size) const;
194 int paints(size_t* size) const;
195 int paths(size_t* size) const;
196 int regions(size_t* size) const;
197 size_t streamlen() const;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000198
reed@android.com8a1c16f2008-12-17 15:59:43 +0000199 size_t fPointBytes, fRectBytes, fTextBytes;
200 int fPointWrites, fRectWrites, fTextWrites;
201#endif
202
203#ifdef SK_DEBUG_VALIDATE
204public:
robertphillips@google.com8b169312013-10-15 17:47:36 +0000205 void validate(size_t initialOffset, uint32_t size) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000206private:
207 void validateBitmaps() const;
208 void validateMatrices() const;
209 void validatePaints() const;
210 void validatePaths() const;
211 void validateRegions() const;
212#else
213public:
robertphillips@google.com8b169312013-10-15 17:47:36 +0000214 void validate(size_t initialOffset, uint32_t size) const {
reed@google.com44699382013-10-31 17:28:30 +0000215 SkASSERT(fWriter.bytesWritten() == initialOffset + size);
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000216 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000217#endif
218
rileya@google.com9f5898d2012-09-11 20:21:44 +0000219protected:
commit-bot@chromium.orgcf7be952013-08-22 17:19:52 +0000220 // Return fontmetrics.fTop,fBottom in topbot[0,1], after they have been
221 // tweaked by paint.computeFastBounds().
222 static void ComputeFontMetricsTopBottom(const SkPaint& paint, SkScalar topbot[2]);
223
224 // Make sure that flat has fTopBot written.
225 static void WriteTopBot(const SkPaint& paint, const SkFlatData& flat) {
226 if (!flat.isTopBotWritten()) {
227 ComputeFontMetricsTopBottom(paint, flat.writableTopBot());
228 SkASSERT(flat.isTopBotWritten());
229 }
230 }
231 // Will return a cached version when possible.
232 const SkFlatData* getFlatPaintData(const SkPaint& paint);
233 /**
234 * SkBBoxRecord::drawPosTextH gets a flat paint and uses it,
235 * then it calls this, using the extra parameter, to avoid duplication.
236 */
237 void drawPosTextHImpl(const void* text, size_t byteLength,
238 const SkScalar xpos[], SkScalar constY,
239 const SkPaint& paint, const SkFlatData* flatPaintData);
rileya@google.com9f5898d2012-09-11 20:21:44 +0000240
241 // These are set to NULL in our constructor, but may be changed by
242 // subclasses, in which case they will be SkSafeUnref'd in our destructor.
243 SkBBoxHierarchy* fBoundingHierarchy;
244 SkPictureStateTree* fStateTree;
245
robertphillips@google.com801cee12012-10-19 19:06:11 +0000246 // Allocated in the constructor and managed by this class.
djsollen@google.comc9ab9872012-08-29 18:52:07 +0000247 SkBitmapHeap* fBitmapHeap;
robertphillips@google.com801cee12012-10-19 19:06:11 +0000248
249private:
djsollen@google.com21830d92012-08-07 19:49:41 +0000250 SkChunkFlatController fFlattenableHeap;
junov@chromium.org4866cc02012-06-01 21:23:07 +0000251
djsollen@google.comd2700ee2012-05-30 16:54:13 +0000252 SkMatrixDictionary fMatrices;
253 SkPaintDictionary fPaints;
254 SkRegionDictionary fRegions;
255
reed@android.com8a1c16f2008-12-17 15:59:43 +0000256 SkPathHeap* fPathHeap; // reference counted
257 SkWriter32 fWriter;
258
reed@android.com09b84a02009-06-26 20:22:26 +0000259 // we ref each item in these arrays
reed@android.com8a1c16f2008-12-17 15:59:43 +0000260 SkTDArray<SkPicture*> fPictureRefs;
261
reed@android.comae814c82009-02-13 14:56:09 +0000262 uint32_t fRecordFlags;
junov@chromium.org4e6dfa52012-07-16 14:04:59 +0000263 int fInitialSaveCount;
reed@android.comae814c82009-02-13 14:56:09 +0000264
reed@android.com8a1c16f2008-12-17 15:59:43 +0000265 friend class SkPicturePlayback;
junov@chromium.org1cc8f6f2012-02-22 21:00:42 +0000266 friend class SkPictureTester; // for unit testing
reed@android.com8a1c16f2008-12-17 15:59:43 +0000267
268 typedef SkCanvas INHERITED;
269};
270
271#endif