blob: 898b12f2207b208268512e747616151018bdfac9 [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
egdaniel4132de72016-06-15 14:28:17 -07008#include "Resources.h"
dvonbeck8811e402016-06-16 12:39:25 -07009#include "SkAnnotationKeys.h"
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000010#include "SkCanvas.h"
bungeman41868fe2015-05-20 09:21:04 -070011#include "SkFixed.h"
12#include "SkFontDescriptor.h"
fmalita5598b632015-09-15 11:26:13 -070013#include "SkImage.h"
14#include "SkImageSource.h"
bungemanf93d7112016-09-16 06:24:20 -070015#include "SkMakeUnique.h"
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000016#include "SkMallocPixelRef.h"
caseq26337e92014-06-30 12:14:52 -070017#include "SkOSFile.h"
robertphillips@google.com770963f2014-04-18 18:04:41 +000018#include "SkPictureRecorder.h"
Florin Malita4aed1382017-05-25 10:38:07 -040019#include "SkShaderBase.h"
senorblanco91c395a2014-09-25 15:51:35 -070020#include "SkTableColorFilter.h"
commit-bot@chromium.org1e7ee992014-03-14 21:22:22 +000021#include "SkTemplates.h"
caseq26337e92014-06-30 12:14:52 -070022#include "SkTypeface.h"
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000023#include "SkWriteBuffer.h"
commit-bot@chromium.org02512882013-10-31 18:37:50 +000024#include "SkValidatingReadBuffer.h"
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000025#include "SkXfermodeImageFilter.h"
dvonbeck8811e402016-06-16 12:39:25 -070026#include "sk_tool_utils.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000027#include "Test.h"
commit-bot@chromium.org02512882013-10-31 18:37:50 +000028
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000029static const uint32_t kArraySize = 64;
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +000030static const int kBitmapSize = 256;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000031
32template<typename T>
33static void TestAlignment(T* testObj, skiatest::Reporter* reporter) {
34 // Test memory read/write functions directly
35 unsigned char dataWritten[1024];
36 size_t bytesWrittenToMemory = testObj->writeToMemory(dataWritten);
37 REPORTER_ASSERT(reporter, SkAlign4(bytesWrittenToMemory) == bytesWrittenToMemory);
38 size_t bytesReadFromMemory = testObj->readFromMemory(dataWritten, bytesWrittenToMemory);
39 REPORTER_ASSERT(reporter, SkAlign4(bytesReadFromMemory) == bytesReadFromMemory);
40}
41
42template<typename T> struct SerializationUtils {
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000043 // Generic case for flattenables
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000044 static void Write(SkWriteBuffer& writer, const T* flattenable) {
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000045 writer.writeFlattenable(flattenable);
46 }
47 static void Read(SkValidatingReadBuffer& reader, T** flattenable) {
mtklein3b375452016-04-04 14:57:19 -070048 *flattenable = (T*)reader.readFlattenable(T::GetFlattenableType());
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +000049 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000050};
51
52template<> struct SerializationUtils<SkMatrix> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000053 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000054 writer.writeMatrix(*matrix);
55 }
56 static void Read(SkValidatingReadBuffer& reader, SkMatrix* matrix) {
57 reader.readMatrix(matrix);
58 }
59};
60
61template<> struct SerializationUtils<SkPath> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000062 static void Write(SkWriteBuffer& writer, const SkPath* path) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000063 writer.writePath(*path);
64 }
65 static void Read(SkValidatingReadBuffer& reader, SkPath* path) {
66 reader.readPath(path);
67 }
68};
69
70template<> struct SerializationUtils<SkRegion> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000071 static void Write(SkWriteBuffer& writer, const SkRegion* region) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000072 writer.writeRegion(*region);
73 }
74 static void Read(SkValidatingReadBuffer& reader, SkRegion* region) {
75 reader.readRegion(region);
76 }
77};
78
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +000079template<> struct SerializationUtils<SkString> {
80 static void Write(SkWriteBuffer& writer, const SkString* string) {
81 writer.writeString(string->c_str());
82 }
83 static void Read(SkValidatingReadBuffer& reader, SkString* string) {
84 reader.readString(string);
85 }
86};
87
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000088template<> struct SerializationUtils<unsigned char> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000089 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +000090 writer.writeByteArray(data, arraySize);
sugoi@google.com305f78e2013-11-04 16:18:15 +000091 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000092 static bool Read(SkValidatingReadBuffer& reader, unsigned char* data, uint32_t arraySize) {
93 return reader.readByteArray(data, arraySize);
94 }
95};
commit-bot@chromium.org02512882013-10-31 18:37:50 +000096
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +000097template<> struct SerializationUtils<SkColor> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000098 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +000099 writer.writeColorArray(data, arraySize);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000100 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000101 static bool Read(SkValidatingReadBuffer& reader, SkColor* data, uint32_t arraySize) {
102 return reader.readColorArray(data, arraySize);
103 }
104};
sugoi@google.com305f78e2013-11-04 16:18:15 +0000105
brianosman97bbf822016-09-25 13:15:58 -0700106template<> struct SerializationUtils<SkColor4f> {
107 static void Write(SkWriteBuffer& writer, SkColor4f* data, uint32_t arraySize) {
108 writer.writeColor4fArray(data, arraySize);
109 }
110 static bool Read(SkValidatingReadBuffer& reader, SkColor4f* data, uint32_t arraySize) {
111 return reader.readColor4fArray(data, arraySize);
112 }
113};
114
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000115template<> struct SerializationUtils<int32_t> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000116 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000117 writer.writeIntArray(data, arraySize);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000118 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000119 static bool Read(SkValidatingReadBuffer& reader, int32_t* data, uint32_t arraySize) {
120 return reader.readIntArray(data, arraySize);
121 }
122};
sugoi@google.com305f78e2013-11-04 16:18:15 +0000123
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000124template<> struct SerializationUtils<SkPoint> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000125 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) {
reed@google.com12a23862013-11-04 21:35:55 +0000126 writer.writePointArray(data, arraySize);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000127 }
128 static bool Read(SkValidatingReadBuffer& reader, SkPoint* data, uint32_t arraySize) {
129 return reader.readPointArray(data, arraySize);
130 }
131};
reed@google.com12a23862013-11-04 21:35:55 +0000132
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000133template<> struct SerializationUtils<SkScalar> {
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000134 static void Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000135 writer.writeScalarArray(data, arraySize);
136 }
137 static bool Read(SkValidatingReadBuffer& reader, SkScalar* data, uint32_t arraySize) {
138 return reader.readScalarArray(data, arraySize);
139 }
140};
reed@google.com12a23862013-11-04 21:35:55 +0000141
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000142template<typename T, bool testInvalid> struct SerializationTestUtils {
143 static void InvalidateData(unsigned char* data) {}
144};
145
146template<> struct SerializationTestUtils<SkString, true> {
147 static void InvalidateData(unsigned char* data) {
148 data[3] |= 0x80; // Reverse sign of 1st integer
149 }
150};
151
152template<typename T, bool testInvalid>
153static void TestObjectSerializationNoAlign(T* testObj, skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700154 SkBinaryWriteBuffer writer;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000155 SerializationUtils<T>::Write(writer, testObj);
156 size_t bytesWritten = writer.bytesWritten();
157 REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
reed@google.com12a23862013-11-04 21:35:55 +0000158
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000159 unsigned char dataWritten[1024];
160 writer.writeToMemory(dataWritten);
161
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000162 SerializationTestUtils<T, testInvalid>::InvalidateData(dataWritten);
163
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000164 // Make sure this fails when it should (test with smaller size, but still multiple of 4)
165 SkValidatingReadBuffer buffer(dataWritten, bytesWritten - 4);
commit-bot@chromium.org8f457e32013-11-08 19:22:57 +0000166 T obj;
167 SerializationUtils<T>::Read(buffer, &obj);
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000168 REPORTER_ASSERT(reporter, !buffer.isValid());
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000169
170 // Make sure this succeeds when it should
171 SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
Robert Phillipsb2526042016-09-26 09:00:36 -0400172 size_t offsetBefore = buffer2.offset();
commit-bot@chromium.org8f457e32013-11-08 19:22:57 +0000173 T obj2;
174 SerializationUtils<T>::Read(buffer2, &obj2);
Robert Phillipsb2526042016-09-26 09:00:36 -0400175 size_t offsetAfter = buffer2.offset();
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000176 // This should have succeeded, since there are enough bytes to read this
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000177 REPORTER_ASSERT(reporter, buffer2.isValid() == !testInvalid);
178 // Note: This following test should always succeed, regardless of whether the buffer is valid,
179 // 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 -0400180 REPORTER_ASSERT(reporter, offsetAfter - offsetBefore == bytesWritten);
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000181}
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000182
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000183template<typename T>
184static void TestObjectSerialization(T* testObj, skiatest::Reporter* reporter) {
185 TestObjectSerializationNoAlign<T, false>(testObj, reporter);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000186 TestAlignment(testObj, reporter);
187}
188
189template<typename T>
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000190static T* TestFlattenableSerialization(T* testObj, bool shouldSucceed,
191 skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700192 SkBinaryWriteBuffer writer;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000193 SerializationUtils<T>::Write(writer, testObj);
194 size_t bytesWritten = writer.bytesWritten();
195 REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
196
dvonbeck8811e402016-06-16 12:39:25 -0700197 SkASSERT(bytesWritten <= 4096);
senorblanco91c395a2014-09-25 15:51:35 -0700198 unsigned char dataWritten[4096];
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000199 writer.writeToMemory(dataWritten);
200
201 // Make sure this fails when it should (test with smaller size, but still multiple of 4)
202 SkValidatingReadBuffer buffer(dataWritten, bytesWritten - 4);
halcanary96fcdcc2015-08-27 07:41:13 -0700203 T* obj = nullptr;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000204 SerializationUtils<T>::Read(buffer, &obj);
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000205 REPORTER_ASSERT(reporter, !buffer.isValid());
halcanary96fcdcc2015-08-27 07:41:13 -0700206 REPORTER_ASSERT(reporter, nullptr == obj);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000207
208 // Make sure this succeeds when it should
209 SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
210 const unsigned char* peekBefore = static_cast<const unsigned char*>(buffer2.skip(0));
halcanary96fcdcc2015-08-27 07:41:13 -0700211 T* obj2 = nullptr;
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000212 SerializationUtils<T>::Read(buffer2, &obj2);
213 const unsigned char* peekAfter = static_cast<const unsigned char*>(buffer2.skip(0));
214 if (shouldSucceed) {
215 // This should have succeeded, since there are enough bytes to read this
commit-bot@chromium.orgc2e9db32013-12-06 20:14:46 +0000216 REPORTER_ASSERT(reporter, buffer2.isValid());
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000217 REPORTER_ASSERT(reporter, static_cast<size_t>(peekAfter - peekBefore) == bytesWritten);
bsalomon49f085d2014-09-05 13:34:00 -0700218 REPORTER_ASSERT(reporter, obj2);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000219 } else {
220 // If the deserialization was supposed to fail, make sure it did
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 == obj2);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000223 }
224
225 return obj2; // Return object to perform further validity tests on it
226}
227
228template<typename T>
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000229static void TestArraySerialization(T* data, skiatest::Reporter* reporter) {
brianosmanfad98562016-05-04 11:06:28 -0700230 SkBinaryWriteBuffer writer;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000231 SerializationUtils<T>::Write(writer, data, kArraySize);
232 size_t bytesWritten = writer.bytesWritten();
233 // This should write the length (in 4 bytes) and the array
234 REPORTER_ASSERT(reporter, (4 + kArraySize * sizeof(T)) == bytesWritten);
235
brianosman97bbf822016-09-25 13:15:58 -0700236 unsigned char dataWritten[2048];
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000237 writer.writeToMemory(dataWritten);
238
239 // Make sure this fails when it should
240 SkValidatingReadBuffer buffer(dataWritten, bytesWritten);
241 T dataRead[kArraySize];
242 bool success = SerializationUtils<T>::Read(buffer, dataRead, kArraySize / 2);
243 // This should have failed, since the provided size was too small
244 REPORTER_ASSERT(reporter, !success);
245
246 // Make sure this succeeds when it should
247 SkValidatingReadBuffer buffer2(dataWritten, bytesWritten);
248 success = SerializationUtils<T>::Read(buffer2, dataRead, kArraySize);
249 // This should have succeeded, since there are enough bytes to read this
250 REPORTER_ASSERT(reporter, success);
251}
252
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000253static void TestBitmapSerialization(const SkBitmap& validBitmap,
254 const SkBitmap& invalidBitmap,
255 bool shouldSucceed,
256 skiatest::Reporter* reporter) {
reed9ce9d672016-03-17 10:51:11 -0700257 sk_sp<SkImage> validImage(SkImage::MakeFromBitmap(validBitmap));
robertphillips549c8992016-04-01 09:28:51 -0700258 sk_sp<SkImageFilter> validBitmapSource(SkImageSource::Make(std::move(validImage)));
reed9ce9d672016-03-17 10:51:11 -0700259 sk_sp<SkImage> invalidImage(SkImage::MakeFromBitmap(invalidBitmap));
robertphillips549c8992016-04-01 09:28:51 -0700260 sk_sp<SkImageFilter> invalidBitmapSource(SkImageSource::Make(std::move(invalidImage)));
reedcfb6bdf2016-03-29 11:32:50 -0700261 sk_sp<SkImageFilter> xfermodeImageFilter(
reed374772b2016-10-05 17:33:02 -0700262 SkXfermodeImageFilter::Make(SkBlendMode::kSrcOver,
robertphillips8c0326d2016-04-05 12:48:34 -0700263 std::move(invalidBitmapSource),
264 std::move(validBitmapSource), nullptr));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000265
Mike Reed5e257172016-11-01 11:22:05 -0400266 sk_sp<SkImageFilter> deserializedFilter(
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000267 TestFlattenableSerialization<SkImageFilter>(
reedcfb6bdf2016-03-29 11:32:50 -0700268 xfermodeImageFilter.get(), shouldSucceed, reporter));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000269
270 // Try to render a small bitmap using the invalid deserialized filter
271 // to make sure we don't crash while trying to render it
272 if (shouldSucceed) {
273 SkBitmap bitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000274 bitmap.allocN32Pixels(24, 24);
275 SkCanvas canvas(bitmap);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000276 canvas.clear(0x00000000);
277 SkPaint paint;
278 paint.setImageFilter(deserializedFilter);
279 canvas.clipRect(SkRect::MakeXYWH(0, 0, SkIntToScalar(24), SkIntToScalar(24)));
280 canvas.drawBitmap(bitmap, 0, 0, &paint);
281 }
282}
283
senorblanco91c395a2014-09-25 15:51:35 -0700284static void TestColorFilterSerialization(skiatest::Reporter* reporter) {
285 uint8_t table[256];
286 for (int i = 0; i < 256; ++i) {
287 table[i] = (i * 41) % 256;
288 }
reedd053ce92016-03-22 10:17:23 -0700289 auto colorFilter(SkTableColorFilter::Make(table));
Hal Canary342b7ac2016-11-04 11:49:42 -0400290 sk_sp<SkColorFilter> copy(
senorblanco91c395a2014-09-25 15:51:35 -0700291 TestFlattenableSerialization<SkColorFilter>(colorFilter.get(), true, reporter));
292}
293
caseq26337e92014-06-30 12:14:52 -0700294static SkBitmap draw_picture(SkPicture& picture) {
295 SkBitmap bitmap;
halcanary9d524f22016-03-29 09:03:52 -0700296 bitmap.allocN32Pixels(SkScalarCeilToInt(picture.cullRect().width()),
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700297 SkScalarCeilToInt(picture.cullRect().height()));
caseq26337e92014-06-30 12:14:52 -0700298 SkCanvas canvas(bitmap);
robertphillipsc5ba71d2014-09-04 08:42:50 -0700299 picture.playback(&canvas);
caseq26337e92014-06-30 12:14:52 -0700300 return bitmap;
301}
302
303static void compare_bitmaps(skiatest::Reporter* reporter,
304 const SkBitmap& b1, const SkBitmap& b2) {
305 REPORTER_ASSERT(reporter, b1.width() == b2.width());
306 REPORTER_ASSERT(reporter, b1.height() == b2.height());
caseq26337e92014-06-30 12:14:52 -0700307
308 if ((b1.width() != b2.width()) ||
309 (b1.height() != b2.height())) {
310 return;
311 }
312
313 int pixelErrors = 0;
314 for (int y = 0; y < b2.height(); ++y) {
315 for (int x = 0; x < b2.width(); ++x) {
316 if (b1.getColor(x, y) != b2.getColor(x, y))
317 ++pixelErrors;
318 }
319 }
320 REPORTER_ASSERT(reporter, 0 == pixelErrors);
321}
bungeman13b9c952016-05-12 10:09:30 -0700322static void serialize_and_compare_typeface(sk_sp<SkTypeface> typeface, const char* text,
bungeman41868fe2015-05-20 09:21:04 -0700323 skiatest::Reporter* reporter)
324{
325 // Create a paint with the typeface.
caseq26337e92014-06-30 12:14:52 -0700326 SkPaint paint;
327 paint.setColor(SK_ColorGRAY);
328 paint.setTextSize(SkIntToScalar(30));
bungeman13b9c952016-05-12 10:09:30 -0700329 paint.setTypeface(std::move(typeface));
caseq26337e92014-06-30 12:14:52 -0700330
331 // Paint some text.
332 SkPictureRecorder recorder;
333 SkIRect canvasRect = SkIRect::MakeWH(kBitmapSize, kBitmapSize);
halcanary9d524f22016-03-29 09:03:52 -0700334 SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(canvasRect.width()),
335 SkIntToScalar(canvasRect.height()),
halcanary96fcdcc2015-08-27 07:41:13 -0700336 nullptr, 0);
caseq26337e92014-06-30 12:14:52 -0700337 canvas->drawColor(SK_ColorWHITE);
bungeman41868fe2015-05-20 09:21:04 -0700338 canvas->drawText(text, 2, 24, 32, paint);
reedca2622b2016-03-18 07:25:55 -0700339 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture());
caseq26337e92014-06-30 12:14:52 -0700340
341 // Serlialize picture and create its clone from stream.
342 SkDynamicMemoryWStream stream;
343 picture->serialize(&stream);
Ben Wagner145dbcd2016-11-03 14:40:50 -0400344 std::unique_ptr<SkStream> inputStream(stream.detachAsStream());
reedca2622b2016-03-18 07:25:55 -0700345 sk_sp<SkPicture> loadedPicture(SkPicture::MakeFromStream(inputStream.get()));
caseq26337e92014-06-30 12:14:52 -0700346
347 // Draw both original and clone picture and compare bitmaps -- they should be identical.
348 SkBitmap origBitmap = draw_picture(*picture);
349 SkBitmap destBitmap = draw_picture(*loadedPicture);
350 compare_bitmaps(reporter, origBitmap, destBitmap);
351}
352
bungeman41868fe2015-05-20 09:21:04 -0700353static void TestPictureTypefaceSerialization(skiatest::Reporter* reporter) {
354 {
355 // Load typeface from file to test CreateFromFile with index.
356 SkString filename = GetResourcePath("/fonts/test.ttc");
bungeman13b9c952016-05-12 10:09:30 -0700357 sk_sp<SkTypeface> typeface(SkTypeface::MakeFromFile(filename.c_str(), 1));
bungeman41868fe2015-05-20 09:21:04 -0700358 if (!typeface) {
halcanary7d571242016-02-24 17:59:16 -0800359 INFOF(reporter, "Could not run fontstream test because test.ttc not found.");
bungeman41868fe2015-05-20 09:21:04 -0700360 } else {
bungeman13b9c952016-05-12 10:09:30 -0700361 serialize_and_compare_typeface(std::move(typeface), "A!", reporter);
bungeman41868fe2015-05-20 09:21:04 -0700362 }
363 }
364
365 {
366 // Load typeface as stream to create with axis settings.
bungemanf93d7112016-09-16 06:24:20 -0700367 std::unique_ptr<SkStreamAsset> distortable(GetResourceAsStream("/fonts/Distortable.ttf"));
bungeman41868fe2015-05-20 09:21:04 -0700368 if (!distortable) {
halcanary7d571242016-02-24 17:59:16 -0800369 INFOF(reporter, "Could not run fontstream test because Distortable.ttf not found.");
bungeman41868fe2015-05-20 09:21:04 -0700370 } else {
371 SkFixed axis = SK_FixedSqrt2;
bungeman13b9c952016-05-12 10:09:30 -0700372 sk_sp<SkTypeface> typeface(SkTypeface::MakeFromFontData(
bungemanf93d7112016-09-16 06:24:20 -0700373 skstd::make_unique<SkFontData>(std::move(distortable), 0, &axis, 1)));
bungeman41868fe2015-05-20 09:21:04 -0700374 if (!typeface) {
halcanary7d571242016-02-24 17:59:16 -0800375 INFOF(reporter, "Could not run fontstream test because Distortable.ttf not created.");
bungeman41868fe2015-05-20 09:21:04 -0700376 } else {
bungeman13b9c952016-05-12 10:09:30 -0700377 serialize_and_compare_typeface(std::move(typeface), "abc", reporter);
bungeman41868fe2015-05-20 09:21:04 -0700378 }
379 }
380 }
381}
382
reed84825042014-09-02 12:50:45 -0700383static void setup_bitmap_for_canvas(SkBitmap* bitmap) {
384 bitmap->allocN32Pixels(kBitmapSize, kBitmapSize);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000385}
386
reed84825042014-09-02 12:50:45 -0700387static void make_checkerboard_bitmap(SkBitmap& bitmap) {
388 setup_bitmap_for_canvas(&bitmap);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000389
390 SkCanvas canvas(bitmap);
391 canvas.clear(0x00000000);
392 SkPaint darkPaint;
393 darkPaint.setColor(0xFF804020);
394 SkPaint lightPaint;
395 lightPaint.setColor(0xFF244484);
396 const int i = kBitmapSize / 8;
397 const SkScalar f = SkIntToScalar(i);
398 for (int y = 0; y < kBitmapSize; y += i) {
399 for (int x = 0; x < kBitmapSize; x += i) {
400 canvas.save();
401 canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
402 canvas.drawRect(SkRect::MakeXYWH(0, 0, f, f), darkPaint);
403 canvas.drawRect(SkRect::MakeXYWH(f, 0, f, f), lightPaint);
404 canvas.drawRect(SkRect::MakeXYWH(0, f, f, f), lightPaint);
405 canvas.drawRect(SkRect::MakeXYWH(f, f, f, f), darkPaint);
406 canvas.restore();
407 }
408 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000409}
410
reed84825042014-09-02 12:50:45 -0700411static void draw_something(SkCanvas* canvas) {
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000412 SkPaint paint;
413 SkBitmap bitmap;
reed84825042014-09-02 12:50:45 -0700414 make_checkerboard_bitmap(bitmap);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000415
416 canvas->save();
417 canvas->scale(0.5f, 0.5f);
halcanary96fcdcc2015-08-27 07:41:13 -0700418 canvas->drawBitmap(bitmap, 0, 0, nullptr);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000419 canvas->restore();
420
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000421 paint.setAntiAlias(true);
422
423 paint.setColor(SK_ColorRED);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000424 canvas->drawCircle(SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/3), paint);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000425 paint.setColor(SK_ColorBLACK);
426 paint.setTextSize(SkIntToScalar(kBitmapSize/3));
Cary Clark2a475ea2017-04-28 15:35:12 -0400427 canvas->drawString("Picture", SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/4), paint);
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000428}
429
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000430DEF_TEST(Serialization, reporter) {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000431 // Test matrix serialization
432 {
433 SkMatrix matrix = SkMatrix::I();
434 TestObjectSerialization(&matrix, reporter);
caseq26337e92014-06-30 12:14:52 -0700435 }
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000436
437 // Test path serialization
438 {
439 SkPath path;
440 TestObjectSerialization(&path, reporter);
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000441 }
sugoi@google.com305f78e2013-11-04 16:18:15 +0000442
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000443 // Test region serialization
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000444 {
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000445 SkRegion region;
446 TestObjectSerialization(&region, reporter);
447 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000448
senorblanco91c395a2014-09-25 15:51:35 -0700449 // Test color filter serialization
450 {
451 TestColorFilterSerialization(reporter);
452 }
453
commit-bot@chromium.org1ac99c82014-04-29 15:35:23 +0000454 // Test string serialization
455 {
456 SkString string("string");
457 TestObjectSerializationNoAlign<SkString, false>(&string, reporter);
458 TestObjectSerializationNoAlign<SkString, true>(&string, reporter);
459 }
460
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000461 // Test rrect serialization
462 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000463 // SkRRect does not initialize anything.
464 // An uninitialized SkRRect can be serialized,
465 // but will branch on uninitialized data when deserialized.
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000466 SkRRect rrect;
rmistry@google.comd6bab022013-12-02 13:50:38 +0000467 SkRect rect = SkRect::MakeXYWH(1, 2, 20, 30);
468 SkVector corners[4] = { {1, 2}, {2, 3}, {3,4}, {4,5} };
469 rrect.setRectRadii(rect, corners);
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000470 TestAlignment(&rrect, reporter);
471 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000472
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000473 // Test readByteArray
474 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000475 unsigned char data[kArraySize] = { 1, 2, 3 };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000476 TestArraySerialization(data, reporter);
477 }
sugoi@google.comb48a59a2013-11-04 20:28:23 +0000478
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000479 // Test readColorArray
480 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000481 SkColor data[kArraySize] = { SK_ColorBLACK, SK_ColorWHITE, SK_ColorRED };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000482 TestArraySerialization(data, reporter);
483 }
484
brianosman97bbf822016-09-25 13:15:58 -0700485 // Test readColor4fArray
486 {
487 SkColor4f data[kArraySize] = {
488 SkColor4f::FromColor(SK_ColorBLACK),
489 SkColor4f::FromColor(SK_ColorWHITE),
490 SkColor4f::FromColor(SK_ColorRED),
491 { 1.f, 2.f, 4.f, 8.f }
492 };
493 TestArraySerialization(data, reporter);
494 }
495
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000496 // Test readIntArray
497 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000498 int32_t data[kArraySize] = { 1, 2, 4, 8 };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000499 TestArraySerialization(data, reporter);
500 }
501
502 // Test readPointArray
503 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000504 SkPoint data[kArraySize] = { {6, 7}, {42, 128} };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000505 TestArraySerialization(data, reporter);
506 }
507
508 // Test readScalarArray
509 {
rmistry@google.comd6bab022013-12-02 13:50:38 +0000510 SkScalar data[kArraySize] = { SK_Scalar1, SK_ScalarHalf, SK_ScalarMax };
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000511 TestArraySerialization(data, reporter);
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000512 }
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000513
514 // Test invalid deserializations
515 {
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000516 SkImageInfo info = SkImageInfo::MakeN32Premul(kBitmapSize, kBitmapSize);
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000517
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000518 SkBitmap validBitmap;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000519 validBitmap.setInfo(info);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000520
521 // Create a bitmap with a really large height
522 SkBitmap invalidBitmap;
reede5ea5002014-09-03 11:54:58 -0700523 invalidBitmap.setInfo(info.makeWH(info.width(), 1000000000));
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000524
525 // The deserialization should succeed, and the rendering shouldn't crash,
526 // even when the device fails to initialize, due to its size
527 TestBitmapSerialization(validBitmap, invalidBitmap, true, reporter);
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +0000528 }
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000529
530 // Test simple SkPicture serialization
531 {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000532 SkPictureRecorder recorder;
reed84825042014-09-02 12:50:45 -0700533 draw_something(recorder.beginRecording(SkIntToScalar(kBitmapSize),
534 SkIntToScalar(kBitmapSize),
halcanary96fcdcc2015-08-27 07:41:13 -0700535 nullptr, 0));
reedca2622b2016-03-18 07:25:55 -0700536 sk_sp<SkPicture> pict(recorder.finishRecordingAsPicture());
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000537
538 // Serialize picture
brianosmanfad98562016-05-04 11:06:28 -0700539 SkBinaryWriteBuffer writer;
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000540 pict->flatten(writer);
541 size_t size = writer.bytesWritten();
commit-bot@chromium.org1e7ee992014-03-14 21:22:22 +0000542 SkAutoTMalloc<unsigned char> data(size);
543 writer.writeToMemory(static_cast<void*>(data.get()));
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000544
545 // Deserialize picture
commit-bot@chromium.org1e7ee992014-03-14 21:22:22 +0000546 SkValidatingReadBuffer reader(static_cast<void*>(data.get()), size);
reedca2622b2016-03-18 07:25:55 -0700547 sk_sp<SkPicture> readPict(SkPicture::MakeFromBuffer(reader));
reedd921dbb2016-09-30 09:27:20 -0700548 REPORTER_ASSERT(reporter, reader.isValid());
bsalomon49f085d2014-09-05 13:34:00 -0700549 REPORTER_ASSERT(reporter, readPict.get());
commit-bot@chromium.org9e5f85e2014-03-12 14:46:41 +0000550 }
caseq26337e92014-06-30 12:14:52 -0700551
552 TestPictureTypefaceSerialization(reporter);
commit-bot@chromium.org02512882013-10-31 18:37:50 +0000553}
reedf70b5312016-03-04 16:36:20 -0800554
555///////////////////////////////////////////////////////////////////////////////////////////////////
556#include "SkAnnotation.h"
557
reedca2622b2016-03-18 07:25:55 -0700558static sk_sp<SkPicture> copy_picture_via_serialization(SkPicture* src) {
reedf70b5312016-03-04 16:36:20 -0800559 SkDynamicMemoryWStream wstream;
560 src->serialize(&wstream);
Ben Wagner145dbcd2016-11-03 14:40:50 -0400561 std::unique_ptr<SkStreamAsset> rstream(wstream.detachAsStream());
562 return SkPicture::MakeFromStream(rstream.get());
reedf70b5312016-03-04 16:36:20 -0800563}
564
565struct AnnotationRec {
566 const SkRect fRect;
567 const char* fKey;
bungeman38d909e2016-08-02 14:40:46 -0700568 sk_sp<SkData> fValue;
reedf70b5312016-03-04 16:36:20 -0800569};
570
571class TestAnnotationCanvas : public SkCanvas {
572 skiatest::Reporter* fReporter;
573 const AnnotationRec* fRec;
574 int fCount;
575 int fCurrIndex;
576
577public:
578 TestAnnotationCanvas(skiatest::Reporter* reporter, const AnnotationRec rec[], int count)
579 : SkCanvas(100, 100)
580 , fReporter(reporter)
581 , fRec(rec)
582 , fCount(count)
583 , fCurrIndex(0)
584 {}
585
586 ~TestAnnotationCanvas() {
587 REPORTER_ASSERT(fReporter, fCount == fCurrIndex);
588 }
589
590protected:
591 void onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
592 REPORTER_ASSERT(fReporter, fCurrIndex < fCount);
593 REPORTER_ASSERT(fReporter, rect == fRec[fCurrIndex].fRect);
594 REPORTER_ASSERT(fReporter, !strcmp(key, fRec[fCurrIndex].fKey));
bungeman38d909e2016-08-02 14:40:46 -0700595 REPORTER_ASSERT(fReporter, value->equals(fRec[fCurrIndex].fValue.get()));
reedf70b5312016-03-04 16:36:20 -0800596 fCurrIndex += 1;
597 }
598};
599
600/*
601 * Test the 3 annotation types by recording them into a picture, serializing, and then playing
602 * them back into another canvas.
603 */
604DEF_TEST(Annotations, reporter) {
605 SkPictureRecorder recorder;
606 SkCanvas* recordingCanvas = recorder.beginRecording(SkRect::MakeWH(100, 100));
halcanary9d524f22016-03-29 09:03:52 -0700607
reedf70b5312016-03-04 16:36:20 -0800608 const char* str0 = "rect-with-url";
609 const SkRect r0 = SkRect::MakeWH(10, 10);
bungeman38d909e2016-08-02 14:40:46 -0700610 sk_sp<SkData> d0(SkData::MakeWithCString(str0));
611 SkAnnotateRectWithURL(recordingCanvas, r0, d0.get());
halcanary9d524f22016-03-29 09:03:52 -0700612
reedf70b5312016-03-04 16:36:20 -0800613 const char* str1 = "named-destination";
614 const SkRect r1 = SkRect::MakeXYWH(5, 5, 0, 0); // collapsed to a point
bungeman38d909e2016-08-02 14:40:46 -0700615 sk_sp<SkData> d1(SkData::MakeWithCString(str1));
616 SkAnnotateNamedDestination(recordingCanvas, {r1.x(), r1.y()}, d1.get());
halcanary9d524f22016-03-29 09:03:52 -0700617
reedf70b5312016-03-04 16:36:20 -0800618 const char* str2 = "link-to-destination";
619 const SkRect r2 = SkRect::MakeXYWH(20, 20, 5, 6);
bungeman38d909e2016-08-02 14:40:46 -0700620 sk_sp<SkData> d2(SkData::MakeWithCString(str2));
621 SkAnnotateLinkToDestination(recordingCanvas, r2, d2.get());
reedf70b5312016-03-04 16:36:20 -0800622
623 const AnnotationRec recs[] = {
bungeman38d909e2016-08-02 14:40:46 -0700624 { r0, SkAnnotationKeys::URL_Key(), std::move(d0) },
625 { r1, SkAnnotationKeys::Define_Named_Dest_Key(), std::move(d1) },
626 { r2, SkAnnotationKeys::Link_Named_Dest_Key(), std::move(d2) },
reedf70b5312016-03-04 16:36:20 -0800627 };
628
reedca2622b2016-03-18 07:25:55 -0700629 sk_sp<SkPicture> pict0(recorder.finishRecordingAsPicture());
630 sk_sp<SkPicture> pict1(copy_picture_via_serialization(pict0.get()));
reedf70b5312016-03-04 16:36:20 -0800631
632 TestAnnotationCanvas canvas(reporter, recs, SK_ARRAY_COUNT(recs));
633 canvas.drawPicture(pict1);
634}