blob: 97616b334f4711491c8acf2f3a289a2827d76de2 [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 Wagner81eabce2020-08-18 13:17:09 -04009#include "include/core/SkFontMetrics.h"
Ben Wagnere80a5952020-07-14 17:57:13 -040010#include "include/core/SkFontMgr.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkImage.h"
12#include "include/core/SkMallocPixelRef.h"
13#include "include/core/SkPictureRecorder.h"
14#include "include/core/SkTextBlob.h"
15#include "include/core/SkTypeface.h"
16#include "include/effects/SkDashPathEffect.h"
Michael Ludwig55edb502019-08-05 10:41:10 -040017#include "include/effects/SkImageFilters.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "include/effects/SkTableColorFilter.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "include/private/SkFixed.h"
20#include "include/private/SkTemplates.h"
21#include "src/core/SkAnnotationKeys.h"
Brian Osman9e4e4c72020-06-10 07:19:34 -040022#include "src/core/SkAutoMalloc.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050023#include "src/core/SkMatrixPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "src/core/SkOSFile.h"
25#include "src/core/SkPicturePriv.h"
26#include "src/core/SkReadBuffer.h"
27#include "src/core/SkWriteBuffer.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050028#include "src/shaders/SkShaderBase.h"
29#include "tests/Test.h"
30#include "tools/Resources.h"
31#include "tools/ToolUtils.h"
commit-bot@chromium.org02512882013-10-31 18:37:50 +000032
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000033static const uint32_t kArraySize = 64;
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +000034static const int kBitmapSize = 256;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000035
Cary Clark6d6d6032017-10-20 12:14:33 -040036class SerializationTest {
37public:
38
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000039template<typename T>
40static void TestAlignment(T* testObj, skiatest::Reporter* reporter) {
41 // Test memory read/write functions directly
42 unsigned char dataWritten[1024];
43 size_t bytesWrittenToMemory = testObj->writeToMemory(dataWritten);
44 REPORTER_ASSERT(reporter, SkAlign4(bytesWrittenToMemory) == bytesWrittenToMemory);
45 size_t bytesReadFromMemory = testObj->readFromMemory(dataWritten, bytesWrittenToMemory);
46 REPORTER_ASSERT(reporter, SkAlign4(bytesReadFromMemory) == bytesReadFromMemory);
47}
Cary Clark6d6d6032017-10-20 12:14:33 -040048};
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000049
50template<typename T> struct SerializationUtils {
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000051 // Generic case for flattenables
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000052 static void Write(SkWriteBuffer& writer, const T* flattenable) {
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000053 writer.writeFlattenable(flattenable);
54 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050055 static void Read(SkReadBuffer& reader, T** flattenable) {
mtklein3b375452016-04-04 14:57:19 -070056 *flattenable = (T*)reader.readFlattenable(T::GetFlattenableType());
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000057 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000058};
59
60template<> struct SerializationUtils<SkMatrix> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000061 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000062 writer.writeMatrix(*matrix);
63 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050064 static void Read(SkReadBuffer& reader, SkMatrix* matrix) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000065 reader.readMatrix(matrix);
66 }
67};
68
69template<> struct SerializationUtils<SkPath> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000070 static void Write(SkWriteBuffer& writer, const SkPath* path) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000071 writer.writePath(*path);
72 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050073 static void Read(SkReadBuffer& reader, SkPath* path) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000074 reader.readPath(path);
75 }
76};
77
78template<> struct SerializationUtils<SkRegion> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000079 static void Write(SkWriteBuffer& writer, const SkRegion* region) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000080 writer.writeRegion(*region);
81 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050082 static void Read(SkReadBuffer& reader, SkRegion* region) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000083 reader.readRegion(region);
84 }
85};
86
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +000087template<> struct SerializationUtils<SkString> {
88 static void Write(SkWriteBuffer& writer, const SkString* string) {
89 writer.writeString(string->c_str());
90 }
Mike Reedfadbfcd2017-12-06 16:09:20 -050091 static void Read(SkReadBuffer& reader, SkString* string) {
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +000092 reader.readString(string);
93 }
94};
95
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000096template<> struct SerializationUtils<unsigned char> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000097 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +000098 writer.writeByteArray(data, arraySize);
sugoi@google.com305f78e2013-11-04 16:18:15 +000099 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500100 static bool Read(SkReadBuffer& reader, unsigned char* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000101 return reader.readByteArray(data, arraySize);
102 }
103};
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000104
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000105template<> struct SerializationUtils<SkColor> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000106 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000107 writer.writeColorArray(data, arraySize);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000108 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500109 static bool Read(SkReadBuffer& reader, SkColor* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000110 return reader.readColorArray(data, arraySize);
111 }
112};
sugoi@google.com305f78e2013-11-04 16:18:15 +0000113
brianosman97bbf822016-09-25 13:15:58 -0700114template<> struct SerializationUtils<SkColor4f> {
115 static void Write(SkWriteBuffer& writer, SkColor4f* data, uint32_t arraySize) {
116 writer.writeColor4fArray(data, arraySize);
117 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500118 static bool Read(SkReadBuffer& reader, SkColor4f* data, uint32_t arraySize) {
brianosman97bbf822016-09-25 13:15:58 -0700119 return reader.readColor4fArray(data, arraySize);
120 }
121};
122
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000123template<> struct SerializationUtils<int32_t> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000124 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000125 writer.writeIntArray(data, arraySize);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000126 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500127 static bool Read(SkReadBuffer& reader, int32_t* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000128 return reader.readIntArray(data, arraySize);
129 }
130};
sugoi@google.com305f78e2013-11-04 16:18:15 +0000131
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000132template<> struct SerializationUtils<SkPoint> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000133 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000134 writer.writePointArray(data, arraySize);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000135 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500136 static bool Read(SkReadBuffer& reader, SkPoint* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000137 return reader.readPointArray(data, arraySize);
138 }
139};
reed@google.com12a23862013-11-04 21:35:55 +0000140
Michael Ludwigea241402018-08-22 09:26:33 -0400141template<> struct SerializationUtils<SkPoint3> {
142 static void Write(SkWriteBuffer& writer, const SkPoint3* data) {
143 writer.writePoint3(*data);
144 }
145 static void Read(SkReadBuffer& reader, SkPoint3* data) {
146 reader.readPoint3(data);
147 }
148};
149
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000150template<> struct SerializationUtils<SkScalar> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000151 static void Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000152 writer.writeScalarArray(data, arraySize);
153 }
Mike Reedfadbfcd2017-12-06 16:09:20 -0500154 static bool Read(SkReadBuffer& reader, SkScalar* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000155 return reader.readScalarArray(data, arraySize);
156 }
157};
reed@google.com12a23862013-11-04 21:35:55 +0000158
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000159template<typename T, bool testInvalid> struct SerializationTestUtils {
160 static void InvalidateData(unsigned char* data) {}
161};
162
163template<> struct SerializationTestUtils<SkString, true> {
164 static void InvalidateData(unsigned char* data) {
165 data[3] |= 0x80; // Reverse sign of 1st integer
166 }
167};
168
169template<typename T, bool testInvalid>
170static void TestObjectSerializationNoAlign(T* testObj, skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700171 SkBinaryWriteBuffer writer;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000172 SerializationUtils<T>::Write(writer, testObj);
173 size_t bytesWritten = writer.bytesWritten();
174 REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
reed@google.com12a23862013-11-04 21:35:55 +0000175
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000176 unsigned char dataWritten[1024];
177 writer.writeToMemory(dataWritten);
178
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000179 SerializationTestUtils<T, testInvalid>::InvalidateData(dataWritten);
180
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000181 // Make sure this fails when it should (test with smaller size, but still multiple of 4)
Mike Reedfadbfcd2017-12-06 16:09:20 -0500182 SkReadBuffer buffer(dataWritten, bytesWritten - 4);
commit-bot@chromium.org8f457e32013-11-08 19:22:57 +0000183 T obj;
184 SerializationUtils<T>::Read(buffer, &obj);
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000185 REPORTER_ASSERT(reporter, !buffer.isValid());
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000186
187 // Make sure this succeeds when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500188 SkReadBuffer buffer2(dataWritten, bytesWritten);
Robert Phillipsb2526042016-09-26 09:00:36 -0400189 size_t offsetBefore = buffer2.offset();
commit-bot@chromium.org8f457e32013-11-08 19:22:57 +0000190 T obj2;
191 SerializationUtils<T>::Read(buffer2, &obj2);
Robert Phillipsb2526042016-09-26 09:00:36 -0400192 size_t offsetAfter = buffer2.offset();
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000193 // This should have succeeded, since there are enough bytes to read this
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000194 REPORTER_ASSERT(reporter, buffer2.isValid() == !testInvalid);
195 // Note: This following test should always succeed, regardless of whether the buffer is valid,
196 // 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 -0400197 REPORTER_ASSERT(reporter, offsetAfter - offsetBefore == bytesWritten);
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000198}
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000199
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000200template<typename T>
201static void TestObjectSerialization(T* testObj, skiatest::Reporter* reporter) {
202 TestObjectSerializationNoAlign<T, false>(testObj, reporter);
Cary Clark6d6d6032017-10-20 12:14:33 -0400203 SerializationTest::TestAlignment(testObj, reporter);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000204}
205
206template<typename T>
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000207static T* TestFlattenableSerialization(T* testObj, bool shouldSucceed,
208 skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700209 SkBinaryWriteBuffer writer;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000210 SerializationUtils<T>::Write(writer, testObj);
211 size_t bytesWritten = writer.bytesWritten();
212 REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
213
dvonbeck8811e402016-06-16 12:39:25 -0700214 SkASSERT(bytesWritten <= 4096);
senorblanco91c395a2014-09-25 15:51:35 -0700215 unsigned char dataWritten[4096];
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000216 writer.writeToMemory(dataWritten);
217
218 // Make sure this fails when it should (test with smaller size, but still multiple of 4)
Mike Reedfadbfcd2017-12-06 16:09:20 -0500219 SkReadBuffer buffer(dataWritten, bytesWritten - 4);
halcanary96fcdcc2015-08-27 07:41:13 -0700220 T* obj = nullptr;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000221 SerializationUtils<T>::Read(buffer, &obj);
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000222 REPORTER_ASSERT(reporter, !buffer.isValid());
halcanary96fcdcc2015-08-27 07:41:13 -0700223 REPORTER_ASSERT(reporter, nullptr == obj);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000224
225 // Make sure this succeeds when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500226 SkReadBuffer buffer2(dataWritten, bytesWritten);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000227 const unsigned char* peekBefore = static_cast<const unsigned char*>(buffer2.skip(0));
halcanary96fcdcc2015-08-27 07:41:13 -0700228 T* obj2 = nullptr;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000229 SerializationUtils<T>::Read(buffer2, &obj2);
230 const unsigned char* peekAfter = static_cast<const unsigned char*>(buffer2.skip(0));
231 if (shouldSucceed) {
232 // This should have succeeded, since there are enough bytes to read this
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000233 REPORTER_ASSERT(reporter, buffer2.isValid());
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000234 REPORTER_ASSERT(reporter, static_cast<size_t>(peekAfter - peekBefore) == bytesWritten);
bsalomon49f085d2014-09-05 13:34:00 -0700235 REPORTER_ASSERT(reporter, obj2);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000236 } else {
237 // If the deserialization was supposed to fail, make sure it did
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000238 REPORTER_ASSERT(reporter, !buffer.isValid());
halcanary96fcdcc2015-08-27 07:41:13 -0700239 REPORTER_ASSERT(reporter, nullptr == obj2);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000240 }
241
242 return obj2; // Return object to perform further validity tests on it
243}
244
245template<typename T>
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000246static void TestArraySerialization(T* data, skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700247 SkBinaryWriteBuffer writer;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000248 SerializationUtils<T>::Write(writer, data, kArraySize);
249 size_t bytesWritten = writer.bytesWritten();
250 // This should write the length (in 4 bytes) and the array
251 REPORTER_ASSERT(reporter, (4 + kArraySize * sizeof(T)) == bytesWritten);
252
brianosman97bbf822016-09-25 13:15:58 -0700253 unsigned char dataWritten[2048];
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000254 writer.writeToMemory(dataWritten);
255
256 // Make sure this fails when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500257 SkReadBuffer buffer(dataWritten, bytesWritten);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000258 T dataRead[kArraySize];
259 bool success = SerializationUtils<T>::Read(buffer, dataRead, kArraySize / 2);
260 // This should have failed, since the provided size was too small
261 REPORTER_ASSERT(reporter, !success);
262
263 // Make sure this succeeds when it should
Mike Reedfadbfcd2017-12-06 16:09:20 -0500264 SkReadBuffer buffer2(dataWritten, bytesWritten);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000265 success = SerializationUtils<T>::Read(buffer2, dataRead, kArraySize);
266 // This should have succeeded, since there are enough bytes to read this
267 REPORTER_ASSERT(reporter, success);
268}
269
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000270static void TestBitmapSerialization(const SkBitmap& validBitmap,
271 const SkBitmap& invalidBitmap,
272 bool shouldSucceed,
273 skiatest::Reporter* reporter) {
Mike Reeddc607e32020-12-23 11:50:36 -0500274 sk_sp<SkImage> validImage(validBitmap.asImage());
Michael Ludwig55edb502019-08-05 10:41:10 -0400275 sk_sp<SkImageFilter> validBitmapSource(SkImageFilters::Image(std::move(validImage)));
Mike Reeddc607e32020-12-23 11:50:36 -0500276 sk_sp<SkImage> invalidImage(invalidBitmap.asImage());
Michael Ludwig55edb502019-08-05 10:41:10 -0400277 sk_sp<SkImageFilter> invalidBitmapSource(SkImageFilters::Image(std::move(invalidImage)));
reedcfb6bdf2016-03-29 11:32:50 -0700278 sk_sp<SkImageFilter> xfermodeImageFilter(
Michael Ludwig01b93ea2020-10-09 10:45:07 -0400279 SkImageFilters::Blend(SkBlendMode::kSrcOver,
280 std::move(invalidBitmapSource),
281 std::move(validBitmapSource), nullptr));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000282
Mike Reed5e257172016-11-01 11:22:05 -0400283 sk_sp<SkImageFilter> deserializedFilter(
Mike Reed12923c42021-06-18 09:06:50 -0400284 TestFlattenableSerialization<SkImageFilter_Base>(
285 (SkImageFilter_Base*)xfermodeImageFilter.get(), shouldSucceed, reporter));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000286
287 // Try to render a small bitmap using the invalid deserialized filter
288 // to make sure we don't crash while trying to render it
289 if (shouldSucceed) {
290 SkBitmap bitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000291 bitmap.allocN32Pixels(24, 24);
292 SkCanvas canvas(bitmap);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000293 canvas.clear(0x00000000);
294 SkPaint paint;
295 paint.setImageFilter(deserializedFilter);
296 canvas.clipRect(SkRect::MakeXYWH(0, 0, SkIntToScalar(24), SkIntToScalar(24)));
Mike Reed039f1362021-01-27 21:21:08 -0500297 canvas.drawImage(bitmap.asImage(), 0, 0, SkSamplingOptions(), &paint);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000298 }
299}
300
senorblanco91c395a2014-09-25 15:51:35 -0700301static void TestColorFilterSerialization(skiatest::Reporter* reporter) {
302 uint8_t table[256];
303 for (int i = 0; i < 256; ++i) {
304 table[i] = (i * 41) % 256;
305 }
Mike Reed79915942020-06-26 09:05:10 -0400306 auto filter = SkTableColorFilter::Make(table);
Michael Ludwiga693a472020-06-25 21:41:09 +0000307 sk_sp<SkColorFilter> copy(
Mike Reed79915942020-06-26 09:05:10 -0400308 TestFlattenableSerialization(as_CFB(filter.get()), true, reporter));
senorblanco91c395a2014-09-25 15:51:35 -0700309}
310
caseq26337e92014-06-30 12:14:52 -0700311static SkBitmap draw_picture(SkPicture& picture) {
312 SkBitmap bitmap;
halcanary9d524f22016-03-29 09:03:52 -0700313 bitmap.allocN32Pixels(SkScalarCeilToInt(picture.cullRect().width()),
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700314 SkScalarCeilToInt(picture.cullRect().height()));
caseq26337e92014-06-30 12:14:52 -0700315 SkCanvas canvas(bitmap);
robertphillipsc5ba71d2014-09-04 08:42:50 -0700316 picture.playback(&canvas);
caseq26337e92014-06-30 12:14:52 -0700317 return bitmap;
318}
319
320static void compare_bitmaps(skiatest::Reporter* reporter,
321 const SkBitmap& b1, const SkBitmap& b2) {
322 REPORTER_ASSERT(reporter, b1.width() == b2.width());
323 REPORTER_ASSERT(reporter, b1.height() == b2.height());
caseq26337e92014-06-30 12:14:52 -0700324
325 if ((b1.width() != b2.width()) ||
326 (b1.height() != b2.height())) {
327 return;
328 }
329
330 int pixelErrors = 0;
331 for (int y = 0; y < b2.height(); ++y) {
332 for (int x = 0; x < b2.width(); ++x) {
333 if (b1.getColor(x, y) != b2.getColor(x, y))
334 ++pixelErrors;
335 }
336 }
337 REPORTER_ASSERT(reporter, 0 == pixelErrors);
338}
Alan Screen3cf3d922020-06-19 10:43:50 -0700339
340static sk_sp<SkData> serialize_typeface_proc(SkTypeface* typeface, void* ctx) {
341 // Write out typeface ID followed by entire typeface.
342 SkDynamicMemoryWStream stream;
343 sk_sp<SkData> data(typeface->serialize(SkTypeface::SerializeBehavior::kDoIncludeData));
344 uint32_t typeface_id = typeface->uniqueID();
345 stream.write(&typeface_id, sizeof(typeface_id));
346 stream.write(data->data(), data->size());
347 return stream.detachAsData();
348}
349
350static sk_sp<SkTypeface> deserialize_typeface_proc(const void* data, size_t length, void* ctx) {
351 SkStream* stream;
352 if (length < sizeof(stream)) {
353 return nullptr;
354 }
355 memcpy(&stream, data, sizeof(stream));
356
357 SkFontID id;
358 if (!stream->read(&id, sizeof(id))) {
359 return nullptr;
360 }
361
362 sk_sp<SkTypeface> typeface = SkTypeface::MakeDeserialize(stream);
363 return typeface;
364}
365
366static void serialize_and_compare_typeface(sk_sp<SkTypeface> typeface,
367 const char* text,
368 const SkSerialProcs* serial_procs,
369 const SkDeserialProcs* deserial_procs,
370 skiatest::Reporter* reporter) {
Hal Canary3560ea72019-01-08 13:01:58 -0500371 // Create a font with the typeface.
caseq26337e92014-06-30 12:14:52 -0700372 SkPaint paint;
373 paint.setColor(SK_ColorGRAY);
Hal Canary3560ea72019-01-08 13:01:58 -0500374 SkFont font(std::move(typeface), 30);
caseq26337e92014-06-30 12:14:52 -0700375
376 // Paint some text.
377 SkPictureRecorder recorder;
378 SkIRect canvasRect = SkIRect::MakeWH(kBitmapSize, kBitmapSize);
halcanary9d524f22016-03-29 09:03:52 -0700379 SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(canvasRect.width()),
Mike Reed457c6dd2020-08-21 13:42:01 -0400380 SkIntToScalar(canvasRect.height()));
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
Ben Wagner81eabce2020-08-18 13:17:09 -0400451static void TestTypefaceSerialization(skiatest::Reporter* reporter, sk_sp<SkTypeface> typeface) {
452 SkDynamicMemoryWStream typefaceWStream;
453 typeface->serialize(&typefaceWStream);
454
455 std::unique_ptr<SkStream> typefaceStream = typefaceWStream.detachAsStream();
456 sk_sp<SkTypeface> cloneTypeface = SkTypeface::MakeDeserialize(typefaceStream.get());
457 SkASSERT(cloneTypeface);
458
Ben Wagner48faf7b2021-05-04 15:07:51 -0400459 SkString name, cloneName;
460 typeface->getFamilyName(&name);
461 cloneTypeface->getFamilyName(&cloneName);
462
463 REPORTER_ASSERT(reporter, typeface->countGlyphs() == cloneTypeface->countGlyphs(),
464 "Typeface: \"%s\" CloneTypeface: \"%s\"", name.c_str(), cloneName.c_str());
465 REPORTER_ASSERT(reporter, typeface->fontStyle() == cloneTypeface->fontStyle(),
466 "Typeface: \"%s\" CloneTypeface: \"%s\"", name.c_str(), cloneName.c_str());
467
Ben Wagner81eabce2020-08-18 13:17:09 -0400468 SkFont font(typeface, 12);
469 SkFont clone(cloneTypeface, 12);
470 SkFontMetrics fontMetrics, cloneMetrics;
471 font.getMetrics(&fontMetrics);
472 clone.getMetrics(&cloneMetrics);
Ben Wagner48faf7b2021-05-04 15:07:51 -0400473 REPORTER_ASSERT(reporter, fontMetrics == cloneMetrics,
474 "Typeface: \"%s\" CloneTypeface: \"%s\"", name.c_str(), cloneName.c_str());
Ben Wagner81eabce2020-08-18 13:17:09 -0400475}
476DEF_TEST(Serialization_Typeface, reporter) {
477 SkFont font;
478 TestTypefaceSerialization(reporter, font.refTypefaceOrDefault());
479 TestTypefaceSerialization(reporter, ToolUtils::sample_user_typeface());
480}
481
reed84825042014-09-02 12:50:45 -0700482static void setup_bitmap_for_canvas(SkBitmap* bitmap) {
483 bitmap->allocN32Pixels(kBitmapSize, kBitmapSize);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000484}
485
Mike Reed34a0c972021-01-25 17:49:32 -0500486static sk_sp<SkImage> make_checkerboard_image() {
487 SkBitmap bitmap;
reed84825042014-09-02 12:50:45 -0700488 setup_bitmap_for_canvas(&bitmap);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000489
490 SkCanvas canvas(bitmap);
491 canvas.clear(0x00000000);
492 SkPaint darkPaint;
493 darkPaint.setColor(0xFF804020);
494 SkPaint lightPaint;
495 lightPaint.setColor(0xFF244484);
496 const int i = kBitmapSize / 8;
497 const SkScalar f = SkIntToScalar(i);
498 for (int y = 0; y < kBitmapSize; y += i) {
499 for (int x = 0; x < kBitmapSize; x += i) {
500 canvas.save();
501 canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
502 canvas.drawRect(SkRect::MakeXYWH(0, 0, f, f), darkPaint);
503 canvas.drawRect(SkRect::MakeXYWH(f, 0, f, f), lightPaint);
504 canvas.drawRect(SkRect::MakeXYWH(0, f, f, f), lightPaint);
505 canvas.drawRect(SkRect::MakeXYWH(f, f, f, f), darkPaint);
506 canvas.restore();
507 }
508 }
Mike Reed34a0c972021-01-25 17:49:32 -0500509 return bitmap.asImage();
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000510}
511
reed84825042014-09-02 12:50:45 -0700512static void draw_something(SkCanvas* canvas) {
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000513 canvas->save();
514 canvas->scale(0.5f, 0.5f);
Mike Reed34a0c972021-01-25 17:49:32 -0500515 canvas->drawImage(make_checkerboard_image(), 0, 0);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000516 canvas->restore();
517
Mike Reed34a0c972021-01-25 17:49:32 -0500518 SkPaint paint;
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000519 paint.setAntiAlias(true);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000520 paint.setColor(SK_ColorRED);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000521 canvas->drawCircle(SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/3), paint);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000522 paint.setColor(SK_ColorBLACK);
Mike Reed1af9b482019-01-07 11:01:57 -0500523
524 SkFont font;
525 font.setSize(kBitmapSize/3);
526 canvas->drawString("Picture", SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/4), font, paint);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000527}
528
Ben Wagner7825d492019-07-10 16:27:34 -0400529static sk_sp<SkImage> render(const SkPicture& p) {
530 auto surf = SkSurface::MakeRasterN32Premul(SkScalarRoundToInt(p.cullRect().width()),
531 SkScalarRoundToInt(p.cullRect().height()));
532 if (!surf) {
533 return nullptr; // bounds are empty?
534 }
535 surf->getCanvas()->clear(SK_ColorWHITE);
536 p.playback(surf->getCanvas());
537 return surf->makeImageSnapshot();
538}
539
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000540DEF_TEST(Serialization, reporter) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000541 // Test matrix serialization
542 {
543 SkMatrix matrix = SkMatrix::I();
544 TestObjectSerialization(&matrix, reporter);
caseq26337e92014-06-30 12:14:52 -0700545 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000546
Michael Ludwigea241402018-08-22 09:26:33 -0400547 // Test point3 serialization
548 {
549 SkPoint3 point;
550 TestObjectSerializationNoAlign<SkPoint3, false>(&point, reporter);
551 }
552
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000553 // Test path serialization
554 {
555 SkPath path;
556 TestObjectSerialization(&path, reporter);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000557 }
sugoi@google.com305f78e2013-11-04 16:18:15 +0000558
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000559 // Test region serialization
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000560 {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000561 SkRegion region;
562 TestObjectSerialization(&region, reporter);
563 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000564
senorblanco91c395a2014-09-25 15:51:35 -0700565 // Test color filter serialization
566 {
567 TestColorFilterSerialization(reporter);
568 }
569
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000570 // Test string serialization
571 {
572 SkString string("string");
573 TestObjectSerializationNoAlign<SkString, false>(&string, reporter);
574 TestObjectSerializationNoAlign<SkString, true>(&string, reporter);
575 }
576
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000577 // Test rrect serialization
578 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000579 // SkRRect does not initialize anything.
580 // An uninitialized SkRRect can be serialized,
581 // but will branch on uninitialized data when deserialized.
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000582 SkRRect rrect;
rmistry@google.comd6bab022013-12-02 13:50:38 +0000583 SkRect rect = SkRect::MakeXYWH(1, 2, 20, 30);
584 SkVector corners[4] = { {1, 2}, {2, 3}, {3,4}, {4,5} };
585 rrect.setRectRadii(rect, corners);
Cary Clark6d6d6032017-10-20 12:14:33 -0400586 SerializationTest::TestAlignment(&rrect, reporter);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000587 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000588
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000589 // Test readByteArray
590 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000591 unsigned char data[kArraySize] = { 1, 2, 3 };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000592 TestArraySerialization(data, reporter);
593 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000594
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000595 // Test readColorArray
596 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000597 SkColor data[kArraySize] = { SK_ColorBLACK, SK_ColorWHITE, SK_ColorRED };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000598 TestArraySerialization(data, reporter);
599 }
600
brianosman97bbf822016-09-25 13:15:58 -0700601 // Test readColor4fArray
602 {
603 SkColor4f data[kArraySize] = {
604 SkColor4f::FromColor(SK_ColorBLACK),
605 SkColor4f::FromColor(SK_ColorWHITE),
606 SkColor4f::FromColor(SK_ColorRED),
607 { 1.f, 2.f, 4.f, 8.f }
608 };
609 TestArraySerialization(data, reporter);
610 }
611
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000612 // Test readIntArray
613 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000614 int32_t data[kArraySize] = { 1, 2, 4, 8 };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000615 TestArraySerialization(data, reporter);
616 }
617
618 // Test readPointArray
619 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000620 SkPoint data[kArraySize] = { {6, 7}, {42, 128} };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000621 TestArraySerialization(data, reporter);
622 }
623
624 // Test readScalarArray
625 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000626 SkScalar data[kArraySize] = { SK_Scalar1, SK_ScalarHalf, SK_ScalarMax };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000627 TestArraySerialization(data, reporter);
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000628 }
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000629
Brian Osman9e4e4c72020-06-10 07:19:34 -0400630 // Test skipByteArray
631 {
632 // Valid case with non-empty array:
633 {
634 unsigned char data[kArraySize] = { 1, 2, 3 };
635 SkBinaryWriteBuffer writer;
636 writer.writeByteArray(data, 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 == kArraySize);
645 REPORTER_ASSERT(reporter, memcmp(arr, data, len) == 0);
646 }
647
648 // Writing a zero length array (can be detected as valid by non-nullptr return):
649 {
650 SkBinaryWriteBuffer writer;
651 writer.writeByteArray(nullptr, 0);
652 SkAutoMalloc buf(writer.bytesWritten());
653 writer.writeToMemory(buf.get());
654
655 SkReadBuffer reader(buf.get(), writer.bytesWritten());
656 size_t len = ~0;
657 const void* arr = reader.skipByteArray(&len);
658 REPORTER_ASSERT(reporter, arr);
659 REPORTER_ASSERT(reporter, len == 0);
660 }
661
662 // If the array can't be safely read, should return nullptr:
663 {
664 SkBinaryWriteBuffer writer;
665 writer.writeUInt(kArraySize);
666 SkAutoMalloc buf(writer.bytesWritten());
667 writer.writeToMemory(buf.get());
668
669 SkReadBuffer reader(buf.get(), writer.bytesWritten());
670 size_t len = ~0;
671 const void* arr = reader.skipByteArray(&len);
672 REPORTER_ASSERT(reporter, !arr);
673 REPORTER_ASSERT(reporter, len == 0);
674 }
675 }
676
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000677 // Test invalid deserializations
678 {
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000679 SkImageInfo info = SkImageInfo::MakeN32Premul(kBitmapSize, kBitmapSize);
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000680
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000681 SkBitmap validBitmap;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000682 validBitmap.setInfo(info);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000683
684 // Create a bitmap with a really large height
685 SkBitmap invalidBitmap;
reede5ea5002014-09-03 11:54:58 -0700686 invalidBitmap.setInfo(info.makeWH(info.width(), 1000000000));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000687
688 // The deserialization should succeed, and the rendering shouldn't crash,
689 // even when the device fails to initialize, due to its size
690 TestBitmapSerialization(validBitmap, invalidBitmap, true, reporter);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000691 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000692
693 // Test simple SkPicture serialization
694 {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000695 SkPictureRecorder recorder;
reed84825042014-09-02 12:50:45 -0700696 draw_something(recorder.beginRecording(SkIntToScalar(kBitmapSize),
Mike Reed457c6dd2020-08-21 13:42:01 -0400697 SkIntToScalar(kBitmapSize)));
reedca2622b2016-03-18 07:25:55 -0700698 sk_sp<SkPicture> pict(recorder.finishRecordingAsPicture());
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000699
700 // Serialize picture
brianosmanfad98562016-05-04 11:06:28 -0700701 SkBinaryWriteBuffer writer;
Cary Clarkefd99cc2018-06-11 16:25:43 -0400702 SkPicturePriv::Flatten(pict, writer);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000703 size_t size = writer.bytesWritten();
commit-bot@chromium.org1e7ee992014-03-14 21:22:22 +0000704 SkAutoTMalloc<unsigned char> data(size);
705 writer.writeToMemory(static_cast<void*>(data.get()));
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000706
707 // Deserialize picture
Mike Reedfadbfcd2017-12-06 16:09:20 -0500708 SkReadBuffer reader(static_cast<void*>(data.get()), size);
Cary Clarkefd99cc2018-06-11 16:25:43 -0400709 sk_sp<SkPicture> readPict(SkPicturePriv::MakeFromBuffer(reader));
reedd921dbb2016-09-30 09:27:20 -0700710 REPORTER_ASSERT(reporter, reader.isValid());
bsalomon49f085d2014-09-05 13:34:00 -0700711 REPORTER_ASSERT(reporter, readPict.get());
Ben Wagner7825d492019-07-10 16:27:34 -0400712 sk_sp<SkImage> img0 = render(*pict);
713 sk_sp<SkImage> img1 = render(*readPict);
714 if (img0 && img1) {
715 REPORTER_ASSERT(reporter, ToolUtils::equal_pixels(img0.get(), img1.get()));
716 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000717 }
caseq26337e92014-06-30 12:14:52 -0700718
Alan Screen3cf3d922020-06-19 10:43:50 -0700719 TestPictureTypefaceSerialization(nullptr, nullptr, reporter);
720
721 SkSerialProcs serial_procs;
722 serial_procs.fTypefaceProc = serialize_typeface_proc;
723 SkDeserialProcs deserial_procs;
724 deserial_procs.fTypefaceProc = deserialize_typeface_proc;
725 TestPictureTypefaceSerialization(&serial_procs, &deserial_procs, reporter);
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000726}
reedf70b5312016-03-04 16:36:20 -0800727
728///////////////////////////////////////////////////////////////////////////////////////////////////
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500729#include "include/core/SkAnnotation.h"
reedf70b5312016-03-04 16:36:20 -0800730
reedca2622b2016-03-18 07:25:55 -0700731static sk_sp<SkPicture> copy_picture_via_serialization(SkPicture* src) {
reedf70b5312016-03-04 16:36:20 -0800732 SkDynamicMemoryWStream wstream;
733 src->serialize(&wstream);
Ben Wagner145dbcd2016-11-03 14:40:50 -0400734 std::unique_ptr<SkStreamAsset> rstream(wstream.detachAsStream());
735 return SkPicture::MakeFromStream(rstream.get());
reedf70b5312016-03-04 16:36:20 -0800736}
737
738struct AnnotationRec {
739 const SkRect fRect;
740 const char* fKey;
bungeman38d909e2016-08-02 14:40:46 -0700741 sk_sp<SkData> fValue;
reedf70b5312016-03-04 16:36:20 -0800742};
743
744class TestAnnotationCanvas : public SkCanvas {
745 skiatest::Reporter* fReporter;
746 const AnnotationRec* fRec;
747 int fCount;
748 int fCurrIndex;
749
750public:
751 TestAnnotationCanvas(skiatest::Reporter* reporter, const AnnotationRec rec[], int count)
752 : SkCanvas(100, 100)
753 , fReporter(reporter)
754 , fRec(rec)
755 , fCount(count)
756 , fCurrIndex(0)
757 {}
758
Brian Salomond0072812020-07-21 17:03:56 -0400759 ~TestAnnotationCanvas() override {
reedf70b5312016-03-04 16:36:20 -0800760 REPORTER_ASSERT(fReporter, fCount == fCurrIndex);
761 }
762
763protected:
Brian Salomond0072812020-07-21 17:03:56 -0400764 void onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) override {
reedf70b5312016-03-04 16:36:20 -0800765 REPORTER_ASSERT(fReporter, fCurrIndex < fCount);
766 REPORTER_ASSERT(fReporter, rect == fRec[fCurrIndex].fRect);
767 REPORTER_ASSERT(fReporter, !strcmp(key, fRec[fCurrIndex].fKey));
bungeman38d909e2016-08-02 14:40:46 -0700768 REPORTER_ASSERT(fReporter, value->equals(fRec[fCurrIndex].fValue.get()));
reedf70b5312016-03-04 16:36:20 -0800769 fCurrIndex += 1;
770 }
771};
772
773/*
774 * Test the 3 annotation types by recording them into a picture, serializing, and then playing
775 * them back into another canvas.
776 */
777DEF_TEST(Annotations, reporter) {
778 SkPictureRecorder recorder;
779 SkCanvas* recordingCanvas = recorder.beginRecording(SkRect::MakeWH(100, 100));
halcanary9d524f22016-03-29 09:03:52 -0700780
reedf70b5312016-03-04 16:36:20 -0800781 const char* str0 = "rect-with-url";
782 const SkRect r0 = SkRect::MakeWH(10, 10);
bungeman38d909e2016-08-02 14:40:46 -0700783 sk_sp<SkData> d0(SkData::MakeWithCString(str0));
784 SkAnnotateRectWithURL(recordingCanvas, r0, d0.get());
halcanary9d524f22016-03-29 09:03:52 -0700785
reedf70b5312016-03-04 16:36:20 -0800786 const char* str1 = "named-destination";
787 const SkRect r1 = SkRect::MakeXYWH(5, 5, 0, 0); // collapsed to a point
bungeman38d909e2016-08-02 14:40:46 -0700788 sk_sp<SkData> d1(SkData::MakeWithCString(str1));
789 SkAnnotateNamedDestination(recordingCanvas, {r1.x(), r1.y()}, d1.get());
halcanary9d524f22016-03-29 09:03:52 -0700790
reedf70b5312016-03-04 16:36:20 -0800791 const char* str2 = "link-to-destination";
792 const SkRect r2 = SkRect::MakeXYWH(20, 20, 5, 6);
bungeman38d909e2016-08-02 14:40:46 -0700793 sk_sp<SkData> d2(SkData::MakeWithCString(str2));
794 SkAnnotateLinkToDestination(recordingCanvas, r2, d2.get());
reedf70b5312016-03-04 16:36:20 -0800795
796 const AnnotationRec recs[] = {
bungeman38d909e2016-08-02 14:40:46 -0700797 { r0, SkAnnotationKeys::URL_Key(), std::move(d0) },
798 { r1, SkAnnotationKeys::Define_Named_Dest_Key(), std::move(d1) },
799 { r2, SkAnnotationKeys::Link_Named_Dest_Key(), std::move(d2) },
reedf70b5312016-03-04 16:36:20 -0800800 };
801
reedca2622b2016-03-18 07:25:55 -0700802 sk_sp<SkPicture> pict0(recorder.finishRecordingAsPicture());
803 sk_sp<SkPicture> pict1(copy_picture_via_serialization(pict0.get()));
reedf70b5312016-03-04 16:36:20 -0800804
805 TestAnnotationCanvas canvas(reporter, recs, SK_ARRAY_COUNT(recs));
806 canvas.drawPicture(pict1);
807}
Mike Reed25325842018-03-14 09:52:02 -0400808
809DEF_TEST(WriteBuffer_storage, reporter) {
810 enum {
811 kSize = 32
812 };
813 int32_t storage[kSize/4];
814 char src[kSize];
815 sk_bzero(src, kSize);
816
817 SkBinaryWriteBuffer writer(storage, kSize);
818 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
819 REPORTER_ASSERT(reporter, writer.bytesWritten() == 0);
820 writer.write(src, kSize - 4);
821 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
822 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize - 4);
823 writer.writeInt(0);
824 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
825 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize);
826
827 writer.reset(storage, kSize-4);
828 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
829 REPORTER_ASSERT(reporter, writer.bytesWritten() == 0);
830 writer.write(src, kSize - 4);
831 REPORTER_ASSERT(reporter, writer.usingInitialStorage());
832 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize - 4);
833 writer.writeInt(0);
834 REPORTER_ASSERT(reporter, !writer.usingInitialStorage()); // this is the change
835 REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize);
836}
Khushal42f8bc42018-04-03 17:51:40 -0700837
838DEF_TEST(WriteBuffer_external_memory_textblob, reporter) {
Mike Reed2ed78202018-11-21 15:10:08 -0500839 SkFont font;
Khushal42f8bc42018-04-03 17:51:40 -0700840 font.setTypeface(SkTypeface::MakeDefault());
841
842 SkTextBlobBuilder builder;
843 int glyph_count = 5;
844 const auto& run = builder.allocRun(font, glyph_count, 1.2f, 2.3f);
845 // allocRun() allocates only the glyph buffer.
846 std::fill(run.glyphs, run.glyphs + glyph_count, 0);
847 auto blob = builder.make();
848 SkSerialProcs procs;
849 SkAutoTMalloc<uint8_t> storage;
850 size_t blob_size = 0u;
851 size_t storage_size = 0u;
852
853 blob_size = SkAlign4(blob->serialize(procs)->size());
854 REPORTER_ASSERT(reporter, blob_size > 4u);
855 storage_size = blob_size - 4;
856 storage.realloc(storage_size);
857 REPORTER_ASSERT(reporter, blob->serialize(procs, storage.get(), storage_size) == 0u);
858 storage_size = blob_size;
859 storage.realloc(storage_size);
860 REPORTER_ASSERT(reporter, blob->serialize(procs, storage.get(), storage_size) != 0u);
861}
862
863DEF_TEST(WriteBuffer_external_memory_flattenable, reporter) {
864 SkScalar intervals[] = {1.f, 1.f};
865 auto path_effect = SkDashPathEffect::Make(intervals, 2, 0);
866 size_t path_size = SkAlign4(path_effect->serialize()->size());
867 REPORTER_ASSERT(reporter, path_size > 4u);
868 SkAutoTMalloc<uint8_t> storage;
869
870 size_t storage_size = path_size - 4;
871 storage.realloc(storage_size);
872 REPORTER_ASSERT(reporter, path_effect->serialize(storage.get(), storage_size) == 0u);
873
874 storage_size = path_size;
875 storage.realloc(storage_size);
876 REPORTER_ASSERT(reporter, path_effect->serialize(storage.get(), storage_size) != 0u);
877}
Mike Reed33b1ecc2020-02-18 22:22:49 -0500878
Mike Reed33b1ecc2020-02-18 22:22:49 -0500879DEF_TEST(ReadBuffer_empty, reporter) {
880 SkBinaryWriteBuffer writer;
881 writer.writeInt(123);
882 writer.writeDataAsByteArray(SkData::MakeEmpty().get());
883 writer.writeInt(321);
884
885 size_t size = writer.bytesWritten();
886 SkAutoMalloc storage(size);
887 writer.writeToMemory(storage.get());
888
889 SkReadBuffer reader(storage.get(), size);
890 REPORTER_ASSERT(reporter, reader.readInt() == 123);
891 auto data = reader.readByteArrayAsData();
892 REPORTER_ASSERT(reporter, data->size() == 0);
893 REPORTER_ASSERT(reporter, reader.readInt() == 321);
894}