clang-tidy: bugprone-macro-parentheses
[geeqie.git] / src / image-load-psd.cc
1 /*
2  * Copyright (C) 20019 - The Geeqie Team
3  *
4  * Author: Colin Clark
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  *
21  * Derived from:
22  *
23  * GdkPixbuf library - PSD image loader
24  *
25  * Copyright (C) 2008 Jan Dudek
26  *
27  * Authors: Jan Dudek <jd@jandudek.com>
28  *
29  * This library is free software; you can redistribute it and/or
30  * modify it under the terms of the GNU Lesser General Public
31  * License as published by the Free Software Foundation; either
32  * version 2 of the License, or (at your option) any later version.
33  *
34  * This library is distributed in the hope that it will be useful,
35  * but WITHOUT ANY WARRANTY; without even the implied warranty of
36  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
37  * Lesser General Public License for more
38  * You should have received a copy of the GNU Lesser General Public
39  * License along with this library; if not, write to the
40  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
41  * Boston, MA 02111-1307, USA.
42  */
43
44 /*
45  * TODO
46  * - report errors from parse_psd_header
47  * - other color modes (CMYK at least)
48  * - i18n
49  */
50
51 #include "main.h"
52
53 #include "image-load.h"
54 #include "image-load-psd.h"
55
56 struct ImageLoaderPSD {
57         ImageLoaderBackendCbAreaUpdated area_updated_cb;
58         ImageLoaderBackendCbSize size_cb;
59         ImageLoaderBackendCbAreaPrepared area_prepared_cb;
60         gpointer data;
61         GdkPixbuf *pixbuf;
62         guint requested_width;
63         guint requested_height;
64         gboolean abort;
65 };
66
67 struct PsdHeader
68 {
69         guchar  signature[4];  /* file ID, always "8BPS" */
70         guint16 version;       /* version number, always 1 */
71         guchar  resetved[6];
72         guint16 channels;      /* number of color channels (1-24) */
73         guint32 rows;          /* height of image in pixels (1-30000) */
74         guint32 columns;       /* width of image in pixels (1-30000) */
75         guint16 depth;         /* number of bits per channel (1, 8, 16 or 32) */
76         guint16 color_mode;    /* color mode as defined below */
77 };
78
79 #define PSD_HEADER_SIZE 26
80
81 enum PsdColorMode
82 {
83         PSD_MODE_MONO = 0,
84         PSD_MODE_GRAYSCALE = 1,
85         PSD_MODE_INDEXED = 2,
86         PSD_MODE_RGB = 3,
87         PSD_MODE_CMYK = 4,
88         PSD_MODE_MULTICHANNEL = 7,
89         PSD_MODE_DUOTONE = 8,
90         PSD_MODE_LAB = 9,
91 };
92
93 enum PsdCompressionType
94 {
95         PSD_COMPRESSION_NONE = 0,
96         PSD_COMPRESSION_RLE = 1
97 };
98
99 enum PsdReadState
100 {
101         PSD_STATE_HEADER,
102         PSD_STATE_COLOR_MODE_BLOCK,
103         PSD_STATE_RESOURCES_BLOCK,
104         PSD_STATE_LAYERS_BLOCK,
105         PSD_STATE_COMPRESSION,
106         PSD_STATE_LINES_LENGTHS,
107         PSD_STATE_CHANNEL_DATA,
108         PSD_STATE_DONE
109 };
110
111 struct PsdContext
112 {
113         PsdReadState       state;
114
115         GdkPixbuf*                  pixbuf;
116         gpointer                    user_data;
117
118         guchar*            buffer;
119         guint              bytes_read;
120         guint32            bytes_to_skip;
121         gboolean           bytes_to_skip_known;
122
123         guint32            width;
124         guint32            height;
125         guint16            channels;
126         guint16            depth;
127         guint16            depth_bytes;
128         PsdColorMode       color_mode;
129         PsdCompressionType compression;
130
131         guchar**           ch_bufs;       /* channels buffers */
132         guint              curr_ch;       /* current channel */
133         guint              curr_row;
134         guint              pos;
135         guint16*           lines_lengths;
136         gboolean           finalized;
137 };
138
139
140 static guint16
141 read_uint16 (guchar* buf)
142 {
143         return (buf[0] << 8) | buf[1];
144 }
145
146 static guint32
147 read_uint32 (guchar* buf)
148 {
149         return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
150 }
151
152
153 /*
154  * Parse Psdheader from buffer
155  *
156  * str is expected to be at least PSD_HEADER_SIZE long
157  */
158 static PsdHeader
159 psd_parse_header (guchar* str)
160 {
161         PsdHeader hd;
162
163         memcpy(hd.signature, str, 4);
164         hd.version = read_uint16(str + 4);
165         hd.channels = read_uint16(str + 12);
166         hd.rows = read_uint32(str + 14);
167         hd.columns = read_uint32(str + 18);
168         hd.depth = read_uint16(str + 22);
169         hd.color_mode = read_uint16(str + 24);
170
171         return hd;
172 }
173
174 /*
175  * Attempts to read bytes_needed bytes from data and stores them in buffer.
176  *
177  * Returns true if there were enough bytes and false otherwise
178  * (which means we need to call feed_buffer again)
179  */
180 static gboolean
181 feed_buffer (guchar*        buffer,
182              guint*         bytes_read,
183              const guchar** data,
184              guint*         size,
185              guint          bytes_needed)
186 {
187         guint how_many = bytes_needed - *bytes_read;
188         if (how_many > *size) {
189                 how_many = *size;
190         }
191         memcpy(buffer + *bytes_read, *data, how_many);
192         *bytes_read += how_many;
193         *data += how_many;
194         *size -= how_many;
195         return (*bytes_read == bytes_needed);
196 }
197
198 /*
199  * Attempts to read size of the block and then skip this block.
200  *
201  * Returns true when finishes consuming block data, otherwise false
202  * (false means we need to call skip_block again)
203  */
204 static gboolean
205 skip_block (PsdContext* context, const guchar** data, guint* size)
206 {
207         if (!context->bytes_to_skip_known) {
208                 context->bytes_read = 0;
209                 if (feed_buffer(context->buffer, &context->bytes_read, data, size, 4)) {
210                         context->bytes_to_skip = read_uint32(context->buffer);
211                         context->bytes_to_skip_known = TRUE;
212                 } else {
213                         return FALSE;
214                 }
215         }
216         if (*size < context->bytes_to_skip) {
217                 *data += *size;
218                 context->bytes_to_skip -= *size;
219                 *size = 0;
220                 return FALSE;
221         } else {
222                 *size -= context->bytes_to_skip;
223                 *data += context->bytes_to_skip;
224                 return TRUE;
225         }
226 }
227
228 /*
229  * Decodes RLE-compressed data
230  */
231 static void
232 decompress_line(const guchar* src, guint line_length, guchar* dest)
233 {
234         guint16 bytes_read = 0;
235         int k;
236         while (bytes_read < line_length) {
237                 gchar byte = src[bytes_read];
238                 ++bytes_read;
239
240                 if (byte == -128) {
241                         continue;
242                 } else if (byte > -1) {
243                         gint count = byte + 1;
244
245                         /* copy next count bytes */
246                         for (k = 0; k < count; ++k) {
247                                 *dest = src[bytes_read];
248                                 ++dest;
249                                 ++bytes_read;
250                         }
251                 } else {
252                         gint count = -byte + 1;
253
254                         /* copy next byte count times */
255                         guchar next_byte = src[bytes_read];
256                         ++bytes_read;
257                         for (k = 0; k < count; ++k) {
258                                 *dest = next_byte;
259                                 ++dest;
260                         }
261                 }
262         }
263 }
264
265 static void
266 reset_context_buffer(PsdContext* ctx)
267 {
268         ctx->bytes_read = 0;
269         ctx->bytes_to_skip = 0;
270         ctx->bytes_to_skip_known = FALSE;
271 }
272
273 static void free_context(PsdContext *ctx)
274 {
275         g_free(ctx->buffer);
276         g_free(ctx->lines_lengths);
277         if (ctx->ch_bufs) {
278                 int i;
279                 for (i = 0; i < ctx->channels; i++) {
280                         g_free(ctx->ch_bufs[i]);
281                 }
282         }
283         g_free(ctx);
284 }
285
286 static gboolean image_loader_psd_load(gpointer loader, const guchar *buf, gsize count, GError **)
287 {
288         auto ld = static_cast<ImageLoaderPSD *>(loader);
289         auto ctx = g_new0(PsdContext, 1);
290         guint i;
291         guint32 j;
292         guint size = count;
293
294         ctx->state = PSD_STATE_HEADER;
295
296         /* we'll allocate larger buffer once we know image size */
297         ctx->buffer = static_cast<guchar *>(g_malloc(PSD_HEADER_SIZE));
298         reset_context_buffer(ctx);
299
300         ctx->ch_bufs = nullptr;
301         ctx->curr_ch = 0;
302         ctx->curr_row = 0;
303         ctx->pos = 0;
304         ctx->lines_lengths = nullptr;
305         ctx->finalized = FALSE;
306
307         while (size > 0) {
308                 switch (ctx->state) {
309                         case PSD_STATE_HEADER:
310                                 if (feed_buffer(
311                                                 ctx->buffer, &ctx->bytes_read,
312                                                 &buf, &size, PSD_HEADER_SIZE))
313                                 {
314                                         PsdHeader hd = psd_parse_header(ctx->buffer);
315
316                                         ctx->width = hd.columns;
317                                         ctx->height = hd.rows;
318                                         ctx->channels = hd.channels;
319                                         ctx->depth = hd.depth;
320                                         ctx->depth_bytes = (ctx->depth/8 > 0 ? ctx->depth/8 : 1);
321                                         ctx->color_mode = static_cast<PsdColorMode>(hd.color_mode);
322
323                                         if (ctx->color_mode != PSD_MODE_RGB
324                                             && ctx->color_mode != PSD_MODE_GRAYSCALE
325                                             && ctx->color_mode != PSD_MODE_CMYK
326                                             && ctx->color_mode != PSD_MODE_DUOTONE
327                                         ) {
328                                                 log_printf("warning: psd - Unsupported color mode\n");
329                                                 free_context(ctx);
330                                                 return FALSE;
331                                         }
332
333                                         if (ctx->depth != 8 && ctx->depth != 16) {
334                                                 log_printf("warning: psd - Unsupported color depth\n");
335                                                 free_context(ctx);
336                                                 return FALSE;
337                                         }
338
339                                         /* we need buffer that can contain one channel data for one
340                                            row in RLE compressed format. 2*width should be enough */
341                                         g_free(ctx->buffer);
342                                         ctx->buffer = static_cast<guchar *>(g_malloc(ctx->width * 2 * ctx->depth_bytes));
343
344                                         /* this will be needed for RLE decompression */
345                                         ctx->lines_lengths =
346                                                 static_cast<guint16 *>(g_malloc(2 * ctx->channels * ctx->height));
347
348                                         ctx->pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB,
349                                                 FALSE, 8, ctx->width, ctx->height);
350
351                                         if (ctx->lines_lengths == nullptr || ctx->buffer == nullptr ||
352                                                 ctx->pixbuf == nullptr)
353                                         {
354                                                 log_printf("warning: Insufficient memory to load PSD image file\n");
355                                                 free_context(ctx);
356                                                 return FALSE;
357                                         }
358
359                                         /* create separate buffers for each channel */
360                                         ctx->ch_bufs = static_cast<guchar **>(g_malloc(sizeof(guchar*) * ctx->channels));
361                                         for (i = 0; i < ctx->channels; i++) {
362                                                 ctx->ch_bufs[i] =
363                                                         static_cast<guchar *>(g_malloc(ctx->width*ctx->height*ctx->depth_bytes));
364
365                                                 if (ctx->ch_bufs[i] == nullptr) {
366                                                 log_printf("warning: Insufficient memory to load PSD image file\n");
367                                                 free_context(ctx);
368                                                 return FALSE;
369                                                 }
370                                         }
371
372                                         ctx->state = PSD_STATE_COLOR_MODE_BLOCK;
373                                         reset_context_buffer(ctx);
374                                 }
375                                 break;
376                         case PSD_STATE_COLOR_MODE_BLOCK:
377                                 if (skip_block(ctx, &buf, &size)) {
378                                         ctx->state = PSD_STATE_RESOURCES_BLOCK;
379                                         reset_context_buffer(ctx);
380                                 }
381                                 break;
382                         case PSD_STATE_RESOURCES_BLOCK:
383                                 if (skip_block(ctx, &buf, &size)) {
384                                         ctx->state = PSD_STATE_LAYERS_BLOCK;
385                                         reset_context_buffer(ctx);
386                                 }
387                                 break;
388                         case PSD_STATE_LAYERS_BLOCK:
389                                 if (skip_block(ctx, &buf, &size)) {
390                                         ctx->state = PSD_STATE_COMPRESSION;
391                                         reset_context_buffer(ctx);
392                                 }
393                                 break;
394                         case PSD_STATE_COMPRESSION:
395                                 if (feed_buffer(ctx->buffer, &ctx->bytes_read, &buf, &size, 2))
396                                 {
397                                         ctx->compression = static_cast<PsdCompressionType>(read_uint16(ctx->buffer));
398
399                                         if (ctx->compression == PSD_COMPRESSION_RLE) {
400                                                 ctx->state = PSD_STATE_LINES_LENGTHS;
401                                                 reset_context_buffer(ctx);
402                                         } else if (ctx->compression == PSD_COMPRESSION_NONE) {
403                                                 ctx->state = PSD_STATE_CHANNEL_DATA;
404                                                 reset_context_buffer(ctx);
405                                         } else {
406                                                 log_printf("warning: psd - Unsupported compression type\n");
407                                                 return FALSE;
408                                         }
409                                 }
410                                 break;
411                         case PSD_STATE_LINES_LENGTHS:
412                                 if (feed_buffer(
413                                                 reinterpret_cast<guchar*>(ctx->lines_lengths), &ctx->bytes_read, &buf,
414                                                  &size, 2 * ctx->height * ctx->channels))
415                                 {
416                                         /* convert from different endianness */
417                                         for (i = 0; i < ctx->height * ctx->channels; i++) {
418                                                 ctx->lines_lengths[i] = read_uint16(
419                                                         reinterpret_cast<guchar*>(&ctx->lines_lengths[i]));
420                                         }
421                                         ctx->state = PSD_STATE_CHANNEL_DATA;
422                                         reset_context_buffer(ctx);
423                                 }
424                                 break;
425                         case PSD_STATE_CHANNEL_DATA:
426                                 {
427                                         guint line_length = ctx->width * ctx->depth_bytes;
428                                         if (ctx->compression == PSD_COMPRESSION_RLE) {
429                                                 line_length = ctx->lines_lengths[
430                                                         ctx->curr_ch * ctx->height + ctx->curr_row];
431                                         }
432
433                                         if (feed_buffer(ctx->buffer, &ctx->bytes_read, &buf, &size,
434                                                         line_length))
435                                         {
436                                                 if (ctx->compression == PSD_COMPRESSION_RLE) {
437                                                         decompress_line(ctx->buffer, line_length,
438                                                                 ctx->ch_bufs[ctx->curr_ch] + ctx->pos
439                                                         );
440                                                 } else {
441                                                         memcpy(ctx->ch_bufs[ctx->curr_ch] + ctx->pos,
442                                                                 ctx->buffer, line_length);
443                                                 }
444
445                                                 ctx->pos += ctx->width * ctx->depth_bytes;
446                                                 ++ctx->curr_row;
447
448                                                 if (ctx->curr_row >= ctx->height) {
449                                                         ++ctx->curr_ch;
450                                                         ctx->curr_row = 0;
451                                                         ctx->pos = 0;
452                                                         if (ctx->curr_ch >= ctx->channels) {
453                                                                 ctx->state = PSD_STATE_DONE;
454                                                         }
455                                                 }
456
457                                                 reset_context_buffer(ctx);
458                                         }
459                                 }
460                                 break;
461                         case PSD_STATE_DONE:
462                         default:
463                                 size = 0;
464                                 break;
465                 }
466         }
467
468         if (ctx->state == PSD_STATE_DONE && !ctx->finalized) {
469                 /* convert or copy channel buffers to our GdkPixbuf */
470                 guchar* pixels = gdk_pixbuf_get_pixels(ctx->pixbuf);
471                 guint b = ctx->depth_bytes;
472
473                 if (ctx->color_mode == PSD_MODE_RGB) {
474                         for (i = 0; i < ctx->height; i++) {
475                                 for (j = 0; j < ctx->width; j++) {
476                                         pixels[3*j+0] = ctx->ch_bufs[0][ctx->width*i*b + j*b];
477                                         pixels[3*j+1] = ctx->ch_bufs[1][ctx->width*i*b + j*b];
478                                         pixels[3*j+2] = ctx->ch_bufs[2][ctx->width*i*b + j*b];
479                                 }
480                                 pixels += gdk_pixbuf_get_rowstride(ctx->pixbuf);
481                         }
482                 } else if (ctx->color_mode == PSD_MODE_GRAYSCALE ||
483                            ctx->color_mode == PSD_MODE_DUOTONE)
484                 {
485                         for (i = 0; i < ctx->height; i++) {
486                                 for (j = 0; j < ctx->width; j++) {
487                                         pixels[3*j+0] = pixels[3*j+1] = pixels[3*j+2] =
488                                                 ctx->ch_bufs[0][ctx->width*i*b + j*b];
489                                 }
490                                 pixels += gdk_pixbuf_get_rowstride(ctx->pixbuf);
491                         }
492                 } else if (ctx->color_mode == PSD_MODE_CMYK) {
493                         /* unfortunately, this doesn't work 100% correctly...
494                            CMYK-RGB conversion distorts colors significantly  */
495
496                         guchar* pixels = gdk_pixbuf_get_pixels(ctx->pixbuf);
497                         for (i = 0; i < ctx->height; i++) {
498                                 for (j = 0; j < ctx->width; j++) {
499                                         double c = 1.0 -
500                                                 static_cast<double>(ctx->ch_bufs[0][ctx->width*i + j]) / 255.0;
501                                         double m = 1.0 -
502                                                 static_cast<double>(ctx->ch_bufs[1][ctx->width*i + j]) / 255.0;
503                                         double y = 1.0 -
504                                                 static_cast<double>(ctx->ch_bufs[2][ctx->width*i + j]) / 255.0;
505                                         double k = 1.0 -
506                                                 static_cast<double>(ctx->ch_bufs[3][ctx->width*i + j]) / 255.0;
507
508                                         pixels[3*j+0] = (1.0 - (c * (1.0 - k) + k)) * 255.0;
509                                         pixels[3*j+1] = (1.0 - (m * (1.0 - k) + k)) * 255.0;
510                                         pixels[3*j+2] = (1.0 - (y * (1.0 - k) + k)) * 255.0;
511                                 }
512                                 pixels += gdk_pixbuf_get_rowstride(ctx->pixbuf);
513                         }
514                 }
515                 ctx->finalized = TRUE;
516                 ld->pixbuf = ctx->pixbuf;
517                 ld->area_updated_cb(loader, 0, 0, ctx->width, ctx->height, ld->data);
518                 free_context(ctx);
519
520                 return TRUE;
521         }
522
523         free_context(ctx);
524         return FALSE;
525 }
526
527 /* ------- Geeqie ------------ */
528
529 static gpointer image_loader_psd_new(ImageLoaderBackendCbAreaUpdated area_updated_cb, ImageLoaderBackendCbSize size_cb, ImageLoaderBackendCbAreaPrepared area_prepared_cb, gpointer data)
530 {
531         auto loader = g_new0(ImageLoaderPSD, 1);
532         loader->area_updated_cb = area_updated_cb;
533         loader->size_cb = size_cb;
534         loader->area_prepared_cb = area_prepared_cb;
535         loader->data = data;
536         return loader;
537 }
538
539 static void image_loader_psd_set_size(gpointer loader, int width, int height)
540 {
541         auto ld = static_cast<ImageLoaderPSD *>(loader);
542         ld->requested_width = width;
543         ld->requested_height = height;
544 }
545
546 static GdkPixbuf* image_loader_psd_get_pixbuf(gpointer loader)
547 {
548         auto ld = static_cast<ImageLoaderPSD *>(loader);
549         return ld->pixbuf;
550 }
551
552 static gchar* image_loader_psd_get_format_name(gpointer)
553 {
554         return g_strdup("psd");
555 }
556
557 static gchar** image_loader_psd_get_format_mime_types(gpointer)
558 {
559         static const gchar *mime[] = {"application/psd", nullptr};
560         return g_strdupv(const_cast<gchar **>(mime));
561 }
562
563 static gboolean image_loader_psd_close(gpointer, GError **)
564 {
565         return TRUE;
566 }
567
568 static void image_loader_psd_abort(gpointer loader)
569 {
570         auto ld = static_cast<ImageLoaderPSD *>(loader);
571         ld->abort = TRUE;
572 }
573
574 static void image_loader_psd_free(gpointer loader)
575 {
576         auto ld = static_cast<ImageLoaderPSD *>(loader);
577         if (ld->pixbuf) g_object_unref(ld->pixbuf);
578         g_free(ld);
579 }
580
581 void image_loader_backend_set_psd(ImageLoaderBackend *funcs)
582 {
583         funcs->loader_new = image_loader_psd_new;
584         funcs->set_size = image_loader_psd_set_size;
585         funcs->load = image_loader_psd_load;
586         funcs->write = nullptr;
587         funcs->get_pixbuf = image_loader_psd_get_pixbuf;
588         funcs->close = image_loader_psd_close;
589         funcs->abort = image_loader_psd_abort;
590         funcs->free = image_loader_psd_free;
591         funcs->get_format_name = image_loader_psd_get_format_name;
592         funcs->get_format_mime_types = image_loader_psd_get_format_mime_types;
593 }
594 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */