1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
|
/*
* This file is part of pqiv
* Copyright (c) 2017, Phillip Berndt
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* This implements thumbnail caching as specified in
* https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html
*/
#ifndef CONFIGURED_WITHOUT_MONTAGE_MODE
#include "thumbnailcache.h"
#ifdef _WIN32
#include <winsock2.h>
#else
#include <arpa/inet.h>
#endif
#include <stdint.h>
#include <inttypes.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <math.h>
#include <unistd.h>
#include <string.h>
#include <glib/gstdio.h>
#if !GLIB_CHECK_VERSION(2, 36, 0)
#define g_close(fd, errptr) close(fd)
#endif
#include <gio/gio.h>
#include <cairo.h>
// Unavailability of an mtime is usually fatal, but if the thumb was created
// with an absent mtime, this is tolerable (and actually beneficial, because it
// enables montage mode on incomplete data).
//
// This does not get any special treatment at checking time -- if
// 1970-01-01T00:00:00 is indeed a value placed in the MTime of a thumbnail,
// chances are that the creator might even have intended to actually not set
// the MTime.
const time_t MTIME_UNAVAILABLE = 0;
/* Sorted in decreasing size, such that when looking for thumbnails of at least
* some size, they can be traversed last-to-first, starting at the one that
* first has a chance to match (see use of minimum_level_index). */
static const char * thumbnail_levels[] = { "x-pqiv", "xx-large", "x-large", "large", "normal" };
/* CRC calculation as per PNG TR, Annex D */
static unsigned long crc_table[256];
static gboolean crc_table_computed = 0;
static void make_crc_table(void) {
unsigned long c;
int n, k;
for(n = 0; n < 256; n++) {
c = (unsigned long) n;
for(k = 0; k < 8; k++) {
if(c & 1) {
c = 0xedb88320L ^ (c >> 1);
}
else {
c >>= 1;
}
}
crc_table[n] = c;
}
crc_table_computed = 1;
}
static unsigned long crc(unsigned long crc, unsigned char *buf, int len) {
unsigned long c = crc ^ 0xffffffffL;
int n;
if (!crc_table_computed) {
make_crc_table();
}
for (n = 0; n < len; n++) {
c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);
}
return c ^ 0xffffffffL;
}
/* Auxiliary functions */
static gchar *get_local_filename(file_t *file) {
// Memory files do not have a file name
if(file->file_flags & FILE_FLAGS_MEMORY_IMAGE) {
return NULL;
}
// Retrieve file name
GFile *gfile = gfile_for_commandline_arg(file->file_name);
gchar *file_path = g_file_get_path(gfile);
g_object_unref(gfile);
return file_path;
}
static const gchar *get_multi_page_suffix(file_t *file) {
// Multi-page documents do not have an unambigous file name
// Since the Thumbnail Managing Standard does not state how to format an
// URI into e.g. an archive, we need to make something up. Do not use
// the standard directories in this case.
gchar *display_basename = g_strrstr(file->display_name, G_DIR_SEPARATOR_S);
if(display_basename) {
display_basename++;
}
else {
display_basename = file->display_name;
}
gchar *filename_basename = g_strrstr(file->file_name, G_DIR_SEPARATOR_S);
if(filename_basename) {
filename_basename++;
}
else {
filename_basename = file->file_name;
}
int filename_basename_length = strlen(filename_basename);
int display_basename_length = strlen(display_basename);
if(filename_basename_length == display_basename_length) {
return NULL;
}
return display_basename + filename_basename_length;
}
static gchar *_local_thumbnail_cache_directory;
static const gchar *get_thumbnail_cache_directory() {
if(!_local_thumbnail_cache_directory) {
const gchar *cache_dir = g_getenv("XDG_CACHE_HOME");
if(!cache_dir) {
_local_thumbnail_cache_directory = g_build_filename(g_getenv("HOME"), ".cache", "thumbnails", NULL);
}
else {
_local_thumbnail_cache_directory = g_build_filename(cache_dir, "thumbnails", NULL);
}
}
return _local_thumbnail_cache_directory;
}
gboolean check_png_attributes(gchar *file_name, gchar *file_uri, time_t file_mtime) {
// Parse PNG headers and check whether the Thumb::URI and Thumb::MTime
// headers are up to date.
//
// See below in png_writer for a rough explaination, or read the PNG TR
// https://www.w3.org/TR/PNG/
// Tracking whether they were found to return early once both are matched.
gboolean found_uri = FALSE;
gboolean found_mtime = FALSE;
gboolean found_mismatch = FALSE;
int fd = g_open(file_name, O_RDONLY, 0);
if(fd < 0) {
return FALSE;
}
union {
char buf[8];
uint32_t uint32;
} header;
// File header
if(read(fd, header.buf, 8) != 8) {
g_close(fd, NULL);
return FALSE;
}
const unsigned char expected_header[] = { 137, 80, 78, 71, 13, 10, 26, 10 };
if(memcmp(header.buf, expected_header, sizeof(expected_header)) != 0) {
g_close(fd, NULL);
return FALSE;
}
// Read all chunks until we have both matches
while(1) {
if(read(fd, header.buf, 8) != 8) {
g_close(fd, NULL);
return !found_mismatch;
}
int header_length = (int)ntohl(header.uint32);
if(header_length < 0) {
// While technically, this is allowed, no header should ever be
// this large.
g_close(fd, NULL);
return FALSE;
}
if(strncmp(&header.buf[4], "tEXt", 4) == 0) {
// This is interesting. Read the whole contents first.
char *data = g_malloc(header_length);
if(read(fd, data, header_length) != header_length) {
g_free(data);
g_close(fd, NULL);
return FALSE;
}
// Check against CRC
if(read(fd, header.buf, 4) != 4) {
g_free(data);
g_close(fd, NULL);
return FALSE;
}
unsigned file_crc = ntohl(header.uint32);
unsigned actual_crc = crc(crc(0, (unsigned char*)"tEXt", 4), (unsigned char *)data, header_length);
if(file_crc == actual_crc) {
if(strcmp(data, "Thumb::URI") == 0) {
gboolean match = strncmp(&data[sizeof("Thumb::URI")], file_uri, strlen(file_uri)) == 0;
found_mismatch |= !match;
found_uri = TRUE;
}
else if(strcmp(data, "Thumb::MTime") == 0) {
gchar *file_mtime_str = g_strdup_printf("%" PRIuMAX, (intmax_t)file_mtime);
gboolean match = strncmp(&data[sizeof("Thumb::MTime")], file_mtime_str, strlen(file_mtime_str)) == 0;
g_free(file_mtime_str);
found_mismatch |= !match;
found_mtime = TRUE;
}
if((found_uri && found_mtime) || found_mismatch) {
g_free(data);
g_close(fd, NULL);
return !found_mismatch;
}
}
g_free(data);
}
else {
// Skip header and its CRC
if(lseek(fd, header_length + 4, SEEK_CUR) < 0) {
g_close(fd, NULL);
return FALSE;
}
}
}
}
static cairo_surface_t *load_thumbnail(gchar *file_name, gchar *file_uri, time_t file_mtime, unsigned width, unsigned height) {
// Check if the file is up to date
if(!check_png_attributes(file_name, file_uri, file_mtime)) {
return NULL;
}
cairo_surface_t *thumbnail = cairo_image_surface_create_from_png(file_name);
if(cairo_surface_status(thumbnail) != CAIRO_STATUS_SUCCESS) {
cairo_surface_destroy(thumbnail);
return NULL;
}
unsigned actual_width = cairo_image_surface_get_width(thumbnail);
unsigned actual_height = cairo_image_surface_get_height(thumbnail);
if(actual_width == width || actual_height == height) {
return thumbnail;
}
if(actual_width < width && actual_height < height) {
// Can't use this. Too small.
cairo_surface_destroy(thumbnail);
return NULL;
}
double scale_factor = fmin(1., fmin(width * 1. / actual_width, height * 1. / actual_height));
unsigned target_width = actual_width * scale_factor;
unsigned target_height = actual_height * scale_factor;
#if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1, 12, 0)
cairo_surface_t *target_thumbnail = cairo_surface_create_similar_image(thumbnail, CAIRO_FORMAT_ARGB32, target_width, target_height);
#else
cairo_surface_t *target_thumbnail = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, target_width, target_height);
#endif
cairo_t *cr = cairo_create(target_thumbnail);
cairo_scale(cr, scale_factor, scale_factor);
cairo_set_source_surface(cr, thumbnail, 0, 0);
cairo_paint(cr);
cairo_destroy(cr);
cairo_surface_destroy(thumbnail);
thumbnail = target_thumbnail;
if(cairo_surface_status(thumbnail) != CAIRO_STATUS_SUCCESS) {
cairo_surface_destroy(thumbnail);
return NULL;
}
return thumbnail;
}
/* This library's public API */
gboolean load_thumbnail_from_cache(file_t *file, unsigned width, unsigned height, thumbnail_persist_mode_t persist_mode, char *special_thumbnail_directory) {
if(persist_mode == THUMBNAILS_PERSIST_OFF) {
return FALSE;
}
// Obtain a local path to the file
gchar *local_filename = get_local_filename(file);
if(!local_filename) {
return FALSE;
}
const gchar *multi_page_suffix = get_multi_page_suffix(file);
// Obtain modification timestamp
struct stat file_stat;
time_t file_mtime;
if(stat(local_filename, &file_stat) < 0) {
file_mtime = MTIME_UNAVAILABLE;
} else {
file_mtime = file_stat.st_mtime;
}
// Obtain the name of the candidate for the local thumbnail file
gchar *file_uri = multi_page_suffix ? g_strdup_printf("file://%s#%s", local_filename, multi_page_suffix) : g_strdup_printf("file://%s", local_filename);
gchar *md5_filename = g_compute_checksum_for_string(G_CHECKSUM_MD5, file_uri, -1);
unsigned int minimum_level_index = 0;
if (!multi_page_suffix) {
if (width <= 128 && height <= 128) {
minimum_level_index = 4;
} else if (width <= 256 && height <= 256) {
minimum_level_index = 3;
} else if (width <= 512 && height <= 512) {
minimum_level_index = 2;
} else if (width <= 1024 && height <= 1024) {
minimum_level_index = 1;
} else {
minimum_level_index = 0;
}
}
// Search two directory structures: special_thumbnail_directory, then get_thumbnail_cache_directory()
for(int k=0; k<2; k++) {
if(k == 0 && special_thumbnail_directory == NULL) {
continue;
}
// Search in the directories for the different sizes
for(int j=minimum_level_index; j>=0; j--) {
gchar *thumbnail_candidate;
if(j == 0) {
thumbnail_candidate = g_strdup_printf("%s%s%s%s%dx%d%s%s.png", k == 0 ? special_thumbnail_directory : get_thumbnail_cache_directory(), G_DIR_SEPARATOR_S, thumbnail_levels[j], G_DIR_SEPARATOR_S, width, height, G_DIR_SEPARATOR_S, md5_filename);
}
else {
thumbnail_candidate = g_strdup_printf("%s%s%s%s%s.png", k == 0 ? special_thumbnail_directory : get_thumbnail_cache_directory(), G_DIR_SEPARATOR_S, thumbnail_levels[j], G_DIR_SEPARATOR_S, md5_filename);
}
if(g_file_test(thumbnail_candidate, G_FILE_TEST_EXISTS)) {
cairo_surface_t *thumbnail = load_thumbnail(thumbnail_candidate, file_uri, file_mtime, width, height);
g_free(thumbnail_candidate);
if(thumbnail != NULL) {
file->thumbnail = thumbnail;
g_free(local_filename);
g_free(file_uri);
g_free(md5_filename);
return TRUE;
}
}
else {
g_free(thumbnail_candidate);
}
}
}
g_free(file_uri);
g_free(md5_filename);
// Check if a shared thumbnail directory exists and try to load from there
gchar *file_dirname = g_path_get_dirname(local_filename);
gchar *shared_thumbnail_directory = g_build_filename(file_dirname, ".sh_thumbnails", NULL);
g_free(file_dirname);
if(g_file_test(shared_thumbnail_directory, G_FILE_TEST_IS_DIR)) {
gchar *file_basename = g_path_get_basename(local_filename);
if(multi_page_suffix) {
gchar *new_basename = g_strdup_printf("%s#%s", file_basename, multi_page_suffix);
g_free(file_basename);
file_basename = new_basename;
}
gchar *md5_basename = g_compute_checksum_for_string(G_CHECKSUM_MD5, file_basename, -1);
for(int j=minimum_level_index; j>=0; j--) {
gchar *thumbnail_candidate;
if(j == 0) {
thumbnail_candidate = g_strdup_printf("%s%s%s%s%dx%d%s%s.png", shared_thumbnail_directory, G_DIR_SEPARATOR_S, thumbnail_levels[j], G_DIR_SEPARATOR_S, width, height, G_DIR_SEPARATOR_S, md5_basename);
}
else {
thumbnail_candidate = g_strdup_printf("%s%s%s%s%s.png", shared_thumbnail_directory, G_DIR_SEPARATOR_S, thumbnail_levels[j], G_DIR_SEPARATOR_S, md5_basename);
}
if(g_file_test(thumbnail_candidate, G_FILE_TEST_EXISTS)) {
cairo_surface_t *thumbnail = load_thumbnail(thumbnail_candidate, file_basename, file_mtime, width, height);
g_free(thumbnail_candidate);
if(thumbnail != NULL) {
file->thumbnail = thumbnail;
g_free(md5_basename);
g_free(local_filename);
g_free(shared_thumbnail_directory);
return TRUE;
}
}
else {
g_free(thumbnail_candidate);
}
}
g_free(md5_basename);
g_free(file_basename);
}
g_free(shared_thumbnail_directory);
g_free(local_filename);
return FALSE;
}
struct png_writer_info {
int output_file_fd;
size_t bytes_written;
gchar *Thumb_URI;
gchar *Thumb_MTime;
};
static cairo_status_t png_writer(struct png_writer_info *info, const unsigned char *data, unsigned int length) {
// This is actually quite simple: A PNG file always begins with the bytes
// (137, 80, 78, 71, 13, 10, 26, 10), followed by chunks, which are
// 4 bytes payload length, 4 bytes (ASCII) type, payload, and 4 bytes CRC
// as defined above, taken over type & payload.
// We want to inject a chunk of type tEXt, whose payload is key\0value,
// after the IHDR header, which does always come first, is required, and
// has fixed length 13.
//
const unsigned inject_pos = 8 /* header */ + (4 + 4 + 4 + 13) /* IHDR */;
if(info->bytes_written < inject_pos && info->bytes_written + length >= inject_pos) {
ssize_t result = write(info->output_file_fd, data, inject_pos - info->bytes_written);
if(result < 0 || (size_t)result != inject_pos - info->bytes_written) {
return CAIRO_STATUS_WRITE_ERROR;
}
data += inject_pos - info->bytes_written;
length -= inject_pos - info->bytes_written;
info->bytes_written = inject_pos;
int uri_length = strlen(info->Thumb_URI);
int output_length = 4 + 4 + sizeof("Thumb::URI") + uri_length + 4;
char *output = g_malloc(output_length);
uint32_t write_uint32 = htonl(sizeof("Thumb::URI") + uri_length);
memcpy(output, &write_uint32, sizeof(uint32_t));
strcpy(&output[4], "tEXtThumb::URI");
strcpy(&output[19], info->Thumb_URI);
write_uint32 = htonl(crc(0, (unsigned char*)&output[4], 19 + uri_length - 4));
memcpy(&output[19+uri_length] , &write_uint32, sizeof(uint32_t));
if(write(info->output_file_fd, output, output_length) != output_length) {
return CAIRO_STATUS_WRITE_ERROR;
}
g_free(output);
int mtime_length = strlen(info->Thumb_MTime);
output_length = 4 + 4 + sizeof("Thumb::MTime") + mtime_length + 4;
output = g_malloc(output_length);
write_uint32 = htonl(sizeof("Thumb::MTime") + mtime_length);
memcpy(output, &write_uint32, sizeof(uint32_t));
strcpy(&output[4], "tEXtThumb::MTime");
strcpy(&output[21], info->Thumb_MTime);
write_uint32 = htonl(crc(0, (unsigned char*)&output[4], 21 + mtime_length - 4));
memcpy(&output[21+mtime_length], &write_uint32, sizeof(uint32_t));
if(write(info->output_file_fd, output, output_length) != output_length) {
return CAIRO_STATUS_WRITE_ERROR;
}
g_free(output);
}
if(length > 0) {
ssize_t result = write(info->output_file_fd, data, length);
if(result < 0 || (unsigned int)result != length) {
return CAIRO_STATUS_WRITE_ERROR;
}
info->bytes_written += length;
}
return CAIRO_STATUS_SUCCESS;
}
gboolean store_thumbnail_to_cache(file_t *file, unsigned width, unsigned height, thumbnail_persist_mode_t persist_mode, char *special_thumbnail_directory) {
if(persist_mode == THUMBNAILS_PERSIST_OFF || persist_mode == THUMBNAILS_PERSIST_RO) {
return FALSE;
}
// We only store thumbnails if they have the correct size
unsigned actual_width = cairo_image_surface_get_width(file->thumbnail);
unsigned actual_height = cairo_image_surface_get_height(file->thumbnail);
int thumbnail_level;
// If the file didn't need thumbnailing, don't store a thumbnail either.
// This is a simple way to make sure that we don't accidentally thumbnail
// thumbnails again.
if(actual_width == file->width || actual_height == file->height) {
return FALSE;
}
if(width == 256 && height == 256) {
thumbnail_level = 3;
}
else if(width == 128 && height == 128) {
thumbnail_level = 4;
}
else if(width == 512 && height == 512) {
thumbnail_level = 2;
}
else if(width == 1024 && height == 1024) {
thumbnail_level = 1;
}
else {
thumbnail_level = 0;
if(persist_mode == THUMBNAILS_PERSIST_STANDARD) {
return FALSE;
}
}
// Obtain absolute path to file
gchar *local_filename = get_local_filename(file);
if(!local_filename) {
return FALSE;
}
const gchar *multi_page_suffix = get_multi_page_suffix(file);
if(multi_page_suffix) {
// Unspecified by standard, use x-pqiv cache
thumbnail_level = 0;
if(persist_mode == THUMBNAILS_PERSIST_STANDARD) {
g_free(local_filename);
return FALSE;
}
}
// Obtain modification timestamp
struct stat file_stat;
if(stat(local_filename, &file_stat) < 0) {
g_free(local_filename);
return FALSE;
}
time_t file_mtime = file_stat.st_mtime;
// Obtain the name of the thumbnail file
gchar *file_uri, *md5_filename, *thumbnail_directory, *thumbnail_file;
if(persist_mode == THUMBNAILS_PERSIST_LOCAL) {
// Create a .sh_thumbnails directory
file_uri = g_path_get_basename(local_filename);
if(multi_page_suffix) {
gchar *new_uri = g_strdup_printf("%s#%s", file_uri, multi_page_suffix);
g_free(file_uri);
file_uri = new_uri;
}
md5_filename = g_compute_checksum_for_string(G_CHECKSUM_MD5, file_uri, -1);
gchar *file_dirname = g_path_get_dirname(local_filename);
if(thumbnail_level == 0) {
thumbnail_directory = g_strdup_printf("%s%s.sh_thumbnails%s%s%s%dx%d", file_dirname, G_DIR_SEPARATOR_S, G_DIR_SEPARATOR_S, thumbnail_levels[0], G_DIR_SEPARATOR_S, width, height);
}
else {
thumbnail_directory = g_strdup_printf("%s%s.sh_thumbnails%s%s", file_dirname, G_DIR_SEPARATOR_S, G_DIR_SEPARATOR_S, thumbnail_levels[thumbnail_level]);
}
g_free(file_dirname);
thumbnail_file = g_strdup_printf("%s%s%s.png", thumbnail_directory, G_DIR_SEPARATOR_S, md5_filename);
}
else {
// Use the standardized cache format, possibly with special directory
if(multi_page_suffix) {
file_uri = g_strdup_printf("file://%s#%s", local_filename, multi_page_suffix);
}
else {
file_uri = g_strdup_printf("file://%s", local_filename);
}
md5_filename = g_compute_checksum_for_string(G_CHECKSUM_MD5, file_uri, -1);
if(thumbnail_level == 0) {
thumbnail_directory = g_strdup_printf("%s%s%s%s%dx%d", special_thumbnail_directory ? special_thumbnail_directory : get_thumbnail_cache_directory(), G_DIR_SEPARATOR_S, thumbnail_levels[thumbnail_level], G_DIR_SEPARATOR_S, width, height);
}
else {
thumbnail_directory = g_strdup_printf("%s%s%s", special_thumbnail_directory ? special_thumbnail_directory : get_thumbnail_cache_directory(), G_DIR_SEPARATOR_S, thumbnail_levels[thumbnail_level]);
}
thumbnail_file = g_strdup_printf("%s%s%s.png", thumbnail_directory, G_DIR_SEPARATOR_S, md5_filename);
}
// Create the directory if necessary
if(!g_file_test(thumbnail_directory, G_FILE_TEST_IS_DIR)) {
g_mkdir_with_parents(thumbnail_directory, 0700);
}
g_free(thumbnail_directory);
// Write out thumbnail
// We use a wrapper to inject the tEXt chunks as required by the thumbnail standard
gboolean retval = TRUE;
int file_fd = g_open(thumbnail_file, O_CREAT | O_WRONLY, 0600);
if(file_fd >= 0) {
gchar *string_mtime = g_strdup_printf("%" PRIuMAX, (intmax_t)file_mtime);
struct png_writer_info writer_info = { file_fd, 0, file_uri, string_mtime };
if(cairo_surface_write_to_png_stream(file->thumbnail, (cairo_write_func_t)png_writer, &writer_info) != CAIRO_STATUS_SUCCESS) {
g_unlink(thumbnail_file);
retval = FALSE;
}
g_free(string_mtime);
}
g_close(file_fd, NULL);
g_free(file_uri);
g_free(md5_filename);
g_free(thumbnail_file);
g_free(local_filename);
return retval;
}
#else
void __thumbnailcache__empty_translation_unit() {}
#endif
|