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