• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 Google LLC.
2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3 
4 #include "tools/HashAndEncode.h"
5 
6 #include "include/core/SkColorSpace.h"
7 #include "include/core/SkColorType.h"
8 #include "include/core/SkString.h"
9 #include "include/encode/SkICC.h"
10 #include "modules/skcms/skcms.h"
11 
12 #include <png.h>
13 
rec2020()14 static sk_sp<SkColorSpace> rec2020() {
15     return SkColorSpace::MakeRGB(SkNamedTransferFn::kRec2020, SkNamedGamut::kRec2020);
16 }
17 
HashAndEncode(const SkBitmap & bitmap)18 HashAndEncode::HashAndEncode(const SkBitmap& bitmap) : fSize(bitmap.info().dimensions()) {
19     skcms_AlphaFormat srcAlpha;
20     switch (bitmap.alphaType()) {
21         case kUnknown_SkAlphaType: return;
22 
23         case kOpaque_SkAlphaType:
24         case kUnpremul_SkAlphaType: srcAlpha = skcms_AlphaFormat_Unpremul;        break;
25         case kPremul_SkAlphaType:   srcAlpha = skcms_AlphaFormat_PremulAsEncoded; break;
26     }
27 
28     skcms_PixelFormat srcFmt;
29     switch (bitmap.colorType()) {
30         case kUnknown_SkColorType:            return;
31 
32         case kAlpha_8_SkColorType:            srcFmt = skcms_PixelFormat_A_8;             break;
33         case kRGB_565_SkColorType:            srcFmt = skcms_PixelFormat_BGR_565;         break;
34         case kARGB_4444_SkColorType:          srcFmt = skcms_PixelFormat_ABGR_4444;       break;
35         case kRGBA_8888_SkColorType:          srcFmt = skcms_PixelFormat_RGBA_8888;       break;
36         case kBGRA_8888_SkColorType:          srcFmt = skcms_PixelFormat_BGRA_8888;       break;
37         case kSRGBA_8888_SkColorType:         srcFmt = skcms_PixelFormat_RGBA_8888_sRGB;  break;
38         case kRGBA_1010102_SkColorType:       srcFmt = skcms_PixelFormat_RGBA_1010102;    break;
39         case kBGRA_1010102_SkColorType:       srcFmt = skcms_PixelFormat_BGRA_1010102;    break;
40         case kBGR_101010x_XR_SkColorType:     srcFmt = skcms_PixelFormat_BGR_101010x_XR;  break;
41         case kGray_8_SkColorType:             srcFmt = skcms_PixelFormat_G_8;             break;
42         // skcms doesn't have R_8. Pretend it's G_8, but see below for color space trickery:
43         case kR8_unorm_SkColorType:           srcFmt = skcms_PixelFormat_G_8;             break;
44         case kRGBA_F16Norm_SkColorType:       srcFmt = skcms_PixelFormat_RGBA_hhhh;       break;
45         case kRGBA_F16_SkColorType:           srcFmt = skcms_PixelFormat_RGBA_hhhh;       break;
46         case kRGBA_F32_SkColorType:           srcFmt = skcms_PixelFormat_RGBA_ffff;       break;
47         case kR16G16B16A16_unorm_SkColorType: srcFmt = skcms_PixelFormat_RGBA_16161616LE; break;
48 
49         case kRGB_888x_SkColorType:           srcFmt = skcms_PixelFormat_RGBA_8888;
50                                               srcAlpha = skcms_AlphaFormat_Opaque;     break;
51         case kRGB_101010x_SkColorType:        srcFmt = skcms_PixelFormat_RGBA_1010102;
52                                               srcAlpha = skcms_AlphaFormat_Opaque;     break;
53         case kBGR_101010x_SkColorType:        srcFmt = skcms_PixelFormat_BGRA_1010102;
54                                               srcAlpha = skcms_AlphaFormat_Opaque;     break;
55 
56         case kR8G8_unorm_SkColorType:         return;
57         case kR16G16_unorm_SkColorType:       return;
58         case kR16G16_float_SkColorType:       return;
59         case kA16_unorm_SkColorType:          return;
60         case kA16_float_SkColorType:          return;
61         case kRGBA_10x6_SkColorType:          return;
62         case kBGRA_10101010_XR_SkColorType:   return;
63     }
64 
65     skcms_ICCProfile srcProfile = *skcms_sRGB_profile();
66     if (auto cs = bitmap.colorSpace()) {
67         cs->toProfile(&srcProfile);
68     }
69 
70     // NOTE: If the color type is R8, we told skcms it's actually G8 above. To get red PNGs,
71     // we tweak the source color space to throw away any green and blue:
72     if (bitmap.colorType() == kR8_unorm_SkColorType) {
73         srcProfile.toXYZD50.vals[0][1] = srcProfile.toXYZD50.vals[0][2] = 0;
74         srcProfile.toXYZD50.vals[1][1] = srcProfile.toXYZD50.vals[1][2] = 0;
75         srcProfile.toXYZD50.vals[2][1] = srcProfile.toXYZD50.vals[2][2] = 0;
76     }
77 
78     // Our common format that can represent anything we draw and encode as a PNG:
79     //   - 16-bit big-endian RGBA
80     //   - unpremul
81     //   - Rec. 2020 gamut and transfer function
82     skcms_PixelFormat dstFmt   = skcms_PixelFormat_RGBA_16161616BE;
83     skcms_AlphaFormat dstAlpha = skcms_AlphaFormat_Unpremul;
84     skcms_ICCProfile dstProfile;
85     rec2020()->toProfile(&dstProfile);
86 
87     int N = fSize.width() * fSize.height();
88     fPixels.reset(new uint64_t[N]);
89 
90     const void* src = bitmap.getPixels();
91     void* dst = fPixels.get();
92     while (N > 0) {
93         int todo = std::min(N, 1<<27);  // Keep todo*8 <= 1B; skcms requires N*bpp < MAX_INT.
94         if (!skcms_Transform(src, srcFmt, srcAlpha, &srcProfile,
95                              dst, dstFmt, dstAlpha, &dstProfile, todo)) {
96             SkASSERT(false);
97             fPixels.reset(nullptr);
98             break;
99         }
100         src = (const char*)src + todo*SkColorTypeBytesPerPixel(bitmap.colorType());
101         dst = (      char*)dst + todo*sizeof(uint64_t);
102         N -= todo;
103     }
104 }
105 
feedHash(SkWStream * st) const106 void HashAndEncode::feedHash(SkWStream* st) const {
107     st->write(&fSize, sizeof(fSize));
108     if (const uint64_t* px = fPixels.get()) {
109         st->write(px, sizeof(*px) * fSize.width() * fSize.height());
110     }
111 
112     // N.B. changing salt will change the hash of all images produced by DM,
113     // and will cause tens of thousands of new images to be uploaded to Gold.
114     int salt = 1;
115     st->write(&salt, sizeof(salt));
116 }
117 
118 // NOTE: HashAndEncode uses libpng directly rather than through an abstraction
119 // like SkPngEncoder to make sure we get stable, portable results independent
120 // of any changes to Skia production encoder.
121 
encodePNG(SkWStream * st,const char * md5,CommandLineFlags::StringArray key,CommandLineFlags::StringArray properties) const122 bool HashAndEncode::encodePNG(SkWStream* st,
123                               const char* md5,
124                               CommandLineFlags::StringArray key,
125                               CommandLineFlags::StringArray properties) const {
126     if (!fPixels) {
127         return false;
128     }
129 
130     png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
131     if (!png) {
132         return false;
133     }
134 
135     png_infop info = png_create_info_struct(png);
136     if (!info) {
137         png_destroy_write_struct(&png, &info);
138         return false;
139     }
140     auto write_to_stream = +[](png_structp png, png_bytep ptr, png_size_t len) {
141         auto st = (SkWStream*)png_get_io_ptr(png);
142         if (!st->write(ptr, len)) {
143             png_error(png, "HashAndEncode::encodePNG() failed writing stream");
144         }
145     };
146     png_set_write_fn(png, st, write_to_stream, nullptr);
147 
148     SkString description;
149     description.append("Key: ");
150     for (int i = 0; i < key.size(); i++) {
151         description.appendf("%s ", key[i]);
152     }
153     description.append("Properties: ");
154     for (int i = 0; i < properties.size(); i++) {
155         description.appendf("%s ", properties[i]);
156     }
157     description.appendf("MD5: %s", md5);
158 
159     png_text text[2];
160     text[0].key  = const_cast<png_charp>("Author");
161     text[0].text = const_cast<png_charp>("DM unified Rec.2020");
162     text[0].compression = PNG_TEXT_COMPRESSION_NONE;
163     text[1].key  = const_cast<png_charp>("Description");
164     text[1].text = const_cast<png_charp>(description.c_str());
165     text[1].compression = PNG_TEXT_COMPRESSION_NONE;
166     png_set_text(png, info, text, std::size(text));
167 
168     png_set_IHDR(png, info, (png_uint_32)fSize.width()
169                           , (png_uint_32)fSize.height()
170                           , 16/*bits per channel*/
171                           , PNG_COLOR_TYPE_RGB_ALPHA
172                           , PNG_INTERLACE_NONE
173                           , PNG_COMPRESSION_TYPE_DEFAULT
174                           , PNG_FILTER_TYPE_DEFAULT);
175 
176     // Fastest encoding and decoding, at slight file size cost is no filtering, compression 1.
177     png_set_filter(png, PNG_FILTER_TYPE_BASE, PNG_FILTER_NONE);
178     png_set_compression_level(png, 1);
179 
180     static const sk_sp<SkData> profile =
181         SkWriteICCProfile(SkNamedTransferFn::kRec2020, SkNamedGamut::kRec2020);
182     png_set_iCCP(png, info,
183                  "Rec.2020",
184                  0/*compression type... no idea what options are available here*/,
185                  (png_const_bytep)profile->data(),
186                  (png_uint_32)    profile->size());
187 
188     png_write_info(png, info);
189     for (int y = 0; y < fSize.height(); y++) {
190         png_write_row(png, (png_bytep)(fPixels.get() + y*fSize.width()));
191     }
192     png_write_end(png, info);
193 
194     png_destroy_write_struct(&png, &info);
195     return true;
196 }
197 
198