blob: 6a577ca42ef19b59a0d3aa74b7ff49a35d12132f [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
reed@google.com76f10a32014-02-05 15:32:21 +00007
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"
reed@android.com8a1c16f2008-12-17 15:59:43 +000013#include "SkPicture.h"
robertphillipsdb539902014-07-01 08:47:04 -070014#include "SkPictureData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkTemplates.h"
16#include "SkWriter32.h"
17
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +000018// These macros help with packing and unpacking a single byte value and
19// a 3 byte value into/out of a uint32_t
20#define MASK_24 0x00FFFFFF
21#define UNPACK_8_24(combined, small, large) \
22 small = (combined >> 24) & 0xFF; \
23 large = combined & MASK_24;
24#define PACK_8_24(small, large) ((small << 24) | large)
25
26
reed@android.com8a1c16f2008-12-17 15:59:43 +000027class SkPictureRecord : public SkCanvas {
28public:
robertphillips0bdbea72014-06-11 11:37:55 -070029 SkPictureRecord(const SkISize& dimensions, uint32_t recordFlags);
reed@android.com8a1c16f2008-12-17 15:59:43 +000030 virtual ~SkPictureRecord();
31
reed@google.com2d4297c2011-10-06 13:14:12 +000032 virtual void clear(SkColor) SK_OVERRIDE;
33 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000034 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000035 const SkPaint&) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000036 virtual void drawOval(const SkRect&, const SkPaint&) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000037 virtual void drawRect(const SkRect&, const SkPaint&) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000038 virtual void drawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000039 virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000040 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
reed@google.com2d4297c2011-10-06 13:14:12 +000041 const SkPaint*) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000042 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src,
skia.committer@gmail.com74758112013-08-17 07:01:54 +000043 const SkRect& dst, const SkPaint* paint,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000044 DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000045 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&,
reed@google.com2d4297c2011-10-06 13:14:12 +000046 const SkPaint*) SK_OVERRIDE;
reed@google.comf0b5e112011-09-07 11:57:34 +000047 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
reed@google.com2d4297c2011-10-06 13:14:12 +000048 const SkRect& dst, const SkPaint*) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000049 virtual void drawSprite(const SkBitmap&, int left, int top,
reed@google.com2d4297c2011-10-06 13:14:12 +000050 const SkPaint*) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000051 virtual void drawVertices(VertexMode, int vertexCount,
52 const SkPoint vertices[], const SkPoint texs[],
53 const SkColor colors[], SkXfermode*,
54 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +000055 const SkPaint&) SK_OVERRIDE;
56 virtual void drawData(const void*, size_t) SK_OVERRIDE;
robertphillips@google.com0a4805e2013-05-29 13:24:23 +000057 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
58 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
59 virtual void endCommentGroup() SK_OVERRIDE;
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000060 virtual bool isDrawingToLayer() const SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000061
robertphillips9b14f262014-06-04 05:40:44 -070062 const SkTDArray<const SkPicture* >& getPictureRefs() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +000063 return fPictureRefs;
64 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +000065
fmalitab7425172014-08-26 07:56:44 -070066 const SkTDArray<const SkTextBlob* >& getTextBlobRefs() const {
67 return fTextBlobRefs;
68 }
69
robertphillips0bdbea72014-06-11 11:37:55 -070070 SkData* opData(bool deepCopy) const {
71 this->validate(fWriter.bytesWritten(), 0);
72
73 if (fWriter.bytesWritten() == 0) {
74 return SkData::NewEmpty();
75 }
76
77 if (deepCopy) {
78 return SkData::NewWithCopy(fWriter.contiguousArray(), fWriter.bytesWritten());
79 }
80
81 return fWriter.snapshotAsData();
82 }
83
robertphillips0bdbea72014-06-11 11:37:55 -070084 const SkPictureContentInfo& contentInfo() const {
85 return fContentInfo;
86 }
87
junov@chromium.org4866cc02012-06-01 21:23:07 +000088 void setFlags(uint32_t recordFlags) {
89 fRecordFlags = recordFlags;
90 }
reed@android.com8a1c16f2008-12-17 15:59:43 +000091
92 const SkWriter32& writeStream() const {
93 return fWriter;
94 }
95
reed@google.comd86e7ab2012-09-27 20:31:31 +000096 void beginRecording();
junov@chromium.orga6c9e0e2012-07-12 17:47:34 +000097 void endRecording();
reed@google.comd86e7ab2012-09-27 20:31:31 +000098
senorblanco@chromium.org68250c82014-05-06 22:52:55 +000099protected:
100 void addNoOp();
101
reed@android.com8a1c16f2008-12-17 15:59:43 +0000102private:
commit-bot@chromium.org4b32bd52013-03-15 15:06:03 +0000103 void handleOptimization(int opt);
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +0000104 size_t recordRestoreOffsetPlaceholder(SkRegion::Op);
robertphillips@google.com5a63f242014-02-04 20:07:50 +0000105 void fillRestoreOffsetPlaceholdersForCurrentStackLevel(uint32_t restoreOffset);
junov@chromium.orge3dbedb2012-07-09 16:03:55 +0000106
reed@google.comffacd3c2012-08-30 15:31:23 +0000107 SkTDArray<int32_t> fRestoreOffsetStack;
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000108 int fFirstSavedLayerIndex;
109 enum {
110 kNoSavedLayerIndex = -1
111 };
reed@android.com8a1c16f2008-12-17 15:59:43 +0000112
commit-bot@chromium.org210ae2a2014-02-27 17:40:13 +0000113 SkTDArray<uint32_t> fCullOffsetStack;
114
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000115 /*
116 * Write the 'drawType' operation and chunk size to the skp. 'size'
skia.committer@gmail.comce8343d2013-02-16 07:01:31 +0000117 * can potentially be increased if the chunk size needs its own storage
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000118 * location (i.e., it overflows 24 bits).
119 * Returns the start offset of the chunk. This is the location at which
120 * the opcode & size are stored.
skia.committer@gmail.comce8343d2013-02-16 07:01:31 +0000121 * TODO: since we are handing the size into here we could call reserve
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000122 * and then return a pointer to the memory storage. This could decrease
123 * allocation overhead but could lead to more wasted space (the tail
124 * end of blocks could go unused). Possibly add a second addDraw that
125 * operates in this manner.
126 */
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +0000127 size_t addDraw(DrawType drawType, size_t* size) {
reed@google.com44699382013-10-31 17:28:30 +0000128 size_t offset = fWriter.bytesWritten();
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000129
reed@google.com97af1a62012-08-28 12:19:02 +0000130 this->predrawNotify();
hendrikwafdada22014-08-08 10:44:33 -0700131 fContentInfo.addOperation();
reed@google.com97af1a62012-08-28 12:19:02 +0000132
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000133 SkASSERT(0 != *size);
134 SkASSERT(((uint8_t) drawType) == drawType);
135
136 if (0 != (*size & ~MASK_24) || *size == MASK_24) {
137 fWriter.writeInt(PACK_8_24(drawType, MASK_24));
138 *size += 1;
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +0000139 fWriter.writeInt(SkToU32(*size));
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000140 } else {
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +0000141 fWriter.writeInt(PACK_8_24(drawType, SkToU32(*size)));
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000142 }
143
144 return offset;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000145 }
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000146
reed@android.com8a1c16f2008-12-17 15:59:43 +0000147 void addInt(int value) {
148 fWriter.writeInt(value);
149 }
150 void addScalar(SkScalar scalar) {
151 fWriter.writeScalar(scalar);
152 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000153
commit-bot@chromium.org8016f792014-03-07 15:53:01 +0000154 // The command at 'offset' in the skp uses the specified bitmap
commit-bot@chromium.org8016f792014-03-07 15:53:01 +0000155 int addBitmap(const SkBitmap& bitmap);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000156 void addMatrix(const SkMatrix& matrix);
mtklein46616af2014-09-30 14:47:10 -0700157 void addPaint(const SkPaint& paint) { this->addPaintPtr(&paint); }
158 void addPaintPtr(const SkPaint* paint);
dandovb3c9d1c2014-08-12 08:34:29 -0700159 void addPatch(const SkPoint cubics[12]);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000160 void addPath(const SkPath& path);
robertphillips9b14f262014-06-04 05:40:44 -0700161 void addPicture(const SkPicture* picture);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000162 void addPoint(const SkPoint& point);
163 void addPoints(const SkPoint pts[], int count);
164 void addRect(const SkRect& rect);
165 void addRectPtr(const SkRect* rect);
reed@google.comf0b5e112011-09-07 11:57:34 +0000166 void addIRect(const SkIRect& rect);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000167 void addIRectPtr(const SkIRect* rect);
reed@google.com4ed0fb72012-12-12 20:48:18 +0000168 void addRRect(const SkRRect&);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000169 void addRegion(const SkRegion& region);
170 void addText(const void* text, size_t byteLength);
fmalitab7425172014-08-26 07:56:44 -0700171 void addTextBlob(const SkTextBlob* blob);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000172
junov@chromium.org4866cc02012-06-01 21:23:07 +0000173 int find(const SkBitmap& bitmap);
174
robertphillips6162af82014-08-11 09:50:11 -0700175protected:
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +0000176 void validate(size_t initialOffset, size_t size) const {
reed@google.com44699382013-10-31 17:28:30 +0000177 SkASSERT(fWriter.bytesWritten() == initialOffset + size);
robertphillips@google.com2ca1aaa2013-02-15 13:47:37 +0000178 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000179
reed4a8126e2014-09-22 07:29:03 -0700180 virtual SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) SK_OVERRIDE;
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000181 const void* onPeekPixels(SkImageInfo*, size_t*) SK_OVERRIDE {
182 return NULL;
183 }
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000184
Florin Malita5f6102d2014-06-30 10:13:28 -0400185 virtual void willSave() SK_OVERRIDE;
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +0000186 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE;
187 virtual void willRestore() SK_OVERRIDE;
188
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +0000189 virtual void didConcat(const SkMatrix&) SK_OVERRIDE;
190 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
191
commit-bot@chromium.orged9806f2014-02-21 02:32:36 +0000192 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
commit-bot@chromium.org210ae2a2014-02-27 17:40:13 +0000193 virtual void onPushCull(const SkRect&) SK_OVERRIDE;
194 virtual void onPopCull() SK_OVERRIDE;
reed@google.com76f10a32014-02-05 15:32:21 +0000195
reed@google.come0d9ce82014-04-23 04:00:17 +0000196 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
197 const SkPaint&) SK_OVERRIDE;
198 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
199 const SkPaint&) SK_OVERRIDE;
200 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
201 SkScalar constY, const SkPaint&) SK_OVERRIDE;
202 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
203 const SkMatrix* matrix, const SkPaint&) SK_OVERRIDE;
fmalitab7425172014-08-26 07:56:44 -0700204 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
205 const SkPaint& paint) SK_OVERRIDE;
mtklein46616af2014-09-30 14:47:10 -0700206
dandovb3c9d1c2014-08-12 08:34:29 -0700207 virtual void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
208 const SkPoint texCoords[4], SkXfermode* xmode,
209 const SkPaint& paint) SK_OVERRIDE;
reed@google.come0d9ce82014-04-23 04:00:17 +0000210
robertphillips@google.com8f90a892014-02-28 18:19:39 +0000211 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
212 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
213 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
214 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
215
reedd5fa1a42014-08-09 11:08:05 -0700216 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) SK_OVERRIDE;
robertphillips9b14f262014-06-04 05:40:44 -0700217
robertphillips@google.com5a63f242014-02-04 20:07:50 +0000218 int addPathToHeap(const SkPath& path); // does not write to ops stream
219
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000220 // These entry points allow the writing of matrices, clips, saves &
robertphillips@google.com5a63f242014-02-04 20:07:50 +0000221 // restores to be deferred (e.g., if the MC state is being collapsed and
222 // only written out as needed).
223 void recordConcat(const SkMatrix& matrix);
commit-bot@chromium.orgd9ea09e2014-03-25 17:32:26 +0000224 void recordTranslate(const SkMatrix& matrix);
225 void recordScale(const SkMatrix& matrix);
commit-bot@chromium.orgdcecb162014-04-22 17:54:29 +0000226 size_t recordClipRect(const SkRect& rect, SkRegion::Op op, bool doAA);
227 size_t recordClipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA);
228 size_t recordClipPath(int pathID, SkRegion::Op op, bool doAA);
229 size_t recordClipRegion(const SkRegion& region, SkRegion::Op op);
Florin Malita5f6102d2014-06-30 10:13:28 -0400230 void recordSave();
robertphillips@google.com5a63f242014-02-04 20:07:50 +0000231 void recordSaveLayer(const SkRect* bounds, const SkPaint* paint, SaveFlags flags);
robertphillips@google.com105a4a52014-02-11 15:10:40 +0000232 void recordRestore(bool fillInSkips = true);
robertphillips@google.com5a63f242014-02-04 20:07:50 +0000233
robertphillips@google.com801cee12012-10-19 19:06:11 +0000234private:
robertphillips0bdbea72014-06-11 11:37:55 -0700235 SkPictureContentInfo fContentInfo;
robertphillips0bdbea72014-06-11 11:37:55 -0700236
mtklein71a23632014-11-12 10:24:55 -0800237 SkTArray<SkBitmap> fBitmaps;
238 SkTArray<SkPaint> fPaints;
239 SkTArray<SkPath> fPaths;
djsollen@google.comd2700ee2012-05-30 16:54:13 +0000240
reed@android.com8a1c16f2008-12-17 15:59:43 +0000241 SkWriter32 fWriter;
242
reed@android.com09b84a02009-06-26 20:22:26 +0000243 // we ref each item in these arrays
fmalitab7425172014-08-26 07:56:44 -0700244 SkTDArray<const SkPicture*> fPictureRefs;
245 SkTDArray<const SkTextBlob*> fTextBlobRefs;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000246
reed@android.comae814c82009-02-13 14:56:09 +0000247 uint32_t fRecordFlags;
commit-bot@chromium.orge494dbd2014-03-04 19:08:57 +0000248 int fInitialSaveCount;
reed@android.comae814c82009-02-13 14:56:09 +0000249
robertphillips61426092014-07-10 09:35:12 -0700250 friend class SkPictureData; // for SkPictureData's SkPictureRecord-based constructor
reed@android.com8a1c16f2008-12-17 15:59:43 +0000251
reed@android.com8a1c16f2008-12-17 15:59:43 +0000252 typedef SkCanvas INHERITED;
253};
254
255#endif