blob: ecf55857e0421b10898432d152457c135ebbda2b [file] [log] [blame]
commit-bot@chromium.org02512882013-10-31 18:37:50 +00001/*
2 * Copyright 2013 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkCanvas.h"
Ben Wagnere80a5952020-07-14 17:57:13 -04009#include "include/core/SkFontMgr.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkImage.h"
11#include "include/core/SkMallocPixelRef.h"
12#include "include/core/SkPictureRecorder.h"
13#include "include/core/SkTextBlob.h"
14#include "include/core/SkTypeface.h"
15#include "include/effects/SkDashPathEffect.h"
Michael Ludwig55edb502019-08-05 10:41:10 -040016#include "include/effects/SkImageFilters.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "include/effects/SkTableColorFilter.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "include/private/SkFixed.h"
19#include "include/private/SkTemplates.h"
20#include "src/core/SkAnnotationKeys.h"
Brian Osman9e4e4c72020-06-10 07:19:34 -040021#include "src/core/SkAutoMalloc.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "src/core/SkMatrixPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050023#include "src/core/SkOSFile.h"
24#include "src/core/SkPicturePriv.h"
25#include "src/core/SkReadBuffer.h"
26#include "src/core/SkWriteBuffer.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050027#include "src/shaders/SkShaderBase.h"
28#include "tests/Test.h"
29#include "tools/Resources.h"
30#include "tools/ToolUtils.h"
commit-bot@chromium.org02512882013-10-31 18:37:50 +000031
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000032static const uint32_t kArraySize = 64;
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +000033static const int kBitmapSize = 256;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000034
Cary Clark6d6d6032017-10-20 12:14:33 -040035class SerializationTest {
36public:
37
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000038template<typename T>
39static void TestAlignment(T* testObj, skiatest::Reporter* reporter) {
40 // Test memory read/write functions directly
41 unsigned char dataWritten[1024];
42 size_t bytesWrittenToMemory = testObj->writeToMemory(dataWritten);
43 REPORTER_ASSERT(reporter, SkAlign4(bytesWrittenToMemory) == bytesWrittenToMemory);
44 size_t bytesReadFromMemory = testObj->readFromMemory(dataWritten, bytesWrittenToMemory);
45 REPORTER_ASSERT(reporter, SkAlign4(bytesReadFromMemory) == bytesReadFromMemory);
46}
Cary Clark6d6d6032017-10-20 12:14:33 -040047};
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000048
49template<typename T> struct SerializationUtils {
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000050 // Generic case for flattenables
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000051 static void Write(SkWriteBuffer& writer, const T* flattenable) {
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000052 writer.writeFlattenable(flattenable);
53 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050054 static void Read(SkReadBuffer& reader, T** flattenable) {
mtklein3b375452016-04-04 14:57:19 -070055 *flattenable = (T*)reader.readFlattenable(T::GetFlattenableType());
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000056 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000057};
58
59template<> struct SerializationUtils<SkMatrix> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000060 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000061 writer.writeMatrix(*matrix);
62 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050063 static void Read(SkReadBuffer& reader, SkMatrix* matrix) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000064 reader.readMatrix(matrix);
65 }
66};
67
68template<> struct SerializationUtils<SkPath> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000069 static void Write(SkWriteBuffer& writer, const SkPath* path) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000070 writer.writePath(*path);
71 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050072 static void Read(SkReadBuffer& reader, SkPath* path) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000073 reader.readPath(path);
74 }
75};
76
77template<> struct SerializationUtils<SkRegion> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000078 static void Write(SkWriteBuffer& writer, const SkRegion* region) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000079 writer.writeRegion(*region);
80 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050081 static void Read(SkReadBuffer& reader, SkRegion* region) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000082 reader.readRegion(region);
83 }
84};
85
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +000086template<> struct SerializationUtils<SkString> {
87 static void Write(SkWriteBuffer& writer, const SkString* string) {
88 writer.writeString(string->c_str());
89 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050090 static void Read(SkReadBuffer& reader, SkString* string) {
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +000091 reader.readString(string);
92 }
93};
94
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000095template<> struct SerializationUtils<unsigned char> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000096 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +000097 writer.writeByteArray(data, arraySize);
sugoi@google.com305f78e2013-11-04 16:18:15 +000098 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050099 static bool Read(SkReadBuffer& reader, unsigned char* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000100 return reader.readByteArray(data, arraySize);
101 }
102};
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000103
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000104template<> struct SerializationUtils<SkColor> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000105 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000106 writer.writeColorArray(data, arraySize);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000107 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500108 static bool Read(SkReadBuffer& reader, SkColor* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000109 return reader.readColorArray(data, arraySize);
110 }
111};
sugoi@google.com305f78e2013-11-04 16:18:15 +0000112
brianosman97bbf822016-09-25 13:15:58 -0700113template<> struct SerializationUtils<SkColor4f> {
114 static void Write(SkWriteBuffer& writer, SkColor4f* data, uint32_t arraySize) {
115 writer.writeColor4fArray(data, arraySize);
116 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500117 static bool Read(SkReadBuffer& reader, SkColor4f* data, uint32_t arraySize) {
brianosman97bbf822016-09-25 13:15:58 -0700118 return reader.readColor4fArray(data, arraySize);
119 }
120};
121
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000122template<> struct SerializationUtils<int32_t> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000123 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000124 writer.writeIntArray(data, arraySize);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000125 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500126 static bool Read(SkReadBuffer& reader, int32_t* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000127 return reader.readIntArray(data, arraySize);
128 }
129};
sugoi@google.com305f78e2013-11-04 16:18:15 +0000130
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000131template<> struct SerializationUtils<SkPoint> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000132 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000133 writer.writePointArray(data, arraySize);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000134 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500135 static bool Read(SkReadBuffer& reader, SkPoint* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000136 return reader.readPointArray(data, arraySize);
137 }
138};
reed@google.com12a23862013-11-04 21:35:55 +0000139
Michael Ludwigea241402018-08-22 09:26:33 -0400140template<> struct SerializationUtils<SkPoint3> {
141 static void Write(SkWriteBuffer& writer, const SkPoint3* data) {
142 writer.writePoint3(*data);
143 }
144 static void Read(SkReadBuffer& reader, SkPoint3* data) {
145 reader.readPoint3(data);
146 }
147};
148
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000149template<> struct SerializationUtils<SkScalar> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000150 static void Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000151 writer.writeScalarArray(data, arraySize);
152 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500153 static bool Read(SkReadBuffer& reader, SkScalar* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000154 return reader.readScalarArray(data, arraySize);
155 }
156};
reed@google.com12a23862013-11-04 21:35:55 +0000157
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000158template<typename T, bool testInvalid> struct SerializationTestUtils {
159 static void InvalidateData(unsigned char* data) {}
160};
161
162template<> struct SerializationTestUtils<SkString, true> {
163 static void InvalidateData(unsigned char* data) {
164 data[3] |= 0x80; // Reverse sign of 1st integer
165 }
166};
167
168template<typename T, bool testInvalid>
169static void TestObjectSerializationNoAlign(T* testObj, skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700170 SkBinaryWriteBuffer writer;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000171 SerializationUtils<T>::Write(writer, testObj);
172 size_t bytesWritten = writer.bytesWritten();
173 REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
reed@google.com12a23862013-11-04 21:35:55 +0000174
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000175 unsigned char dataWritten[1024];
176 writer.writeToMemory(dataWritten);
177
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000178 SerializationTestUtils<T, testInvalid>::InvalidateData(dataWritten);
179
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000180 // Make sure this fails when it should (test with smaller size, but still multiple of 4)
Mike Reedfadbfcd2017-12-06 16:09:20 -0500181 SkReadBuffer buffer(dataWritten, bytesWritten - 4);
commit-bot@chromium.org8f457e32013-11-08 19:22:57 +0000182 T obj;
183 SerializationUtils<T>::Read(buffer, &obj);
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000184 REPORTER_ASSERT(reporter, !buffer.isValid());
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000185
186 // Make sure this succeeds when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500187 SkReadBuffer buffer2(dataWritten, bytesWritten);
Robert Phillipsb2526042016-09-26 09:00:36 -0400188 size_t offsetBefore = buffer2.offset();
commit-bot@chromium.org8f457e32013-11-08 19:22:57 +0000189 T obj2;
190 SerializationUtils<T>::Read(buffer2, &obj2);
Robert Phillipsb2526042016-09-26 09:00:36 -0400191 size_t offsetAfter = buffer2.offset();
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000192 // This should have succeeded, since there are enough bytes to read this
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000193 REPORTER_ASSERT(reporter, buffer2.isValid() == !testInvalid);
194 // Note: This following test should always succeed, regardless of whether the buffer is valid,
195 // since if it is invalid, it will simply skip to the end, as if it had read the whole buffer.
Robert Phillipsb2526042016-09-26 09:00:36 -0400196 REPORTER_ASSERT(reporter, offsetAfter - offsetBefore == bytesWritten);
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000197}
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000198
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000199template<typename T>
200static void TestObjectSerialization(T* testObj, skiatest::Reporter* reporter) {
201 TestObjectSerializationNoAlign<T, false>(testObj, reporter);
Cary Clark6d6d6032017-10-20 12:14:33 -0400202 SerializationTest::TestAlignment(testObj, reporter);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000203}
204
205template<typename T>
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000206static T* TestFlattenableSerialization(T* testObj, bool shouldSucceed,
207 skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700208 SkBinaryWriteBuffer writer;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000209 SerializationUtils<T>::Write(writer, testObj);
210 size_t bytesWritten = writer.bytesWritten();
211 REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
212
dvonbeck8811e402016-06-16 12:39:25 -0700213 SkASSERT(bytesWritten <= 4096);
senorblanco91c395a2014-09-25 15:51:35 -0700214 unsigned char dataWritten[4096];
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000215 writer.writeToMemory(dataWritten);
216
217 // Make sure this fails when it should (test with smaller size, but still multiple of 4)
Mike Reedfadbfcd2017-12-06 16:09:20 -0500218 SkReadBuffer buffer(dataWritten, bytesWritten - 4);
halcanary96fcdcc2015-08-27 07:41:13 -0700219 T* obj = nullptr;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000220 SerializationUtils<T>::Read(buffer, &obj);
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000221 REPORTER_ASSERT(reporter, !buffer.isValid());
halcanary96fcdcc2015-08-27 07:41:13 -0700222 REPORTER_ASSERT(reporter, nullptr == obj);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000223
224 // Make sure this succeeds when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500225 SkReadBuffer buffer2(dataWritten, bytesWritten);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000226 const unsigned char* peekBefore = static_cast<const unsigned char*>(buffer2.skip(0));
halcanary96fcdcc2015-08-27 07:41:13 -0700227 T* obj2 = nullptr;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000228 SerializationUtils<T>::Read(buffer2, &obj2);
229 const unsigned char* peekAfter = static_cast<const unsigned char*>(buffer2.skip(0));
230 if (shouldSucceed) {
231 // This should have succeeded, since there are enough bytes to read this
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000232 REPORTER_ASSERT(reporter, buffer2.isValid());
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000233 REPORTER_ASSERT(reporter, static_cast<size_t>(peekAfter - peekBefore) == bytesWritten);
bsalomon49f085d2014-09-05 13:34:00 -0700234 REPORTER_ASSERT(reporter, obj2);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000235 } else {
236 // If the deserialization was supposed to fail, make sure it did
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000237 REPORTER_ASSERT(reporter, !buffer.isValid());
halcanary96fcdcc2015-08-27 07:41:13 -0700238 REPORTER_ASSERT(reporter, nullptr == obj2);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000239 }
240
241 return obj2; // Return object to perform further validity tests on it
242}
243
244template<typename T>
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000245static void TestArraySerialization(T* data, skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700246 SkBinaryWriteBuffer writer;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000247 SerializationUtils<T>::Write(writer, data, kArraySize);
248 size_t bytesWritten = writer.bytesWritten();
249 // This should write the length (in 4 bytes) and the array
250 REPORTER_ASSERT(reporter, (4 + kArraySize * sizeof(T)) == bytesWritten);
251
brianosman97bbf822016-09-25 13:15:58 -0700252 unsigned char dataWritten[2048];
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000253 writer.writeToMemory(dataWritten);
254
255 // Make sure this fails when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500256 SkReadBuffer buffer(dataWritten, bytesWritten);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000257 T dataRead[kArraySize];
258 bool success = SerializationUtils<T>::Read(buffer, dataRead, kArraySize / 2);
259 // This should have failed, since the provided size was too small
260 REPORTER_ASSERT(reporter, !success);
261
262 // Make sure this succeeds when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500263 SkReadBuffer buffer2(dataWritten, bytesWritten);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000264 success = SerializationUtils<T>::Read(buffer2, dataRead, kArraySize);
265 // This should have succeeded, since there are enough bytes to read this
266 REPORTER_ASSERT(reporter, success);
267}
268
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000269static void TestBitmapSerialization(const SkBitmap& validBitmap,
270 const SkBitmap& invalidBitmap,
271 bool shouldSucceed,
272 skiatest::Reporter* reporter) {
reed9ce9d672016-03-17 10:51:11 -0700273 sk_sp<SkImage> validImage(SkImage::MakeFromBitmap(validBitmap));
Michael Ludwig55edb502019-08-05 10:41:10 -0400274 sk_sp<SkImageFilter> validBitmapSource(SkImageFilters::Image(std::move(validImage)));
reed9ce9d672016-03-17 10:51:11 -0700275 sk_sp<SkImage> invalidImage(SkImage::MakeFromBitmap(invalidBitmap));
Michael Ludwig55edb502019-08-05 10:41:10 -0400276 sk_sp<SkImageFilter> invalidBitmapSource(SkImageFilters::Image(std::move(invalidImage)));
reedcfb6bdf2016-03-29 11:32:50 -0700277 sk_sp<SkImageFilter> xfermodeImageFilter(
Michael Ludwig55edb502019-08-05 10:41:10 -0400278 SkImageFilters::Xfermode(SkBlendMode::kSrcOver,
279 std::move(invalidBitmapSource),
280 std::move(validBitmapSource), nullptr));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000281
Mike Reed5e257172016-11-01 11:22:05 -0400282 sk_sp<SkImageFilter> deserializedFilter(
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000283 TestFlattenableSerialization<SkImageFilter>(
reedcfb6bdf2016-03-29 11:32:50 -0700284 xfermodeImageFilter.get(), shouldSucceed, reporter));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000285
286 // Try to render a small bitmap using the invalid deserialized filter
287 // to make sure we don't crash while trying to render it
288 if (shouldSucceed) {
289 SkBitmap bitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000290 bitmap.allocN32Pixels(24, 24);
291 SkCanvas canvas(bitmap);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000292 canvas.clear(0x00000000);
293 SkPaint paint;
294 paint.setImageFilter(deserializedFilter);
295 canvas.clipRect(SkRect::MakeXYWH(0, 0, SkIntToScalar(24), SkIntToScalar(24)));
296 canvas.drawBitmap(bitmap, 0, 0, &paint);
297 }
298}
299
senorblanco91c395a2014-09-25 15:51:35 -0700300static void TestColorFilterSerialization(skiatest::Reporter* reporter) {
301 uint8_t table[256];
302 for (int i = 0; i < 256; ++i) {
303 table[i] = (i * 41) % 256;
304 }
Mike Reed79915942020-06-26 09:05:10 -0400305 auto filter = SkTableColorFilter::Make(table);
Michael Ludwiga693a472020-06-25 21:41:09 +0000306 sk_sp<SkColorFilter> copy(
Mike Reed79915942020-06-26 09:05:10 -0400307 TestFlattenableSerialization(as_CFB(filter.get()), true, reporter));
senorblanco91c395a2014-09-25 15:51:35 -0700308}
309
caseq26337e92014-06-30 12:14:52 -0700310static SkBitmap draw_picture(SkPicture& picture) {
311 SkBitmap bitmap;
halcanary9d524f22016-03-29 09:03:52 -0700312 bitmap.allocN32Pixels(SkScalarCeilToInt(picture.cullRect().width()),
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700313 SkScalarCeilToInt(picture.cullRect().height()));
caseq26337e92014-06-30 12:14:52 -0700314 SkCanvas canvas(bitmap);
robertphillipsc5ba71d2014-09-04 08:42:50 -0700315 picture.playback(&canvas);
caseq26337e92014-06-30 12:14:52 -0700316 return bitmap;
317}
318
319static void compare_bitmaps(skiatest::Reporter* reporter,
320 const SkBitmap& b1, const SkBitmap& b2) {
321 REPORTER_ASSERT(reporter, b1.width() == b2.width());
322 REPORTER_ASSERT(reporter, b1.height() == b2.height());
caseq26337e92014-06-30 12:14:52 -0700323
324 if ((b1.width() != b2.width()) ||
325 (b1.height() != b2.height())) {
326 return;
327 }
328
329 int pixelErrors = 0;
330 for (int y = 0; y < b2.height(); ++y) {
331 for (int x = 0; x < b2.width(); ++x) {
332 if (b1.getColor(x, y) != b2.getColor(x, y))
333 ++pixelErrors;
334 }
335 }
336 REPORTER_ASSERT(reporter, 0 == pixelErrors);
337}
Alan Screen3cf3d922020-06-19 10:43:50 -0700338
339static sk_sp<SkData> serialize_typeface_proc(SkTypeface* typeface, void* ctx) {
340 // Write out typeface ID followed by entire typeface.
341 SkDynamicMemoryWStream stream;
342 sk_sp<SkData> data(typeface->serialize(SkTypeface::SerializeBehavior::kDoIncludeData));
343 uint32_t typeface_id = typeface->uniqueID();
344 stream.write(&typeface_id, sizeof(typeface_id));
345 stream.write(data->data(), data->size());
346 return stream.detachAsData();
347}
348
349static sk_sp<SkTypeface> deserialize_typeface_proc(const void* data, size_t length, void* ctx) {
350 SkStream* stream;
351 if (length < sizeof(stream)) {
352 return nullptr;
353 }
354 memcpy(&stream, data, sizeof(stream));
355
356 SkFontID id;
357 if (!stream->read(&id, sizeof(id))) {
358 return nullptr;
359 }
360
361 sk_sp<SkTypeface> typeface = SkTypeface::MakeDeserialize(stream);
362 return typeface;
363}
364
365static void serialize_and_compare_typeface(sk_sp<SkTypeface> typeface,
366 const char* text,
367 const SkSerialProcs* serial_procs,
368 const SkDeserialProcs* deserial_procs,
369 skiatest::Reporter* reporter) {
Hal Canary3560ea72019-01-08 13:01:58 -0500370 // Create a font with the typeface.
caseq26337e92014-06-30 12:14:52 -0700371 SkPaint paint;
372 paint.setColor(SK_ColorGRAY);
Hal Canary3560ea72019-01-08 13:01:58 -0500373 SkFont font(std::move(typeface), 30);
caseq26337e92014-06-30 12:14:52 -0700374
375 // Paint some text.
376 SkPictureRecorder recorder;
377 SkIRect canvasRect = SkIRect::MakeWH(kBitmapSize, kBitmapSize);
halcanary9d524f22016-03-29 09:03:52 -0700378 SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(canvasRect.width()),
379 SkIntToScalar(canvasRect.height()),
halcanary96fcdcc2015-08-27 07:41:13 -0700380 nullptr, 0);
caseq26337e92014-06-30 12:14:52 -0700381 canvas->drawColor(SK_ColorWHITE);
Hal Canary3560ea72019-01-08 13:01:58 -0500382 canvas->drawString(text, 24, 32, font, paint);
reedca2622b2016-03-18 07:25:55 -0700383 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture());
caseq26337e92014-06-30 12:14:52 -0700384
385 // Serlialize picture and create its clone from stream.
386 SkDynamicMemoryWStream stream;
Alan Screen3cf3d922020-06-19 10:43:50 -0700387 picture->serialize(&stream, serial_procs);
Ben Wagner145dbcd2016-11-03 14:40:50 -0400388 std::unique_ptr<SkStream> inputStream(stream.detachAsStream());
Alan Screen3cf3d922020-06-19 10:43:50 -0700389 sk_sp<SkPicture> loadedPicture(SkPicture::MakeFromStream(inputStream.get(), deserial_procs));
caseq26337e92014-06-30 12:14:52 -0700390
391 // Draw both original and clone picture and compare bitmaps -- they should be identical.
392 SkBitmap origBitmap = draw_picture(*picture);
393 SkBitmap destBitmap = draw_picture(*loadedPicture);
394 compare_bitmaps(reporter, origBitmap, destBitmap);
395}
396
Ben Wagnere80a5952020-07-14 17:57:13 -0400397static sk_sp<SkTypeface> makeDistortableWithNonDefaultAxes(skiatest::Reporter* reporter) {
398 std::unique_ptr<SkStreamAsset> distortable(GetResourceAsStream("fonts/Distortable.ttf"));
399 if (!distortable) {
400 REPORT_FAILURE(reporter, "distortable", SkString());
401 return nullptr;
402 }
403
404 const SkFontArguments::VariationPosition::Coordinate position[] = {
405 { SkSetFourByteTag('w','g','h','t'), SK_ScalarSqrt2 },
406 };
407 SkFontArguments params;
408 params.setVariationDesignPosition({position, SK_ARRAY_COUNT(position)});
409
410 sk_sp<SkFontMgr> fm = SkFontMgr::RefDefault();
411
412 sk_sp<SkTypeface> typeface = fm->makeFromStream(std::move(distortable), params);
413 if (!typeface) {
414 return nullptr; // Not all SkFontMgr can makeFromStream().
415 }
416
417 int count = typeface->getVariationDesignPosition(nullptr, 0);
418 if (count == -1) {
419 return nullptr; // The number of axes is unknown.
420 }
421
422 return typeface;
423}
424
Alan Screen3cf3d922020-06-19 10:43:50 -0700425static void TestPictureTypefaceSerialization(const SkSerialProcs* serial_procs,
426 const SkDeserialProcs* deserial_procs,
427 skiatest::Reporter* reporter) {
bungeman41868fe2015-05-20 09:21:04 -0700428 {
429 // Load typeface from file to test CreateFromFile with index.
Mike Reed271d1d92018-09-03 21:10:10 -0400430 auto typeface = MakeResourceAsTypeface("fonts/test.ttc", 1);
bungeman41868fe2015-05-20 09:21:04 -0700431 if (!typeface) {
halcanary7d571242016-02-24 17:59:16 -0800432 INFOF(reporter, "Could not run fontstream test because test.ttc not found.");
bungeman41868fe2015-05-20 09:21:04 -0700433 } else {
Alan Screen3cf3d922020-06-19 10:43:50 -0700434 serialize_and_compare_typeface(std::move(typeface), "A!", serial_procs, deserial_procs,
435 reporter);
bungeman41868fe2015-05-20 09:21:04 -0700436 }
437 }
438
439 {
440 // Load typeface as stream to create with axis settings.
Ben Wagnere80a5952020-07-14 17:57:13 -0400441 auto typeface = makeDistortableWithNonDefaultAxes(reporter);
442 if (!typeface) {
443 INFOF(reporter, "Could not run fontstream test because Distortable.ttf not created.");
bungeman41868fe2015-05-20 09:21:04 -0700444 } else {
Ben Wagnere80a5952020-07-14 17:57:13 -0400445 serialize_and_compare_typeface(std::move(typeface), "ab", serial_procs,
446 deserial_procs, reporter);
bungeman41868fe2015-05-20 09:21:04 -0700447 }
448 }
449}
450
reed84825042014-09-02 12:50:45 -0700451static void setup_bitmap_for_canvas(SkBitmap* bitmap) {
452 bitmap->allocN32Pixels(kBitmapSize, kBitmapSize);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000453}
454
reed84825042014-09-02 12:50:45 -0700455static void make_checkerboard_bitmap(SkBitmap& bitmap) {
456 setup_bitmap_for_canvas(&bitmap);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000457
458 SkCanvas canvas(bitmap);
459 canvas.clear(0x00000000);
460 SkPaint darkPaint;
461 darkPaint.setColor(0xFF804020);
462 SkPaint lightPaint;
463 lightPaint.setColor(0xFF244484);
464 const int i = kBitmapSize / 8;
465 const SkScalar f = SkIntToScalar(i);
466 for (int y = 0; y < kBitmapSize; y += i) {
467 for (int x = 0; x < kBitmapSize; x += i) {
468 canvas.save();
469 canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
470 canvas.drawRect(SkRect::MakeXYWH(0, 0, f, f), darkPaint);
471 canvas.drawRect(SkRect::MakeXYWH(f, 0, f, f), lightPaint);
472 canvas.drawRect(SkRect::MakeXYWH(0, f, f, f), lightPaint);
473 canvas.drawRect(SkRect::MakeXYWH(f, f, f, f), darkPaint);
474 canvas.restore();
475 }
476 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000477}
478
reed84825042014-09-02 12:50:45 -0700479static void draw_something(SkCanvas* canvas) {
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000480 SkPaint paint;
481 SkBitmap bitmap;
reed84825042014-09-02 12:50:45 -0700482 make_checkerboard_bitmap(bitmap);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000483
484 canvas->save();
485 canvas->scale(0.5f, 0.5f);
halcanary96fcdcc2015-08-27 07:41:13 -0700486 canvas->drawBitmap(bitmap, 0, 0, nullptr);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000487 canvas->restore();
488
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000489 paint.setAntiAlias(true);
490
491 paint.setColor(SK_ColorRED);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000492 canvas->drawCircle(SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/3), paint);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000493 paint.setColor(SK_ColorBLACK);
Mike Reed1af9b482019-01-07 11:01:57 -0500494
495 SkFont font;
496 font.setSize(kBitmapSize/3);
497 canvas->drawString("Picture", SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/4), font, paint);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000498}
499
Ben Wagner7825d492019-07-10 16:27:34 -0400500static sk_sp<SkImage> render(const SkPicture& p) {
501 auto surf = SkSurface::MakeRasterN32Premul(SkScalarRoundToInt(p.cullRect().width()),
502 SkScalarRoundToInt(p.cullRect().height()));
503 if (!surf) {
504 return nullptr; // bounds are empty?
505 }
506 surf->getCanvas()->clear(SK_ColorWHITE);
507 p.playback(surf->getCanvas());
508 return surf->makeImageSnapshot();
509}
510
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000511DEF_TEST(Serialization, reporter) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000512 // Test matrix serialization
513 {
514 SkMatrix matrix = SkMatrix::I();
515 TestObjectSerialization(&matrix, reporter);
caseq26337e92014-06-30 12:14:52 -0700516 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000517
Michael Ludwigea241402018-08-22 09:26:33 -0400518 // Test point3 serialization
519 {
520 SkPoint3 point;
521 TestObjectSerializationNoAlign<SkPoint3, false>(&point, reporter);
522 }
523
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000524 // Test path serialization
525 {
526 SkPath path;
527 TestObjectSerialization(&path, reporter);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000528 }
sugoi@google.com305f78e2013-11-04 16:18:15 +0000529
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000530 // Test region serialization
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000531 {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000532 SkRegion region;
533 TestObjectSerialization(&region, reporter);
534 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000535
senorblanco91c395a2014-09-25 15:51:35 -0700536 // Test color filter serialization
537 {
538 TestColorFilterSerialization(reporter);
539 }
540
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000541 // Test string serialization
542 {
543 SkString string("string");
544 TestObjectSerializationNoAlign<SkString, false>(&string, reporter);
545 TestObjectSerializationNoAlign<SkString, true>(&string, reporter);
546 }
547
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000548 // Test rrect serialization
549 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000550 // SkRRect does not initialize anything.
551 // An uninitialized SkRRect can be serialized,
552 // but will branch on uninitialized data when deserialized.
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000553 SkRRect rrect;
rmistry@google.comd6bab022013-12-02 13:50:38 +0000554 SkRect rect = SkRect::MakeXYWH(1, 2, 20, 30);
555 SkVector corners[4] = { {1, 2}, {2, 3}, {3,4}, {4,5} };
556 rrect.setRectRadii(rect, corners);
Cary Clark6d6d6032017-10-20 12:14:33 -0400557 SerializationTest::TestAlignment(&rrect, reporter);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000558 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000559
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000560 // Test readByteArray
561 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000562 unsigned char data[kArraySize] = { 1, 2, 3 };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000563 TestArraySerialization(data, reporter);
564 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000565
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000566 // Test readColorArray
567 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000568 SkColor data[kArraySize] = { SK_ColorBLACK, SK_ColorWHITE, SK_ColorRED };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000569 TestArraySerialization(data, reporter);
570 }
571
brianosman97bbf822016-09-25 13:15:58 -0700572 // Test readColor4fArray
573 {
574 SkColor4f data[kArraySize] = {
575 SkColor4f::FromColor(SK_ColorBLACK),
576 SkColor4f::FromColor(SK_ColorWHITE),
577 SkColor4f::FromColor(SK_ColorRED),
578 { 1.f, 2.f, 4.f, 8.f }
579 };
580 TestArraySerialization(data, reporter);
581 }
582
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000583 // Test readIntArray
584 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000585 int32_t data[kArraySize] = { 1, 2, 4, 8 };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000586 TestArraySerialization(data, reporter);
587 }
588
589 // Test readPointArray
590 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000591 SkPoint data[kArraySize] = { {6, 7}, {42, 128} };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000592 TestArraySerialization(data, reporter);
593 }
594
595 // Test readScalarArray
596 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000597 SkScalar data[kArraySize] = { SK_Scalar1, SK_ScalarHalf, SK_ScalarMax };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000598 TestArraySerialization(data, reporter);
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000599 }
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000600
Brian Osman9e4e4c72020-06-10 07:19:34 -0400601 // Test skipByteArray
602 {
603 // Valid case with non-empty array:
604 {
605 unsigned char data[kArraySize] = { 1, 2, 3 };
606 SkBinaryWriteBuffer writer;
607 writer.writeByteArray(data, kArraySize);
608 SkAutoMalloc buf(writer.bytesWritten());
609 writer.writeToMemory(buf.get());
610
611 SkReadBuffer reader(buf.get(), writer.bytesWritten());
612 size_t len = ~0;
613 const void* arr = reader.skipByteArray(&len);
614 REPORTER_ASSERT(reporter, arr);
615 REPORTER_ASSERT(reporter, len == kArraySize);
616 REPORTER_ASSERT(reporter, memcmp(arr, data, len) == 0);
617 }
618
619 // Writing a zero length array (can be detected as valid by non-nullptr return):
620 {
621 SkBinaryWriteBuffer writer;
622 writer.writeByteArray(nullptr, 0);
623 SkAutoMalloc buf(writer.bytesWritten());
624 writer.writeToMemory(buf.get());
625
626 SkReadBuffer reader(buf.get(), writer.bytesWritten());
627 size_t len = ~0;
628 const void* arr = reader.skipByteArray(&len);
629 REPORTER_ASSERT(reporter, arr);
630 REPORTER_ASSERT(reporter, len == 0);
631 }
632
633 // If the array can't be safely read, should return nullptr:
634 {
635 SkBinaryWriteBuffer writer;
636 writer.writeUInt(kArraySize);
637 SkAutoMalloc buf(writer.bytesWritten());
638 writer.writeToMemory(buf.get());
639
640 SkReadBuffer reader(buf.get(), writer.bytesWritten());
641 size_t len = ~0;
642 const void* arr = reader.skipByteArray(&len);
643 REPORTER_ASSERT(reporter, !arr);
644 REPORTER_ASSERT(reporter, len == 0);
645 }
646 }
647
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000648 // Test invalid deserializations
649 {
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000650 SkImageInfo info = SkImageInfo::MakeN32Premul(kBitmapSize, kBitmapSize);
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000651
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000652 SkBitmap validBitmap;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000653 validBitmap.setInfo(info);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000654
655 // Create a bitmap with a really large height
656 SkBitmap invalidBitmap;
reede5ea5002014-09-03 11:54:58 -0700657 invalidBitmap.setInfo(info.makeWH(info.width(), 1000000000));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000658
659 // The deserialization should succeed, and the rendering shouldn't crash,
660 // even when the device fails to initialize, due to its size
661 TestBitmapSerialization(validBitmap, invalidBitmap, true, reporter);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000662 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000663
664 // Test simple SkPicture serialization
665 {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000666 SkPictureRecorder recorder;
reed84825042014-09-02 12:50:45 -0700667 draw_something(recorder.beginRecording(SkIntToScalar(kBitmapSize),
668 SkIntToScalar(kBitmapSize),
halcanary96fcdcc2015-08-27 07:41:13 -0700669 nullptr, 0));
reedca2622b2016-03-18 07:25:55 -0700670 sk_sp<SkPicture> pict(recorder.finishRecordingAsPicture());
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000671
672 // Serialize picture
brianosmanfad98562016-05-04 11:06:28 -0700673 SkBinaryWriteBuffer writer;
Cary Clarkefd99cc2018-06-11 16:25:43 -0400674 SkPicturePriv::Flatten(pict, writer);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000675 size_t size = writer.bytesWritten();
commit-bot@chromium.org1e7ee992014-03-14 21:22:22 +0000676 SkAutoTMalloc<unsigned char> data(size);
677 writer.writeToMemory(static_cast<void*>(data.get()));
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000678
679 // Deserialize picture
Mike Reedfadbfcd2017-12-06 16:09:20 -0500680 SkReadBuffer reader(static_cast<void*>(data.get()), size);
Cary Clarkefd99cc2018-06-11 16:25:43 -0400681 sk_sp<SkPicture> readPict(SkPicturePriv::MakeFromBuffer(reader));
reedd921dbb2016-09-30 09:27:20 -0700682 REPORTER_ASSERT(reporter, reader.isValid());
bsalomon49f085d2014-09-05 13:34:00 -0700683 REPORTER_ASSERT(reporter, readPict.get());
Ben Wagner7825d492019-07-10 16:27:34 -0400684 sk_sp<SkImage> img0 = render(*pict);
685 sk_sp<SkImage> img1 = render(*readPict);
686 if (img0 && img1) {
687 REPORTER_ASSERT(reporter, ToolUtils::equal_pixels(img0.get(), img1.get()));
688 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000689 }
caseq26337e92014-06-30 12:14:52 -0700690
Alan Screen3cf3d922020-06-19 10:43:50 -0700691 TestPictureTypefaceSerialization(nullptr, nullptr, reporter);
692
693 SkSerialProcs serial_procs;
694 serial_procs.fTypefaceProc = serialize_typeface_proc;
695 SkDeserialProcs deserial_procs;
696 deserial_procs.fTypefaceProc = deserialize_typeface_proc;
697 TestPictureTypefaceSerialization(&serial_procs, &deserial_procs, reporter);
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000698}
reedf70b5312016-03-04 16:36:20 -0800699
700///////////////////////////////////////////////////////////////////////////////////////////////////
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500701#include "include/core/SkAnnotation.h"
reedf70b5312016-03-04 16:36:20 -0800702
reedca2622b2016-03-18 07:25:55 -0700703static sk_sp<SkPicture> copy_picture_via_serialization(SkPicture* src) {
reedf70b5312016-03-04 16:36:20 -0800704 SkDynamicMemoryWStream wstream;
705 src->serialize(&wstream);
Ben Wagner145dbcd2016-11-03 14:40:50 -0400706 std::unique_ptr<SkStreamAsset> rstream(wstream.detachAsStream());
707 return SkPicture::MakeFromStream(rstream.get());
reedf70b5312016-03-04 16:36:20 -0800708}
709
710struct AnnotationRec {
711 const SkRect fRect;
712 const char* fKey;
bungeman38d909e2016-08-02 14:40:46 -0700713 sk_sp<SkData> fValue;
reedf70b5312016-03-04 16:36:20 -0800714};
715
716class TestAnnotationCanvas : public SkCanvas {
717 skiatest::Reporter* fReporter;
718 const AnnotationRec* fRec;
719 int fCount;
720 int fCurrIndex;
721
722public:
723 TestAnnotationCanvas(skiatest::Reporter* reporter, const AnnotationRec rec[], int count)
724 : SkCanvas(100, 100)
725 , fReporter(reporter)
726 , fRec(rec)
727 , fCount(count)
728 , fCurrIndex(0)
729 {}
730
731 ~TestAnnotationCanvas() {
732 REPORTER_ASSERT(fReporter, fCount == fCurrIndex);
733 }
734
735protected:
736 void onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
737 REPORTER_ASSERT(fReporter, fCurrIndex < fCount);
738 REPORTER_ASSERT(fReporter, rect == fRec[fCurrIndex].fRect);
739 REPORTER_ASSERT(fReporter, !strcmp(key, fRec[fCurrIndex].fKey));
bungeman38d909e2016-08-02 14:40:46 -0700740 REPORTER_ASSERT(fReporter, value->equals(fRec[fCurrIndex].fValue.get()));
reedf70b5312016-03-04 16:36:20 -0800741 fCurrIndex += 1;
742 }
743};
744
745/*
746 * Test the 3 annotation types by recording them into a picture, serializing, and then playing
747 * them back into another canvas.
748 */
749DEF_TEST(Annotations, reporter) {
750 SkPictureRecorder recorder;
751 SkCanvas* recordingCanvas = recorder.beginRecording(SkRect::MakeWH(100, 100));
halcanary9d524f22016-03-29 09:03:52 -0700752
reedf70b5312016-03-04 16:36:20 -0800753 const char* str0 = "rect-with-url";
754 const SkRect r0 = SkRect::MakeWH(10, 10);
bungeman38d909e2016-08-02 14:40:46 -0700755 sk_sp<SkData> d0(SkData::MakeWithCString(str0));
756 SkAnnotateRectWithURL(recordingCanvas, r0, d0.get());
halcanary9d524f22016-03-29 09:03:52 -0700757
reedf70b5312016-03-04 16:36:20 -0800758 const char* str1 = "named-destination";
759 const SkRect r1 = SkRect::MakeXYWH(5, 5, 0, 0); // collapsed to a point
bungeman38d909e2016-08-02 14:40:46 -0700760 sk_sp<SkData> d1(SkData::MakeWithCString(str1));
761 SkAnnotateNamedDestination(recordingCanvas, {r1.x(), r1.y()}, d1.get());
halcanary9d524f22016-03-29 09:03:52 -0700762
reedf70b5312016-03-04 16:36:20 -0800763 const char* str2 = "link-to-destination";
764 const SkRect r2 = SkRect::MakeXYWH(20, 20, 5, 6);
bungeman38d909e2016-08-02 14:40:46 -0700765 sk_sp<SkData> d2(SkData::MakeWithCString(str2));
766 SkAnnotateLinkToDestination(recordingCanvas, r2, d2.get());
reedf70b5312016-03-04 16:36:20 -0800767
768 const AnnotationRec recs[] = {
bungeman38d909e2016-08-02 14:40:46 -0700769 { r0, SkAnnotationKeys::URL_Key(), std::move(d0) },
770 { r1, SkAnnotationKeys::Define_Named_Dest_Key(), std::move(d1) },
771 { r2, SkAnnotationKeys::Link_Named_Dest_Key(), std::move(d2) },
reedf70b5312016-03-04 16:36:20 -0800772 };
773
reedca2622b2016-03-18 07:25:55 -0700774 sk_sp<SkPicture> pict0(recorder.finishRecordingAsPicture());
775 sk_sp<SkPicture> pict1(copy_picture_via_serialization(pict0.get()));
reedf70b5312016-03-04 16:36:20 -0800776
777 TestAnnotationCanvas canvas(reporter, recs, SK_ARRAY_COUNT(recs));
778 canvas.drawPicture(pict1);
779}
Mike Reed25325842018-03-14 09:52:02 -0400780
781DEF_TEST(WriteBuffer_storage, reporter) {
782 enum {
783 kSize = 32
784 };
785 int32_t storage[kSize/4];
786 char src[kSize];
787 sk_bzero(src, kSize);
788
789 SkBinaryWriteBuffer writer(storage, kSize);
790 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
791 REPORTER_ASSERT(reporter, writer.bytesWritten() == 0);
792 writer.write(src, kSize - 4);
793 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
794 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize - 4);
795 writer.writeInt(0);
796 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
797 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize);
798
799 writer.reset(storage, kSize-4);
800 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
801 REPORTER_ASSERT(reporter, writer.bytesWritten() == 0);
802 writer.write(src, kSize - 4);
803 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
804 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize - 4);
805 writer.writeInt(0);
806 REPORTER_ASSERT(reporter, !writer.usingInitialStorage()); // this is the change
807 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize);
808}
Khushal42f8bc42018-04-03 17:51:40 -0700809
810DEF_TEST(WriteBuffer_external_memory_textblob, reporter) {
Mike Reed2ed78202018-11-21 15:10:08 -0500811 SkFont font;
Khushal42f8bc42018-04-03 17:51:40 -0700812 font.setTypeface(SkTypeface::MakeDefault());
813
814 SkTextBlobBuilder builder;
815 int glyph_count = 5;
816 const auto& run = builder.allocRun(font, glyph_count, 1.2f, 2.3f);
817 // allocRun() allocates only the glyph buffer.
818 std::fill(run.glyphs, run.glyphs + glyph_count, 0);
819 auto blob = builder.make();
820 SkSerialProcs procs;
821 SkAutoTMalloc<uint8_t> storage;
822 size_t blob_size = 0u;
823 size_t storage_size = 0u;
824
825 blob_size = SkAlign4(blob->serialize(procs)->size());
826 REPORTER_ASSERT(reporter, blob_size > 4u);
827 storage_size = blob_size - 4;
828 storage.realloc(storage_size);
829 REPORTER_ASSERT(reporter, blob->serialize(procs, storage.get(), storage_size) == 0u);
830 storage_size = blob_size;
831 storage.realloc(storage_size);
832 REPORTER_ASSERT(reporter, blob->serialize(procs, storage.get(), storage_size) != 0u);
833}
834
835DEF_TEST(WriteBuffer_external_memory_flattenable, reporter) {
836 SkScalar intervals[] = {1.f, 1.f};
837 auto path_effect = SkDashPathEffect::Make(intervals, 2, 0);
838 size_t path_size = SkAlign4(path_effect->serialize()->size());
839 REPORTER_ASSERT(reporter, path_size > 4u);
840 SkAutoTMalloc<uint8_t> storage;
841
842 size_t storage_size = path_size - 4;
843 storage.realloc(storage_size);
844 REPORTER_ASSERT(reporter, path_effect->serialize(storage.get(), storage_size) == 0u);
845
846 storage_size = path_size;
847 storage.realloc(storage_size);
848 REPORTER_ASSERT(reporter, path_effect->serialize(storage.get(), storage_size) != 0u);
849}
Mike Reed33b1ecc2020-02-18 22:22:49 -0500850
Mike Reed33b1ecc2020-02-18 22:22:49 -0500851DEF_TEST(ReadBuffer_empty, reporter) {
852 SkBinaryWriteBuffer writer;
853 writer.writeInt(123);
854 writer.writeDataAsByteArray(SkData::MakeEmpty().get());
855 writer.writeInt(321);
856
857 size_t size = writer.bytesWritten();
858 SkAutoMalloc storage(size);
859 writer.writeToMemory(storage.get());
860
861 SkReadBuffer reader(storage.get(), size);
862 REPORTER_ASSERT(reporter, reader.readInt() == 123);
863 auto data = reader.readByteArrayAsData();
864 REPORTER_ASSERT(reporter, data->size() == 0);
865 REPORTER_ASSERT(reporter, reader.readInt() == 321);
866}