• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
8 #include "Resources.h"
9 #include "SkAnnotationKeys.h"
10 #include "SkCanvas.h"
11 #include "SkDashPathEffect.h"
12 #include "SkFixed.h"
13 #include "SkFontDescriptor.h"
14 #include "SkImage.h"
15 #include "SkImageSource.h"
16 #include "SkLightingShader.h"
17 #include "SkMakeUnique.h"
18 #include "SkMallocPixelRef.h"
19 #include "SkMatrixPriv.h"
20 #include "SkNormalSource.h"
21 #include "SkOSFile.h"
22 #include "SkReadBuffer.h"
23 #include "SkPicturePriv.h"
24 #include "SkPictureRecorder.h"
25 #include "SkShaderBase.h"
26 #include "SkTableColorFilter.h"
27 #include "SkTemplates.h"
28 #include "SkTextBlob.h"
29 #include "SkTypeface.h"
30 #include "SkWriteBuffer.h"
31 #include "SkXfermodeImageFilter.h"
32 #include "sk_tool_utils.h"
33 #include "Test.h"
34 
35 static const uint32_t kArraySize = 64;
36 static const int kBitmapSize = 256;
37 
38 class SerializationTest {
39 public:
40 
41 template<typename T>
TestAlignment(T * testObj,skiatest::Reporter * reporter)42 static void TestAlignment(T* testObj, skiatest::Reporter* reporter) {
43     // Test memory read/write functions directly
44     unsigned char dataWritten[1024];
45     size_t bytesWrittenToMemory = testObj->writeToMemory(dataWritten);
46     REPORTER_ASSERT(reporter, SkAlign4(bytesWrittenToMemory) == bytesWrittenToMemory);
47     size_t bytesReadFromMemory = testObj->readFromMemory(dataWritten, bytesWrittenToMemory);
48     REPORTER_ASSERT(reporter, SkAlign4(bytesReadFromMemory) == bytesReadFromMemory);
49 }
50 };
51 
52 template<typename T> struct SerializationUtils {
53     // Generic case for flattenables
WriteSerializationUtils54     static void Write(SkWriteBuffer& writer, const T* flattenable) {
55         writer.writeFlattenable(flattenable);
56     }
ReadSerializationUtils57     static void Read(SkReadBuffer& reader, T** flattenable) {
58         *flattenable = (T*)reader.readFlattenable(T::GetFlattenableType());
59     }
60 };
61 
62 template<> struct SerializationUtils<SkMatrix> {
WriteSerializationUtils63     static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) {
64         writer.writeMatrix(*matrix);
65     }
ReadSerializationUtils66     static void Read(SkReadBuffer& reader, SkMatrix* matrix) {
67         reader.readMatrix(matrix);
68     }
69 };
70 
71 template<> struct SerializationUtils<SkPath> {
WriteSerializationUtils72     static void Write(SkWriteBuffer& writer, const SkPath* path) {
73         writer.writePath(*path);
74     }
ReadSerializationUtils75     static void Read(SkReadBuffer& reader, SkPath* path) {
76         reader.readPath(path);
77     }
78 };
79 
80 template<> struct SerializationUtils<SkRegion> {
WriteSerializationUtils81     static void Write(SkWriteBuffer& writer, const SkRegion* region) {
82         writer.writeRegion(*region);
83     }
ReadSerializationUtils84     static void Read(SkReadBuffer& reader, SkRegion* region) {
85         reader.readRegion(region);
86     }
87 };
88 
89 template<> struct SerializationUtils<SkString> {
WriteSerializationUtils90     static void Write(SkWriteBuffer& writer, const SkString* string) {
91         writer.writeString(string->c_str());
92     }
ReadSerializationUtils93     static void Read(SkReadBuffer& reader, SkString* string) {
94         reader.readString(string);
95     }
96 };
97 
98 template<> struct SerializationUtils<unsigned char> {
WriteSerializationUtils99     static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
100         writer.writeByteArray(data, arraySize);
101     }
ReadSerializationUtils102     static bool Read(SkReadBuffer& reader, unsigned char* data, uint32_t arraySize) {
103         return reader.readByteArray(data, arraySize);
104     }
105 };
106 
107 template<> struct SerializationUtils<SkColor> {
WriteSerializationUtils108     static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
109         writer.writeColorArray(data, arraySize);
110     }
ReadSerializationUtils111     static bool Read(SkReadBuffer& reader, SkColor* data, uint32_t arraySize) {
112         return reader.readColorArray(data, arraySize);
113     }
114 };
115 
116 template<> struct SerializationUtils<SkColor4f> {
WriteSerializationUtils117     static void Write(SkWriteBuffer& writer, SkColor4f* data, uint32_t arraySize) {
118         writer.writeColor4fArray(data, arraySize);
119     }
ReadSerializationUtils120     static bool Read(SkReadBuffer& reader, SkColor4f* data, uint32_t arraySize) {
121         return reader.readColor4fArray(data, arraySize);
122     }
123 };
124 
125 template<> struct SerializationUtils<int32_t> {
WriteSerializationUtils126     static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
127         writer.writeIntArray(data, arraySize);
128     }
ReadSerializationUtils129     static bool Read(SkReadBuffer& reader, int32_t* data, uint32_t arraySize) {
130         return reader.readIntArray(data, arraySize);
131     }
132 };
133 
134 template<> struct SerializationUtils<SkPoint> {
WriteSerializationUtils135     static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) {
136         writer.writePointArray(data, arraySize);
137     }
ReadSerializationUtils138     static bool Read(SkReadBuffer& reader, SkPoint* data, uint32_t arraySize) {
139         return reader.readPointArray(data, arraySize);
140     }
141 };
142 
143 template<> struct SerializationUtils<SkPoint3> {
WriteSerializationUtils144     static void Write(SkWriteBuffer& writer, const SkPoint3* data) {
145         writer.writePoint3(*data);
146     }
ReadSerializationUtils147     static void Read(SkReadBuffer& reader, SkPoint3* data) {
148         reader.readPoint3(data);
149     }
150 };
151 
152 template<> struct SerializationUtils<SkScalar> {
WriteSerializationUtils153     static void Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) {
154         writer.writeScalarArray(data, arraySize);
155     }
ReadSerializationUtils156     static bool Read(SkReadBuffer& reader, SkScalar* data, uint32_t arraySize) {
157         return reader.readScalarArray(data, arraySize);
158     }
159 };
160 
161 template<typename T, bool testInvalid> struct SerializationTestUtils {
InvalidateDataSerializationTestUtils162     static void InvalidateData(unsigned char* data) {}
163 };
164 
165 template<> struct SerializationTestUtils<SkString, true> {
InvalidateDataSerializationTestUtils166     static void InvalidateData(unsigned char* data) {
167         data[3] |= 0x80; // Reverse sign of 1st integer
168     }
169 };
170 
171 template<typename T, bool testInvalid>
TestObjectSerializationNoAlign(T * testObj,skiatest::Reporter * reporter)172 static void TestObjectSerializationNoAlign(T* testObj, skiatest::Reporter* reporter) {
173     SkBinaryWriteBuffer writer;
174     SerializationUtils<T>::Write(writer, testObj);
175     size_t bytesWritten = writer.bytesWritten();
176     REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
177 
178     unsigned char dataWritten[1024];
179     writer.writeToMemory(dataWritten);
180 
181     SerializationTestUtils<T, testInvalid>::InvalidateData(dataWritten);
182 
183     // Make sure this fails when it should (test with smaller size, but still multiple of 4)
184     SkReadBuffer buffer(dataWritten, bytesWritten - 4);
185     T obj;
186     SerializationUtils<T>::Read(buffer, &obj);
187     REPORTER_ASSERT(reporter, !buffer.isValid());
188 
189     // Make sure this succeeds when it should
190     SkReadBuffer buffer2(dataWritten, bytesWritten);
191     size_t offsetBefore = buffer2.offset();
192     T obj2;
193     SerializationUtils<T>::Read(buffer2, &obj2);
194     size_t offsetAfter = buffer2.offset();
195     // This should have succeeded, since there are enough bytes to read this
196     REPORTER_ASSERT(reporter, buffer2.isValid() == !testInvalid);
197     // Note: This following test should always succeed, regardless of whether the buffer is valid,
198     // since if it is invalid, it will simply skip to the end, as if it had read the whole buffer.
199     REPORTER_ASSERT(reporter, offsetAfter - offsetBefore == bytesWritten);
200 }
201 
202 template<typename T>
TestObjectSerialization(T * testObj,skiatest::Reporter * reporter)203 static void TestObjectSerialization(T* testObj, skiatest::Reporter* reporter) {
204     TestObjectSerializationNoAlign<T, false>(testObj, reporter);
205     SerializationTest::TestAlignment(testObj, reporter);
206 }
207 
208 template<typename T>
TestFlattenableSerialization(T * testObj,bool shouldSucceed,skiatest::Reporter * reporter)209 static T* TestFlattenableSerialization(T* testObj, bool shouldSucceed,
210                                        skiatest::Reporter* reporter) {
211     SkBinaryWriteBuffer writer;
212     SerializationUtils<T>::Write(writer, testObj);
213     size_t bytesWritten = writer.bytesWritten();
214     REPORTER_ASSERT(reporter, SkAlign4(bytesWritten) == bytesWritten);
215 
216     SkASSERT(bytesWritten <= 4096);
217     unsigned char dataWritten[4096];
218     writer.writeToMemory(dataWritten);
219 
220     // Make sure this fails when it should (test with smaller size, but still multiple of 4)
221     SkReadBuffer buffer(dataWritten, bytesWritten - 4);
222     T* obj = nullptr;
223     SerializationUtils<T>::Read(buffer, &obj);
224     REPORTER_ASSERT(reporter, !buffer.isValid());
225     REPORTER_ASSERT(reporter, nullptr == obj);
226 
227     // Make sure this succeeds when it should
228     SkReadBuffer buffer2(dataWritten, bytesWritten);
229     const unsigned char* peekBefore = static_cast<const unsigned char*>(buffer2.skip(0));
230     T* obj2 = nullptr;
231     SerializationUtils<T>::Read(buffer2, &obj2);
232     const unsigned char* peekAfter = static_cast<const unsigned char*>(buffer2.skip(0));
233     if (shouldSucceed) {
234         // This should have succeeded, since there are enough bytes to read this
235         REPORTER_ASSERT(reporter, buffer2.isValid());
236         REPORTER_ASSERT(reporter, static_cast<size_t>(peekAfter - peekBefore) == bytesWritten);
237         REPORTER_ASSERT(reporter, obj2);
238     } else {
239         // If the deserialization was supposed to fail, make sure it did
240         REPORTER_ASSERT(reporter, !buffer.isValid());
241         REPORTER_ASSERT(reporter, nullptr == obj2);
242     }
243 
244     return obj2; // Return object to perform further validity tests on it
245 }
246 
247 template<typename T>
TestArraySerialization(T * data,skiatest::Reporter * reporter)248 static void TestArraySerialization(T* data, skiatest::Reporter* reporter) {
249     SkBinaryWriteBuffer writer;
250     SerializationUtils<T>::Write(writer, data, kArraySize);
251     size_t bytesWritten = writer.bytesWritten();
252     // This should write the length (in 4 bytes) and the array
253     REPORTER_ASSERT(reporter, (4 + kArraySize * sizeof(T)) == bytesWritten);
254 
255     unsigned char dataWritten[2048];
256     writer.writeToMemory(dataWritten);
257 
258     // Make sure this fails when it should
259     SkReadBuffer buffer(dataWritten, bytesWritten);
260     T dataRead[kArraySize];
261     bool success = SerializationUtils<T>::Read(buffer, dataRead, kArraySize / 2);
262     // This should have failed, since the provided size was too small
263     REPORTER_ASSERT(reporter, !success);
264 
265     // Make sure this succeeds when it should
266     SkReadBuffer buffer2(dataWritten, bytesWritten);
267     success = SerializationUtils<T>::Read(buffer2, dataRead, kArraySize);
268     // This should have succeeded, since there are enough bytes to read this
269     REPORTER_ASSERT(reporter, success);
270 }
271 
TestBitmapSerialization(const SkBitmap & validBitmap,const SkBitmap & invalidBitmap,bool shouldSucceed,skiatest::Reporter * reporter)272 static void TestBitmapSerialization(const SkBitmap& validBitmap,
273                                     const SkBitmap& invalidBitmap,
274                                     bool shouldSucceed,
275                                     skiatest::Reporter* reporter) {
276     sk_sp<SkImage> validImage(SkImage::MakeFromBitmap(validBitmap));
277     sk_sp<SkImageFilter> validBitmapSource(SkImageSource::Make(std::move(validImage)));
278     sk_sp<SkImage> invalidImage(SkImage::MakeFromBitmap(invalidBitmap));
279     sk_sp<SkImageFilter> invalidBitmapSource(SkImageSource::Make(std::move(invalidImage)));
280     sk_sp<SkImageFilter> xfermodeImageFilter(
281         SkXfermodeImageFilter::Make(SkBlendMode::kSrcOver,
282                                     std::move(invalidBitmapSource),
283                                     std::move(validBitmapSource), nullptr));
284 
285     sk_sp<SkImageFilter> deserializedFilter(
286         TestFlattenableSerialization<SkImageFilter>(
287             xfermodeImageFilter.get(), shouldSucceed, reporter));
288 
289     // Try to render a small bitmap using the invalid deserialized filter
290     // to make sure we don't crash while trying to render it
291     if (shouldSucceed) {
292         SkBitmap bitmap;
293         bitmap.allocN32Pixels(24, 24);
294         SkCanvas canvas(bitmap);
295         canvas.clear(0x00000000);
296         SkPaint paint;
297         paint.setImageFilter(deserializedFilter);
298         canvas.clipRect(SkRect::MakeXYWH(0, 0, SkIntToScalar(24), SkIntToScalar(24)));
299         canvas.drawBitmap(bitmap, 0, 0, &paint);
300     }
301 }
302 
TestColorFilterSerialization(skiatest::Reporter * reporter)303 static void TestColorFilterSerialization(skiatest::Reporter* reporter) {
304     uint8_t table[256];
305     for (int i = 0; i < 256; ++i) {
306         table[i] = (i * 41) % 256;
307     }
308     auto colorFilter(SkTableColorFilter::Make(table));
309     sk_sp<SkColorFilter> copy(
310         TestFlattenableSerialization<SkColorFilter>(colorFilter.get(), true, reporter));
311 }
312 
draw_picture(SkPicture & picture)313 static SkBitmap draw_picture(SkPicture& picture) {
314      SkBitmap bitmap;
315      bitmap.allocN32Pixels(SkScalarCeilToInt(picture.cullRect().width()),
316                            SkScalarCeilToInt(picture.cullRect().height()));
317      SkCanvas canvas(bitmap);
318      picture.playback(&canvas);
319      return bitmap;
320 }
321 
compare_bitmaps(skiatest::Reporter * reporter,const SkBitmap & b1,const SkBitmap & b2)322 static void compare_bitmaps(skiatest::Reporter* reporter,
323                             const SkBitmap& b1, const SkBitmap& b2) {
324     REPORTER_ASSERT(reporter, b1.width() == b2.width());
325     REPORTER_ASSERT(reporter, b1.height() == b2.height());
326 
327     if ((b1.width() != b2.width()) ||
328         (b1.height() != b2.height())) {
329         return;
330     }
331 
332     int pixelErrors = 0;
333     for (int y = 0; y < b2.height(); ++y) {
334         for (int x = 0; x < b2.width(); ++x) {
335             if (b1.getColor(x, y) != b2.getColor(x, y))
336                 ++pixelErrors;
337         }
338     }
339     REPORTER_ASSERT(reporter, 0 == pixelErrors);
340 }
serialize_and_compare_typeface(sk_sp<SkTypeface> typeface,const char * text,skiatest::Reporter * reporter)341 static void serialize_and_compare_typeface(sk_sp<SkTypeface> typeface, const char* text,
342                                            skiatest::Reporter* reporter)
343 {
344     // Create a font with the typeface.
345     SkPaint paint;
346     paint.setColor(SK_ColorGRAY);
347     SkFont font(std::move(typeface), 30);
348 
349     // Paint some text.
350     SkPictureRecorder recorder;
351     SkIRect canvasRect = SkIRect::MakeWH(kBitmapSize, kBitmapSize);
352     SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(canvasRect.width()),
353                                                SkIntToScalar(canvasRect.height()),
354                                                nullptr, 0);
355     canvas->drawColor(SK_ColorWHITE);
356     canvas->drawString(text, 24, 32, font, paint);
357     sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture());
358 
359     // Serlialize picture and create its clone from stream.
360     SkDynamicMemoryWStream stream;
361     picture->serialize(&stream);
362     std::unique_ptr<SkStream> inputStream(stream.detachAsStream());
363     sk_sp<SkPicture> loadedPicture(SkPicture::MakeFromStream(inputStream.get()));
364 
365     // Draw both original and clone picture and compare bitmaps -- they should be identical.
366     SkBitmap origBitmap = draw_picture(*picture);
367     SkBitmap destBitmap = draw_picture(*loadedPicture);
368     compare_bitmaps(reporter, origBitmap, destBitmap);
369 }
370 
TestPictureTypefaceSerialization(skiatest::Reporter * reporter)371 static void TestPictureTypefaceSerialization(skiatest::Reporter* reporter) {
372     {
373         // Load typeface from file to test CreateFromFile with index.
374         auto typeface = MakeResourceAsTypeface("fonts/test.ttc", 1);
375         if (!typeface) {
376             INFOF(reporter, "Could not run fontstream test because test.ttc not found.");
377         } else {
378             serialize_and_compare_typeface(std::move(typeface), "A!", reporter);
379         }
380     }
381 
382     {
383         // Load typeface as stream to create with axis settings.
384         std::unique_ptr<SkStreamAsset> distortable(GetResourceAsStream("fonts/Distortable.ttf"));
385         if (!distortable) {
386             INFOF(reporter, "Could not run fontstream test because Distortable.ttf not found.");
387         } else {
388             SkFixed axis = SK_FixedSqrt2;
389             sk_sp<SkTypeface> typeface(SkTypeface::MakeFromFontData(
390                 skstd::make_unique<SkFontData>(std::move(distortable), 0, &axis, 1)));
391             if (!typeface) {
392                 INFOF(reporter, "Could not run fontstream test because Distortable.ttf not created.");
393             } else {
394                 serialize_and_compare_typeface(std::move(typeface), "ab", reporter);
395             }
396         }
397     }
398 }
399 
setup_bitmap_for_canvas(SkBitmap * bitmap)400 static void setup_bitmap_for_canvas(SkBitmap* bitmap) {
401     bitmap->allocN32Pixels(kBitmapSize, kBitmapSize);
402 }
403 
make_checkerboard_bitmap(SkBitmap & bitmap)404 static void make_checkerboard_bitmap(SkBitmap& bitmap) {
405     setup_bitmap_for_canvas(&bitmap);
406 
407     SkCanvas canvas(bitmap);
408     canvas.clear(0x00000000);
409     SkPaint darkPaint;
410     darkPaint.setColor(0xFF804020);
411     SkPaint lightPaint;
412     lightPaint.setColor(0xFF244484);
413     const int i = kBitmapSize / 8;
414     const SkScalar f = SkIntToScalar(i);
415     for (int y = 0; y < kBitmapSize; y += i) {
416         for (int x = 0; x < kBitmapSize; x += i) {
417             canvas.save();
418             canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
419             canvas.drawRect(SkRect::MakeXYWH(0, 0, f, f), darkPaint);
420             canvas.drawRect(SkRect::MakeXYWH(f, 0, f, f), lightPaint);
421             canvas.drawRect(SkRect::MakeXYWH(0, f, f, f), lightPaint);
422             canvas.drawRect(SkRect::MakeXYWH(f, f, f, f), darkPaint);
423             canvas.restore();
424         }
425     }
426 }
427 
draw_something(SkCanvas * canvas)428 static void draw_something(SkCanvas* canvas) {
429     SkPaint paint;
430     SkBitmap bitmap;
431     make_checkerboard_bitmap(bitmap);
432 
433     canvas->save();
434     canvas->scale(0.5f, 0.5f);
435     canvas->drawBitmap(bitmap, 0, 0, nullptr);
436     canvas->restore();
437 
438     paint.setAntiAlias(true);
439 
440     paint.setColor(SK_ColorRED);
441     canvas->drawCircle(SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/3), paint);
442     paint.setColor(SK_ColorBLACK);
443 
444     SkFont font;
445     font.setSize(kBitmapSize/3);
446     canvas->drawString("Picture", SkIntToScalar(kBitmapSize/2), SkIntToScalar(kBitmapSize/4), font, paint);
447 }
448 
DEF_TEST(Serialization,reporter)449 DEF_TEST(Serialization, reporter) {
450     // Test matrix serialization
451     {
452         SkMatrix matrix = SkMatrix::I();
453         TestObjectSerialization(&matrix, reporter);
454     }
455 
456     // Test point3 serialization
457     {
458         SkPoint3 point;
459         TestObjectSerializationNoAlign<SkPoint3, false>(&point, reporter);
460     }
461 
462     // Test path serialization
463     {
464         SkPath path;
465         TestObjectSerialization(&path, reporter);
466     }
467 
468     // Test region serialization
469     {
470         SkRegion region;
471         TestObjectSerialization(&region, reporter);
472     }
473 
474     // Test color filter serialization
475     {
476         TestColorFilterSerialization(reporter);
477     }
478 
479     // Test string serialization
480     {
481         SkString string("string");
482         TestObjectSerializationNoAlign<SkString, false>(&string, reporter);
483         TestObjectSerializationNoAlign<SkString, true>(&string, reporter);
484     }
485 
486     // Test rrect serialization
487     {
488         // SkRRect does not initialize anything.
489         // An uninitialized SkRRect can be serialized,
490         // but will branch on uninitialized data when deserialized.
491         SkRRect rrect;
492         SkRect rect = SkRect::MakeXYWH(1, 2, 20, 30);
493         SkVector corners[4] = { {1, 2}, {2, 3}, {3,4}, {4,5} };
494         rrect.setRectRadii(rect, corners);
495         SerializationTest::TestAlignment(&rrect, reporter);
496     }
497 
498     // Test readByteArray
499     {
500         unsigned char data[kArraySize] = { 1, 2, 3 };
501         TestArraySerialization(data, reporter);
502     }
503 
504     // Test readColorArray
505     {
506         SkColor data[kArraySize] = { SK_ColorBLACK, SK_ColorWHITE, SK_ColorRED };
507         TestArraySerialization(data, reporter);
508     }
509 
510     // Test readColor4fArray
511     {
512         SkColor4f data[kArraySize] = {
513             SkColor4f::FromColor(SK_ColorBLACK),
514             SkColor4f::FromColor(SK_ColorWHITE),
515             SkColor4f::FromColor(SK_ColorRED),
516             { 1.f, 2.f, 4.f, 8.f }
517         };
518         TestArraySerialization(data, reporter);
519     }
520 
521     // Test readIntArray
522     {
523         int32_t data[kArraySize] = { 1, 2, 4, 8 };
524         TestArraySerialization(data, reporter);
525     }
526 
527     // Test readPointArray
528     {
529         SkPoint data[kArraySize] = { {6, 7}, {42, 128} };
530         TestArraySerialization(data, reporter);
531     }
532 
533     // Test readScalarArray
534     {
535         SkScalar data[kArraySize] = { SK_Scalar1, SK_ScalarHalf, SK_ScalarMax };
536         TestArraySerialization(data, reporter);
537     }
538 
539     // Test invalid deserializations
540     {
541         SkImageInfo info = SkImageInfo::MakeN32Premul(kBitmapSize, kBitmapSize);
542 
543         SkBitmap validBitmap;
544         validBitmap.setInfo(info);
545 
546         // Create a bitmap with a really large height
547         SkBitmap invalidBitmap;
548         invalidBitmap.setInfo(info.makeWH(info.width(), 1000000000));
549 
550         // The deserialization should succeed, and the rendering shouldn't crash,
551         // even when the device fails to initialize, due to its size
552         TestBitmapSerialization(validBitmap, invalidBitmap, true, reporter);
553     }
554 
555     // Test simple SkPicture serialization
556     {
557         SkPictureRecorder recorder;
558         draw_something(recorder.beginRecording(SkIntToScalar(kBitmapSize),
559                                                SkIntToScalar(kBitmapSize),
560                                                nullptr, 0));
561         sk_sp<SkPicture> pict(recorder.finishRecordingAsPicture());
562 
563         // Serialize picture
564         SkBinaryWriteBuffer writer;
565         SkPicturePriv::Flatten(pict, writer);
566         size_t size = writer.bytesWritten();
567         SkAutoTMalloc<unsigned char> data(size);
568         writer.writeToMemory(static_cast<void*>(data.get()));
569 
570         // Deserialize picture
571         SkReadBuffer reader(static_cast<void*>(data.get()), size);
572         sk_sp<SkPicture> readPict(SkPicturePriv::MakeFromBuffer(reader));
573         REPORTER_ASSERT(reporter, reader.isValid());
574         REPORTER_ASSERT(reporter, readPict.get());
575     }
576 
577     TestPictureTypefaceSerialization(reporter);
578 
579     // Test SkLightingShader/NormalMapSource serialization
580     {
581         const int kTexSize = 2;
582 
583         SkLights::Builder builder;
584 
585         builder.add(SkLights::Light::MakeDirectional(SkColor3f::Make(1.0f, 1.0f, 1.0f),
586                                                      SkVector3::Make(1.0f, 0.0f, 0.0f)));
587         builder.setAmbientLightColor(SkColor3f::Make(0.2f, 0.2f, 0.2f));
588 
589         sk_sp<SkLights> fLights = builder.finish();
590 
591         SkBitmap diffuse = sk_tool_utils::create_checkerboard_bitmap(
592                 kTexSize, kTexSize,
593                 0x00000000,
594                 sk_tool_utils::color_to_565(0xFF804020),
595                 8);
596 
597         SkRect bitmapBounds = SkRect::MakeIWH(diffuse.width(), diffuse.height());
598 
599         SkMatrix matrix;
600         SkRect r = SkRect::MakeWH(SkIntToScalar(kTexSize), SkIntToScalar(kTexSize));
601         matrix.setRectToRect(bitmapBounds, r, SkMatrix::kFill_ScaleToFit);
602 
603         SkMatrix ctm;
604         ctm.setRotate(45);
605         SkBitmap normals;
606         normals.allocN32Pixels(kTexSize, kTexSize);
607 
608         sk_tool_utils::create_frustum_normal_map(&normals, SkIRect::MakeWH(kTexSize, kTexSize));
609         sk_sp<SkShader> normalMap = SkShader::MakeBitmapShader(normals, SkShader::kClamp_TileMode,
610                 SkShader::kClamp_TileMode, &matrix);
611         sk_sp<SkNormalSource> normalSource = SkNormalSource::MakeFromNormalMap(std::move(normalMap),
612                                                                                ctm);
613         sk_sp<SkShader> diffuseShader = SkShader::MakeBitmapShader(diffuse,
614                 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode, &matrix);
615 
616         sk_sp<SkShader> lightingShader = SkLightingShader::Make(diffuseShader,
617                                                                 normalSource,
618                                                                 fLights);
619         sk_sp<SkShader>(TestFlattenableSerialization(as_SB(lightingShader.get()), true, reporter));
620 
621         lightingShader = SkLightingShader::Make(std::move(diffuseShader),
622                                                 nullptr,
623                                                 fLights);
624         sk_sp<SkShader>(TestFlattenableSerialization(as_SB(lightingShader.get()), true, reporter));
625 
626         lightingShader = SkLightingShader::Make(nullptr,
627                                                 std::move(normalSource),
628                                                 fLights);
629         sk_sp<SkShader>(TestFlattenableSerialization(as_SB(lightingShader.get()), true, reporter));
630 
631         lightingShader = SkLightingShader::Make(nullptr,
632                                                 nullptr,
633                                                 fLights);
634         sk_sp<SkShader>(TestFlattenableSerialization(as_SB(lightingShader.get()), true, reporter));
635     }
636 }
637 
638 ///////////////////////////////////////////////////////////////////////////////////////////////////
639 #include "SkAnnotation.h"
640 
copy_picture_via_serialization(SkPicture * src)641 static sk_sp<SkPicture> copy_picture_via_serialization(SkPicture* src) {
642     SkDynamicMemoryWStream wstream;
643     src->serialize(&wstream);
644     std::unique_ptr<SkStreamAsset> rstream(wstream.detachAsStream());
645     return SkPicture::MakeFromStream(rstream.get());
646 }
647 
648 struct AnnotationRec {
649     const SkRect    fRect;
650     const char*     fKey;
651     sk_sp<SkData>   fValue;
652 };
653 
654 class TestAnnotationCanvas : public SkCanvas {
655     skiatest::Reporter*     fReporter;
656     const AnnotationRec*    fRec;
657     int                     fCount;
658     int                     fCurrIndex;
659 
660 public:
TestAnnotationCanvas(skiatest::Reporter * reporter,const AnnotationRec rec[],int count)661     TestAnnotationCanvas(skiatest::Reporter* reporter, const AnnotationRec rec[], int count)
662         : SkCanvas(100, 100)
663         , fReporter(reporter)
664         , fRec(rec)
665         , fCount(count)
666         , fCurrIndex(0)
667     {}
668 
~TestAnnotationCanvas()669     ~TestAnnotationCanvas() {
670         REPORTER_ASSERT(fReporter, fCount == fCurrIndex);
671     }
672 
673 protected:
onDrawAnnotation(const SkRect & rect,const char key[],SkData * value)674     void onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
675         REPORTER_ASSERT(fReporter, fCurrIndex < fCount);
676         REPORTER_ASSERT(fReporter, rect == fRec[fCurrIndex].fRect);
677         REPORTER_ASSERT(fReporter, !strcmp(key, fRec[fCurrIndex].fKey));
678         REPORTER_ASSERT(fReporter, value->equals(fRec[fCurrIndex].fValue.get()));
679         fCurrIndex += 1;
680     }
681 };
682 
683 /*
684  *  Test the 3 annotation types by recording them into a picture, serializing, and then playing
685  *  them back into another canvas.
686  */
DEF_TEST(Annotations,reporter)687 DEF_TEST(Annotations, reporter) {
688     SkPictureRecorder recorder;
689     SkCanvas* recordingCanvas = recorder.beginRecording(SkRect::MakeWH(100, 100));
690 
691     const char* str0 = "rect-with-url";
692     const SkRect r0 = SkRect::MakeWH(10, 10);
693     sk_sp<SkData> d0(SkData::MakeWithCString(str0));
694     SkAnnotateRectWithURL(recordingCanvas, r0, d0.get());
695 
696     const char* str1 = "named-destination";
697     const SkRect r1 = SkRect::MakeXYWH(5, 5, 0, 0); // collapsed to a point
698     sk_sp<SkData> d1(SkData::MakeWithCString(str1));
699     SkAnnotateNamedDestination(recordingCanvas, {r1.x(), r1.y()}, d1.get());
700 
701     const char* str2 = "link-to-destination";
702     const SkRect r2 = SkRect::MakeXYWH(20, 20, 5, 6);
703     sk_sp<SkData> d2(SkData::MakeWithCString(str2));
704     SkAnnotateLinkToDestination(recordingCanvas, r2, d2.get());
705 
706     const AnnotationRec recs[] = {
707         { r0, SkAnnotationKeys::URL_Key(),                  std::move(d0) },
708         { r1, SkAnnotationKeys::Define_Named_Dest_Key(),    std::move(d1) },
709         { r2, SkAnnotationKeys::Link_Named_Dest_Key(),      std::move(d2) },
710     };
711 
712     sk_sp<SkPicture> pict0(recorder.finishRecordingAsPicture());
713     sk_sp<SkPicture> pict1(copy_picture_via_serialization(pict0.get()));
714 
715     TestAnnotationCanvas canvas(reporter, recs, SK_ARRAY_COUNT(recs));
716     canvas.drawPicture(pict1);
717 }
718 
DEF_TEST(WriteBuffer_storage,reporter)719 DEF_TEST(WriteBuffer_storage, reporter) {
720     enum {
721         kSize = 32
722     };
723     int32_t storage[kSize/4];
724     char src[kSize];
725     sk_bzero(src, kSize);
726 
727     SkBinaryWriteBuffer writer(storage, kSize);
728     REPORTER_ASSERT(reporter, writer.usingInitialStorage());
729     REPORTER_ASSERT(reporter, writer.bytesWritten() == 0);
730     writer.write(src, kSize - 4);
731     REPORTER_ASSERT(reporter, writer.usingInitialStorage());
732     REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize - 4);
733     writer.writeInt(0);
734     REPORTER_ASSERT(reporter, writer.usingInitialStorage());
735     REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize);
736 
737     writer.reset(storage, kSize-4);
738     REPORTER_ASSERT(reporter, writer.usingInitialStorage());
739     REPORTER_ASSERT(reporter, writer.bytesWritten() == 0);
740     writer.write(src, kSize - 4);
741     REPORTER_ASSERT(reporter, writer.usingInitialStorage());
742     REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize - 4);
743     writer.writeInt(0);
744     REPORTER_ASSERT(reporter, !writer.usingInitialStorage());   // this is the change
745     REPORTER_ASSERT(reporter, writer.bytesWritten() == kSize);
746 }
747 
DEF_TEST(WriteBuffer_external_memory_textblob,reporter)748 DEF_TEST(WriteBuffer_external_memory_textblob, reporter) {
749     SkFont font;
750     font.setTypeface(SkTypeface::MakeDefault());
751 
752     SkTextBlobBuilder builder;
753     int glyph_count = 5;
754     const auto& run = builder.allocRun(font, glyph_count, 1.2f, 2.3f);
755     // allocRun() allocates only the glyph buffer.
756     std::fill(run.glyphs, run.glyphs + glyph_count, 0);
757     auto blob = builder.make();
758     SkSerialProcs procs;
759     SkAutoTMalloc<uint8_t> storage;
760     size_t blob_size = 0u;
761     size_t storage_size = 0u;
762 
763     blob_size = SkAlign4(blob->serialize(procs)->size());
764     REPORTER_ASSERT(reporter, blob_size > 4u);
765     storage_size = blob_size - 4;
766     storage.realloc(storage_size);
767     REPORTER_ASSERT(reporter, blob->serialize(procs, storage.get(), storage_size) == 0u);
768     storage_size = blob_size;
769     storage.realloc(storage_size);
770     REPORTER_ASSERT(reporter, blob->serialize(procs, storage.get(), storage_size) != 0u);
771 }
772 
DEF_TEST(WriteBuffer_external_memory_flattenable,reporter)773 DEF_TEST(WriteBuffer_external_memory_flattenable, reporter) {
774     SkScalar intervals[] = {1.f, 1.f};
775     auto path_effect = SkDashPathEffect::Make(intervals, 2, 0);
776     size_t path_size = SkAlign4(path_effect->serialize()->size());
777     REPORTER_ASSERT(reporter, path_size > 4u);
778     SkAutoTMalloc<uint8_t> storage;
779 
780     size_t storage_size = path_size - 4;
781     storage.realloc(storage_size);
782     REPORTER_ASSERT(reporter, path_effect->serialize(storage.get(), storage_size) == 0u);
783 
784     storage_size = path_size;
785     storage.realloc(storage_size);
786     REPORTER_ASSERT(reporter, path_effect->serialize(storage.get(), storage_size) != 0u);
787 }
788