blob: 52ab60b1b5f8d300eb72938438f5012a6b85257f [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tao Bao0b1118d2017-01-14 07:46:10 -080017#include <fcntl.h>
18#include <linux/fb.h>
19#include <linux/kd.h>
20#include <stdio.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080021#include <stdlib.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080022#include <string.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <sys/ioctl.h>
24#include <sys/mman.h>
25#include <sys/types.h>
Tao Bao0b1118d2017-01-14 07:46:10 -080026#include <unistd.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027
Tianjie Xuacba38c2017-09-27 17:53:34 -070028#include <memory>
Tianjie Xu2078b222017-03-22 12:27:26 -070029#include <regex>
30#include <string>
Yabin Cui4425c1d2016-02-10 13:47:32 -080031#include <vector>
Tao Bao0b1118d2017-01-14 07:46:10 -080032
Tianjie Xuacba38c2017-09-27 17:53:34 -070033#include <android-base/stringprintf.h>
Tianjie Xu2078b222017-03-22 12:27:26 -070034#include <android-base/strings.h>
Doug Zongker19faefa2009-03-27 17:06:24 -070035#include <png.h>
36
Tao Bao0ecbd762017-01-16 21:16:58 -080037#include "minui/minui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080038
Doug Zongker16f97c32014-03-06 16:16:05 -080039#define SURFACE_DATA_ALIGNMENT 8
40
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070041static GRSurface* malloc_surface(size_t data_size) {
Elliott Hughes07cfb8f2015-04-10 13:12:05 -070042 size_t size = sizeof(GRSurface) + data_size + SURFACE_DATA_ALIGNMENT;
Rahul Chaudhryb29f23f2016-11-09 13:17:01 -080043 unsigned char* temp = static_cast<unsigned char*>(malloc(size));
Doug Zongker16f97c32014-03-06 16:16:05 -080044 if (temp == NULL) return NULL;
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -070045 GRSurface* surface = reinterpret_cast<GRSurface*>(temp);
Doug Zongker16f97c32014-03-06 16:16:05 -080046 surface->data = temp + sizeof(GRSurface) +
47 (SURFACE_DATA_ALIGNMENT - (sizeof(GRSurface) % SURFACE_DATA_ALIGNMENT));
48 return surface;
Doug Zongker19faefa2009-03-27 17:06:24 -070049}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080050
Tianjie Xuacba38c2017-09-27 17:53:34 -070051// This class handles the png file parsing. It also holds the ownership of the png pointer and the
52// opened file pointer. Both will be destroyed/closed when this object goes out of scope.
53class PngHandler {
54 public:
55 PngHandler(const std::string& name);
Doug Zongker6809c512011-03-01 14:04:34 -080056
Tianjie Xuacba38c2017-09-27 17:53:34 -070057 ~PngHandler();
Doug Zongker19faefa2009-03-27 17:06:24 -070058
Tianjie Xuacba38c2017-09-27 17:53:34 -070059 png_uint_32 width() const {
60 return width_;
61 }
Doug Zongker19faefa2009-03-27 17:06:24 -070062
Tianjie Xuacba38c2017-09-27 17:53:34 -070063 png_uint_32 height() const {
64 return height_;
65 }
Doug Zongker19faefa2009-03-27 17:06:24 -070066
Tianjie Xuacba38c2017-09-27 17:53:34 -070067 png_byte channels() const {
68 return channels_;
69 }
Doug Zongker19faefa2009-03-27 17:06:24 -070070
Tianjie Xuacba38c2017-09-27 17:53:34 -070071 png_structp png_ptr() const {
72 return png_ptr_;
73 }
Doug Zongker19faefa2009-03-27 17:06:24 -070074
Tianjie Xuacba38c2017-09-27 17:53:34 -070075 png_infop info_ptr() const {
76 return info_ptr_;
77 }
Doug Zongker19faefa2009-03-27 17:06:24 -070078
Tianjie Xuacba38c2017-09-27 17:53:34 -070079 int error_code() const {
80 return error_code_;
81 };
Doug Zongker19faefa2009-03-27 17:06:24 -070082
Tianjie Xuacba38c2017-09-27 17:53:34 -070083 operator bool() const {
84 return error_code_ == 0;
85 }
John Reck94fd07b2013-08-26 16:45:33 -070086
Tianjie Xuacba38c2017-09-27 17:53:34 -070087 private:
88 png_structp png_ptr_{ nullptr };
89 png_infop info_ptr_{ nullptr };
90 png_uint_32 width_;
91 png_uint_32 height_;
92 png_byte channels_;
John Reck94fd07b2013-08-26 16:45:33 -070093
Tianjie Xuacba38c2017-09-27 17:53:34 -070094 // The |error_code_| is set to a negative value if an error occurs when opening the png file.
95 int error_code_;
96 // After initialization, we'll keep the file pointer open before destruction of PngHandler.
97 std::unique_ptr<FILE, decltype(&fclose)> png_fp_;
98};
Doug Zongker19faefa2009-03-27 17:06:24 -070099
Tianjie Xuacba38c2017-09-27 17:53:34 -0700100PngHandler::PngHandler(const std::string& name) : error_code_(0), png_fp_(nullptr, fclose) {
101 std::string res_path = android::base::StringPrintf("/res/images/%s.png", name.c_str());
102 png_fp_.reset(fopen(res_path.c_str(), "rbe"));
103 if (!png_fp_) {
104 error_code_ = -1;
105 return;
106 }
Doug Zongker55a36ac2013-03-04 15:49:02 -0800107
Tianjie Xuacba38c2017-09-27 17:53:34 -0700108 unsigned char header[8];
109 size_t bytesRead = fread(header, 1, sizeof(header), png_fp_.get());
110 if (bytesRead != sizeof(header)) {
111 error_code_ = -2;
112 return;
113 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700114
Tianjie Xuacba38c2017-09-27 17:53:34 -0700115 if (png_sig_cmp(header, 0, sizeof(header))) {
116 error_code_ = -3;
117 return;
118 }
119
120 png_ptr_ = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
121 if (!png_ptr_) {
122 error_code_ = -4;
123 return;
124 }
125
126 info_ptr_ = png_create_info_struct(png_ptr_);
127 if (!info_ptr_) {
128 error_code_ = -5;
129 return;
130 }
131
132 if (setjmp(png_jmpbuf(png_ptr_))) {
133 error_code_ = -6;
134 return;
135 }
136
137 png_init_io(png_ptr_, png_fp_.get());
138 png_set_sig_bytes(png_ptr_, sizeof(header));
139 png_read_info(png_ptr_, info_ptr_);
140
141 int color_type;
142 int bit_depth;
143 png_get_IHDR(png_ptr_, info_ptr_, &width_, &height_, &bit_depth, &color_type, nullptr, nullptr,
144 nullptr);
145
146 channels_ = png_get_channels(png_ptr_, info_ptr_);
147
148 if (bit_depth == 8 && channels_ == 3 && color_type == PNG_COLOR_TYPE_RGB) {
149 // 8-bit RGB images: great, nothing to do.
150 } else if (bit_depth <= 8 && channels_ == 1 && color_type == PNG_COLOR_TYPE_GRAY) {
151 // 1-, 2-, 4-, or 8-bit gray images: expand to 8-bit gray.
152 png_set_expand_gray_1_2_4_to_8(png_ptr_);
153 } else if (bit_depth <= 8 && channels_ == 1 && color_type == PNG_COLOR_TYPE_PALETTE) {
154 // paletted images: expand to 8-bit RGB. Note that we DON'T
155 // currently expand the tRNS chunk (if any) to an alpha
156 // channel, because minui doesn't support alpha channels in
157 // general.
158 png_set_palette_to_rgb(png_ptr_);
159 channels_ = 3;
160 } else {
161 fprintf(stderr, "minui doesn't support PNG depth %d channels %d color_type %d\n", bit_depth,
162 channels_, color_type);
163 error_code_ = -7;
164 }
165}
166
167PngHandler::~PngHandler() {
168 if (png_ptr_) {
169 png_destroy_read_struct(&png_ptr_, &info_ptr_, nullptr);
170 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700171}
172
173// "display" surfaces are transformed into the framebuffer's required
174// pixel format (currently only RGBX is supported) at load time, so
175// gr_blit() can be nothing more than a memcpy() for each row. The
176// next two functions are the only ones that know anything about the
177// framebuffer pixel format; they need to be modified if the
178// framebuffer format changes (but nothing else should).
179
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700180// Allocate and return a GRSurface* sufficient for storing an image of
Doug Zongkera418aa72014-03-17 12:10:02 -0700181// the indicated size in the framebuffer pixel format.
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700182static GRSurface* init_display_surface(png_uint_32 width, png_uint_32 height) {
183 GRSurface* surface = malloc_surface(width * height * 4);
Doug Zongkera418aa72014-03-17 12:10:02 -0700184 if (surface == NULL) return NULL;
185
186 surface->width = width;
187 surface->height = height;
188 surface->row_bytes = width * 4;
189 surface->pixel_bytes = 4;
190
191 return surface;
192}
193
194// Copy 'input_row' to 'output_row', transforming it to the
195// framebuffer pixel format. The input format depends on the value of
196// 'channels':
197//
198// 1 - input is 8-bit grayscale
199// 3 - input is 24-bit RGB
200// 4 - input is 32-bit RGBA/RGBX
201//
202// 'width' is the number of pixels in the row.
203static void transform_rgb_to_draw(unsigned char* input_row,
204 unsigned char* output_row,
205 int channels, int width) {
206 int x;
207 unsigned char* ip = input_row;
208 unsigned char* op = output_row;
209
210 switch (channels) {
211 case 1:
212 // expand gray level to RGBX
213 for (x = 0; x < width; ++x) {
214 *op++ = *ip;
215 *op++ = *ip;
216 *op++ = *ip;
217 *op++ = 0xff;
218 ip++;
219 }
220 break;
221
222 case 3:
223 // expand RGBA to RGBX
224 for (x = 0; x < width; ++x) {
225 *op++ = *ip++;
226 *op++ = *ip++;
227 *op++ = *ip++;
228 *op++ = 0xff;
229 }
230 break;
231
232 case 4:
233 // copy RGBA to RGBX
234 memcpy(output_row, input_row, width*4);
235 break;
236 }
237}
238
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700239int res_create_display_surface(const char* name, GRSurface** pSurface) {
Tianjie Xuacba38c2017-09-27 17:53:34 -0700240 *pSurface = nullptr;
Doug Zongkera418aa72014-03-17 12:10:02 -0700241
Tianjie Xuacba38c2017-09-27 17:53:34 -0700242 PngHandler png_handler(name);
243 if (!png_handler) return png_handler.error_code();
Doug Zongkera418aa72014-03-17 12:10:02 -0700244
Tianjie Xuacba38c2017-09-27 17:53:34 -0700245 png_structp png_ptr = png_handler.png_ptr();
246 png_uint_32 width = png_handler.width();
247 png_uint_32 height = png_handler.height();
Doug Zongkera418aa72014-03-17 12:10:02 -0700248
Tianjie Xuacba38c2017-09-27 17:53:34 -0700249 GRSurface* surface = init_display_surface(width, height);
250 if (!surface) {
251 return -8;
252 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800253
Tony Kuofd778e32015-02-05 21:25:56 +0800254#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
Tianjie Xuacba38c2017-09-27 17:53:34 -0700255 png_set_bgr(png_ptr);
Tony Kuofd778e32015-02-05 21:25:56 +0800256#endif
257
Tianjie Xuacba38c2017-09-27 17:53:34 -0700258 for (png_uint_32 y = 0; y < height; ++y) {
259 std::vector<unsigned char> p_row(width * 4);
260 png_read_row(png_ptr, p_row.data(), nullptr);
261 transform_rgb_to_draw(p_row.data(), surface->data + y * surface->row_bytes,
262 png_handler.channels(), width);
263 }
Doug Zongker19faefa2009-03-27 17:06:24 -0700264
Tianjie Xuacba38c2017-09-27 17:53:34 -0700265 *pSurface = surface;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800266
Tianjie Xuacba38c2017-09-27 17:53:34 -0700267 return 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800268}
269
Tao Baob723f4f2015-12-11 15:18:51 -0800270int res_create_multi_display_surface(const char* name, int* frames, int* fps,
Tianjie Xuacba38c2017-09-27 17:53:34 -0700271 GRSurface*** pSurface) {
272 *pSurface = nullptr;
273 *frames = -1;
Doug Zongker469954f2014-03-07 09:21:25 -0800274
Tianjie Xuacba38c2017-09-27 17:53:34 -0700275 PngHandler png_handler(name);
276 if (!png_handler) return png_handler.error_code();
Doug Zongker469954f2014-03-07 09:21:25 -0800277
Tianjie Xuacba38c2017-09-27 17:53:34 -0700278 png_structp png_ptr = png_handler.png_ptr();
279 png_uint_32 width = png_handler.width();
280 png_uint_32 height = png_handler.height();
Doug Zongker469954f2014-03-07 09:21:25 -0800281
Tianjie Xuacba38c2017-09-27 17:53:34 -0700282 *frames = 1;
283 *fps = 20;
284 png_textp text;
285 int num_text;
286 if (png_get_text(png_ptr, png_handler.info_ptr(), &text, &num_text)) {
287 for (int i = 0; i < num_text; ++i) {
288 if (text[i].key && strcmp(text[i].key, "Frames") == 0 && text[i].text) {
289 *frames = atoi(text[i].text);
290 } else if (text[i].key && strcmp(text[i].key, "FPS") == 0 && text[i].text) {
291 *fps = atoi(text[i].text);
292 }
Tao Baob723f4f2015-12-11 15:18:51 -0800293 }
Tianjie Xuacba38c2017-09-27 17:53:34 -0700294 printf(" found frames = %d\n", *frames);
295 printf(" found fps = %d\n", *fps);
296 }
Tao Baob723f4f2015-12-11 15:18:51 -0800297
Tianjie Xuacba38c2017-09-27 17:53:34 -0700298 int result = 0;
299 GRSurface** surface = nullptr;
300 if (*frames <= 0 || *fps <= 0) {
301 printf("bad number of frames (%d) and/or FPS (%d)\n", *frames, *fps);
302 result = -10;
303 goto exit;
304 }
Doug Zongker469954f2014-03-07 09:21:25 -0800305
Tianjie Xuacba38c2017-09-27 17:53:34 -0700306 if (height % *frames != 0) {
307 printf("bad height (%d) for frame count (%d)\n", height, *frames);
308 result = -9;
309 goto exit;
310 }
Doug Zongker469954f2014-03-07 09:21:25 -0800311
Tianjie Xuacba38c2017-09-27 17:53:34 -0700312 surface = static_cast<GRSurface**>(calloc(*frames, sizeof(GRSurface*)));
313 if (!surface) {
314 result = -8;
315 goto exit;
316 }
317 for (int i = 0; i < *frames; ++i) {
318 surface[i] = init_display_surface(width, height / *frames);
319 if (!surface[i]) {
320 result = -8;
321 goto exit;
Doug Zongker469954f2014-03-07 09:21:25 -0800322 }
Tianjie Xuacba38c2017-09-27 17:53:34 -0700323 }
Doug Zongker469954f2014-03-07 09:21:25 -0800324
Tony Kuofd778e32015-02-05 21:25:56 +0800325#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
Tianjie Xuacba38c2017-09-27 17:53:34 -0700326 png_set_bgr(png_ptr);
Tony Kuofd778e32015-02-05 21:25:56 +0800327#endif
328
Tianjie Xuacba38c2017-09-27 17:53:34 -0700329 for (png_uint_32 y = 0; y < height; ++y) {
330 std::vector<unsigned char> p_row(width * 4);
331 png_read_row(png_ptr, p_row.data(), nullptr);
332 int frame = y % *frames;
333 unsigned char* out_row = surface[frame]->data + (y / *frames) * surface[frame]->row_bytes;
334 transform_rgb_to_draw(p_row.data(), out_row, png_handler.channels(), width);
335 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700336
Tianjie Xuacba38c2017-09-27 17:53:34 -0700337 *pSurface = surface;
Doug Zongker469954f2014-03-07 09:21:25 -0800338
339exit:
Tianjie Xuacba38c2017-09-27 17:53:34 -0700340 if (result < 0) {
341 if (surface) {
342 for (int i = 0; i < *frames; ++i) {
343 free(surface[i]);
344 }
345 free(surface);
Doug Zongker469954f2014-03-07 09:21:25 -0800346 }
Tianjie Xuacba38c2017-09-27 17:53:34 -0700347 }
348 return result;
Doug Zongker469954f2014-03-07 09:21:25 -0800349}
350
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700351int res_create_alpha_surface(const char* name, GRSurface** pSurface) {
Tianjie Xuacba38c2017-09-27 17:53:34 -0700352 *pSurface = nullptr;
Doug Zongkera418aa72014-03-17 12:10:02 -0700353
Tianjie Xuacba38c2017-09-27 17:53:34 -0700354 PngHandler png_handler(name);
355 if (!png_handler) return png_handler.error_code();
Doug Zongkera418aa72014-03-17 12:10:02 -0700356
Tianjie Xuacba38c2017-09-27 17:53:34 -0700357 if (png_handler.channels() != 1) {
358 return -7;
359 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700360
Tianjie Xuacba38c2017-09-27 17:53:34 -0700361 png_structp png_ptr = png_handler.png_ptr();
362 png_uint_32 width = png_handler.width();
363 png_uint_32 height = png_handler.height();
Doug Zongkera418aa72014-03-17 12:10:02 -0700364
Tianjie Xuacba38c2017-09-27 17:53:34 -0700365 GRSurface* surface = malloc_surface(width * height);
366 if (!surface) {
367 return -8;
368 }
369 surface->width = width;
370 surface->height = height;
371 surface->row_bytes = width;
372 surface->pixel_bytes = 1;
Doug Zongkera418aa72014-03-17 12:10:02 -0700373
Tony Kuofd778e32015-02-05 21:25:56 +0800374#if defined(RECOVERY_ABGR) || defined(RECOVERY_BGRA)
Tianjie Xuacba38c2017-09-27 17:53:34 -0700375 png_set_bgr(png_ptr);
Tony Kuofd778e32015-02-05 21:25:56 +0800376#endif
377
Tianjie Xuacba38c2017-09-27 17:53:34 -0700378 for (png_uint_32 y = 0; y < height; ++y) {
379 unsigned char* p_row = surface->data + y * surface->row_bytes;
380 png_read_row(png_ptr, p_row, nullptr);
381 }
Doug Zongkera418aa72014-03-17 12:10:02 -0700382
Tianjie Xuacba38c2017-09-27 17:53:34 -0700383 *pSurface = surface;
Doug Zongkera418aa72014-03-17 12:10:02 -0700384
Tianjie Xuacba38c2017-09-27 17:53:34 -0700385 return 0;
Doug Zongkera418aa72014-03-17 12:10:02 -0700386}
387
Tianjie Xu2430e292016-04-19 15:02:41 -0700388// This function tests if a locale string stored in PNG (prefix) matches
389// the locale string provided by the system (locale).
Tianjie Xu2078b222017-03-22 12:27:26 -0700390bool matches_locale(const std::string& prefix, const std::string& locale) {
391 // According to the BCP 47 format, A locale string may consists of:
392 // language-{extlang}-{script}-{region}-{variant}
393 // The locale headers in PNG mostly consist of language-{region} except for sr-Latn, and some
394 // android's system locale can have the format language-{script}-{region}.
Doug Zongker02ec6b82012-08-22 17:26:40 -0700395
Tianjie Xu2078b222017-03-22 12:27:26 -0700396 // Return true if the whole string of prefix matches the top part of locale. Otherwise try to
397 // match the locale string without the {script} section.
398 // For instance, prefix == "en" matches locale == "en-US", prefix == "sr-Latn" matches locale
399 // == "sr-Latn-BA", and prefix == "zh-CN" matches locale == "zh-Hans-CN".
Elliott Hughes1d65c952017-12-20 12:36:31 -0800400 if (android::base::StartsWith(locale, prefix)) {
Tianjie Xu2078b222017-03-22 12:27:26 -0700401 return true;
402 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700403
Tianjie Xu2078b222017-03-22 12:27:26 -0700404 size_t separator = prefix.find('-');
405 if (separator == std::string::npos) {
406 return false;
407 }
408 std::regex loc_regex(prefix.substr(0, separator) + "-[A-Za-z]*" + prefix.substr(separator));
409 return std::regex_match(locale, loc_regex);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700410}
411
Tianjie Xu29d55752017-09-20 17:53:46 -0700412std::vector<std::string> get_locales_in_png(const std::string& png_name) {
Tianjie Xuacba38c2017-09-27 17:53:34 -0700413 PngHandler png_handler(png_name);
414 if (!png_handler) {
415 printf("Failed to open %s, error: %d\n", png_name.c_str(), png_handler.error_code());
Tianjie Xu29d55752017-09-20 17:53:46 -0700416 return {};
417 }
Tianjie Xuacba38c2017-09-27 17:53:34 -0700418 if (png_handler.channels() != 1) {
419 printf("Expect input png to have 1 data channel, this file has %d\n", png_handler.channels());
Tianjie Xu29d55752017-09-20 17:53:46 -0700420 return {};
421 }
422
423 std::vector<std::string> result;
Tianjie Xuacba38c2017-09-27 17:53:34 -0700424 std::vector<unsigned char> row(png_handler.width());
425 for (png_uint_32 y = 0; y < png_handler.height(); ++y) {
426 png_read_row(png_handler.png_ptr(), row.data(), nullptr);
Tianjie Xu29d55752017-09-20 17:53:46 -0700427 int h = (row[3] << 8) | row[2];
428 std::string loc(reinterpret_cast<char*>(&row[5]));
429 if (!loc.empty()) {
430 result.push_back(loc);
431 }
432 for (int i = 0; i < h; ++i, ++y) {
Tianjie Xuacba38c2017-09-27 17:53:34 -0700433 png_read_row(png_handler.png_ptr(), row.data(), nullptr);
Tianjie Xu29d55752017-09-20 17:53:46 -0700434 }
435 }
436
Tianjie Xu29d55752017-09-20 17:53:46 -0700437 return result;
438}
439
Doug Zongkera418aa72014-03-17 12:10:02 -0700440int res_create_localized_alpha_surface(const char* name,
441 const char* locale,
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700442 GRSurface** pSurface) {
Tianjie Xuacba38c2017-09-27 17:53:34 -0700443 *pSurface = nullptr;
444 if (locale == nullptr) {
445 return 0;
446 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700447
Tianjie Xuacba38c2017-09-27 17:53:34 -0700448 PngHandler png_handler(name);
449 if (!png_handler) return png_handler.error_code();
Doug Zongker02ec6b82012-08-22 17:26:40 -0700450
Tianjie Xuacba38c2017-09-27 17:53:34 -0700451 if (png_handler.channels() != 1) {
452 return -7;
453 }
454
455 png_structp png_ptr = png_handler.png_ptr();
456 png_uint_32 width = png_handler.width();
457 png_uint_32 height = png_handler.height();
458
459 for (png_uint_32 y = 0; y < height; ++y) {
460 std::vector<unsigned char> row(width);
461 png_read_row(png_ptr, row.data(), nullptr);
462 int w = (row[1] << 8) | row[0];
463 int h = (row[3] << 8) | row[2];
464 __unused int len = row[4];
465 char* loc = reinterpret_cast<char*>(&row[5]);
466
467 if (y + 1 + h >= height || matches_locale(loc, locale)) {
468 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y);
469
470 GRSurface* surface = malloc_surface(w * h);
471 if (!surface) {
472 return -8;
473 }
474 surface->width = w;
475 surface->height = h;
476 surface->row_bytes = w;
477 surface->pixel_bytes = 1;
478
479 for (int i = 0; i < h; ++i, ++y) {
480 png_read_row(png_ptr, row.data(), nullptr);
481 memcpy(surface->data + i * w, row.data(), w);
482 }
483
484 *pSurface = surface;
485 break;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700486 }
487
Tianjie Xuacba38c2017-09-27 17:53:34 -0700488 for (int i = 0; i < h; ++i, ++y) {
489 png_read_row(png_ptr, row.data(), nullptr);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700490 }
Tianjie Xuacba38c2017-09-27 17:53:34 -0700491 }
Doug Zongker02ec6b82012-08-22 17:26:40 -0700492
Tianjie Xuacba38c2017-09-27 17:53:34 -0700493 return 0;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700494}
495
Elliott Hughes0a5cb0c2015-04-15 10:58:56 -0700496void res_free_surface(GRSurface* surface) {
Tianjie Xuacba38c2017-09-27 17:53:34 -0700497 free(surface);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800498}