Mercurial > geeqie.yaz
annotate src/thumb.c @ 1433:b4ad1d201279
Use gboolean where applicable, minor cleanup and indentations fixes.
author | zas_ |
---|---|
date | Sat, 14 Mar 2009 19:25:21 +0000 |
parents | cf4029d10d38 |
children | a6f9ba6fd751 |
rev | line source |
---|---|
1 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
1284 | 4 * Copyright (C) 2008 - 2009 The Geeqie Team |
1 | 5 * |
6 * Author: John Ellis | |
7 * | |
9 | 8 * This software is released under the GNU General Public License (GNU GPL). |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
1 | 11 */ |
12 | |
9 | 13 |
281 | 14 #include "main.h" |
9 | 15 #include "thumb.h" |
1 | 16 |
9 | 17 #include "cache.h" |
18 #include "image-load.h" | |
586 | 19 #include "filedata.h" |
9 | 20 #include "pixbuf_util.h" |
21 #include "thumb_standard.h" | |
22 #include "ui_fileops.h" | |
839 | 23 #include "exif.h" |
1288 | 24 #include "metadata.h" |
1 | 25 |
9 | 26 #include <utime.h> |
27 | |
28 | |
29 static void thumb_loader_error_cb(ImageLoader *il, gpointer data); | |
838 | 30 static void thumb_loader_setup(ThumbLoader *tl, const gchar *path); |
9 | 31 |
32 static GdkPixbuf *get_xv_thumbnail(gchar *thumb_filename, gint max_w, gint max_h); | |
33 | |
1 | 34 |
35 /* | |
36 *----------------------------------------------------------------------------- | |
37 * thumbnail routines: creation, caching, and maintenance (public) | |
38 *----------------------------------------------------------------------------- | |
39 */ | |
40 | |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
41 /* Save thumbnail to disk |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
42 * or just mark failed thumbnail with 0 byte file (mark_failure = TRUE) */ |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
43 static gboolean thumb_loader_save_thumbnail(ThumbLoader *tl, gboolean mark_failure) |
1 | 44 { |
9 | 45 gchar *cache_dir; |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
46 gboolean success = FALSE; |
9 | 47 mode_t mode = 0755; |
1 | 48 |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
49 if (!tl || !tl->fd) return FALSE; |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
50 if (!mark_failure && !tl->fd->thumb_pixbuf) return FALSE; |
1 | 51 |
838 | 52 cache_dir = cache_get_location(CACHE_TYPE_THUMB, tl->fd->path, FALSE, &mode); |
1 | 53 |
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1060
diff
changeset
|
54 if (recursive_mkdir_if_not_exists(cache_dir, mode)) |
1 | 55 { |
56 gchar *cache_path; | |
9 | 57 gchar *pathl; |
838 | 58 gchar *name = g_strconcat(filename_from_path(tl->fd->path), GQ_CACHE_EXT_THUMB, NULL); |
9 | 59 |
715 | 60 cache_path = g_build_filename(cache_dir, name, NULL); |
61 g_free(name); | |
1 | 62 |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
63 pathl = path_from_utf8(cache_path); |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
64 |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
65 if (mark_failure) |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
66 { |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
67 FILE *f = fopen(pathl, "w"); ; |
9 | 68 |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
69 DEBUG_1("Marking thumb failure: %s", cache_path); |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
70 if (f) |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
71 { |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
72 fclose(f); |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
73 success = TRUE; |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
74 } |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
75 } |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
76 else |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
77 { |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
78 DEBUG_1("Saving thumb: %s", cache_path); |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
79 success = pixbuf_to_file_as_png(tl->fd->thumb_pixbuf, pathl); |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
80 } |
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
81 |
9 | 82 if (success) |
1 | 83 { |
9 | 84 struct utimbuf ut; |
85 /* set thumb time to that of source file */ | |
86 | |
838 | 87 ut.actime = ut.modtime = filetime(tl->fd->path); |
9 | 88 if (ut.modtime > 0) |
1 | 89 { |
9 | 90 utime(pathl, &ut); |
1 | 91 } |
92 } | |
93 else | |
94 { | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
95 DEBUG_1("Saving failed: %s", pathl); |
1 | 96 } |
9 | 97 |
98 g_free(pathl); | |
99 g_free(cache_path); | |
100 } | |
101 | |
102 g_free(cache_dir); | |
103 | |
104 return success; | |
105 } | |
1 | 106 |
9 | 107 static void thumb_loader_percent_cb(ImageLoader *il, gdouble percent, gpointer data) |
108 { | |
109 ThumbLoader *tl = data; | |
110 | |
111 tl->percent_done = percent; | |
112 | |
113 if (tl->func_progress) tl->func_progress(tl, tl->data); | |
114 } | |
115 | |
876
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
116 static void thumb_loader_set_fallback(ThumbLoader *tl) |
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
117 { |
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
118 if (tl->fd->thumb_pixbuf) g_object_unref(tl->fd->thumb_pixbuf); |
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
119 tl->fd->thumb_pixbuf = pixbuf_fallback(tl->fd, tl->max_w, tl->max_h); |
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
120 } |
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
121 |
9 | 122 static void thumb_loader_done_cb(ImageLoader *il, gpointer data) |
123 { | |
124 ThumbLoader *tl = data; | |
125 GdkPixbuf *pixbuf; | |
126 gint pw, ph; | |
127 gint save; | |
839 | 128 GdkPixbuf *rotated = NULL; |
9 | 129 |
838 | 130 DEBUG_1("thumb done: %s", tl->fd->path); |
1 | 131 |
9 | 132 pixbuf = image_loader_get_pixbuf(tl->il); |
133 if (!pixbuf) | |
134 { | |
838 | 135 DEBUG_1("...but no pixbuf: %s", tl->fd->path); |
9 | 136 thumb_loader_error_cb(tl->il, tl); |
137 return; | |
138 } | |
139 | |
839 | 140 |
141 if (!tl->cache_hit && options->image.exif_rotate_enable) | |
142 { | |
143 if (!tl->fd->exif_orientation) | |
144 { | |
1288 | 145 tl->fd->exif_orientation = metadata_read_int(tl->fd, "Exif.Image.Orientation", EXIF_ORIENTATION_TOP_LEFT); |
839 | 146 } |
147 | |
842
94048d7843ba
do not allocate new buffer for thumbnails with correct orientation
nadvornik
parents:
841
diff
changeset
|
148 if (tl->fd->exif_orientation != EXIF_ORIENTATION_TOP_LEFT) |
94048d7843ba
do not allocate new buffer for thumbnails with correct orientation
nadvornik
parents:
841
diff
changeset
|
149 { |
94048d7843ba
do not allocate new buffer for thumbnails with correct orientation
nadvornik
parents:
841
diff
changeset
|
150 rotated = pixbuf_apply_orientation(pixbuf, tl->fd->exif_orientation); |
94048d7843ba
do not allocate new buffer for thumbnails with correct orientation
nadvornik
parents:
841
diff
changeset
|
151 pixbuf = rotated; |
94048d7843ba
do not allocate new buffer for thumbnails with correct orientation
nadvornik
parents:
841
diff
changeset
|
152 } |
839 | 153 } |
154 | |
9 | 155 pw = gdk_pixbuf_get_width(pixbuf); |
156 ph = gdk_pixbuf_get_height(pixbuf); | |
157 | |
158 if (tl->cache_hit && pw != tl->max_w && ph != tl->max_h) | |
159 { | |
160 /* requested thumbnail size may have changed, load original */ | |
838 | 161 DEBUG_1("thumbnail size mismatch, regenerating: %s", tl->fd->path); |
9 | 162 tl->cache_hit = FALSE; |
163 | |
838 | 164 thumb_loader_setup(tl, tl->fd->path); |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1011
diff
changeset
|
165 |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
166 g_signal_connect(G_OBJECT(tl->il), "done", (GCallback)thumb_loader_done_cb, tl); |
1 | 167 |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1011
diff
changeset
|
168 if (!image_loader_start(tl->il)) |
9 | 169 { |
170 image_loader_free(tl->il); | |
171 tl->il = NULL; | |
172 | |
838 | 173 DEBUG_1("regeneration failure: %s", tl->fd->path); |
9 | 174 thumb_loader_error_cb(tl->il, tl); |
175 } | |
176 return; | |
177 } | |
1 | 178 |
9 | 179 /* scale ?? */ |
180 | |
181 if (pw > tl->max_w || ph > tl->max_h) | |
182 { | |
183 gint w, h; | |
184 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
877
diff
changeset
|
185 if (((gdouble)tl->max_w / pw) < ((gdouble)tl->max_h / ph)) |
9 | 186 { |
187 w = tl->max_w; | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
877
diff
changeset
|
188 h = (gdouble)w / pw * ph; |
9 | 189 if (h < 1) h = 1; |
1 | 190 } |
191 else | |
192 { | |
9 | 193 h = tl->max_h; |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
877
diff
changeset
|
194 w = (gdouble)h / ph * pw; |
9 | 195 if (w < 1) w = 1; |
1 | 196 } |
838 | 197 |
198 if (tl->fd) | |
199 { | |
845 | 200 if (tl->fd->thumb_pixbuf) g_object_unref(tl->fd->thumb_pixbuf); |
201 tl->fd->thumb_pixbuf = gdk_pixbuf_scale_simple(pixbuf, w, h, (GdkInterpType)options->thumbnails.quality); | |
838 | 202 } |
9 | 203 save = TRUE; |
1 | 204 } |
205 else | |
206 { | |
838 | 207 if (tl->fd) |
208 { | |
845 | 209 if (tl->fd->thumb_pixbuf) g_object_unref(tl->fd->thumb_pixbuf); |
210 tl->fd->thumb_pixbuf = pixbuf; | |
1043 | 211 |
212 g_object_ref(tl->fd->thumb_pixbuf); | |
838 | 213 } |
1011 | 214 save = image_loader_get_shrunk(il); |
9 | 215 } |
216 | |
1043 | 217 if (rotated) g_object_unref(rotated); |
839 | 218 |
9 | 219 /* save it ? */ |
220 if (tl->cache_enable && save) | |
221 { | |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
222 thumb_loader_save_thumbnail(tl, FALSE); |
9 | 223 } |
224 | |
225 if (tl->func_done) tl->func_done(tl, tl->data); | |
226 } | |
227 | |
228 static void thumb_loader_error_cb(ImageLoader *il, gpointer data) | |
229 { | |
230 ThumbLoader *tl = data; | |
231 | |
232 /* if at least some of the image is available, go to done_cb */ | |
233 if (image_loader_get_pixbuf(tl->il) != NULL) | |
234 { | |
235 thumb_loader_done_cb(il, data); | |
236 return; | |
1 | 237 } |
9 | 238 |
838 | 239 DEBUG_1("thumb error: %s", tl->fd->path); |
9 | 240 |
241 image_loader_free(tl->il); | |
242 tl->il = NULL; | |
243 | |
876
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
244 thumb_loader_set_fallback(tl); |
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
245 |
9 | 246 if (tl->func_error) tl->func_error(tl, tl->data); |
247 } | |
248 | |
249 static gint thumb_loader_done_delay_cb(gpointer data) | |
250 { | |
251 ThumbLoader *tl = data; | |
252 | |
253 tl->idle_done_id = -1; | |
254 | |
255 if (tl->func_done) tl->func_done(tl, tl->data); | |
256 | |
257 return FALSE; | |
258 } | |
259 | |
260 static void thumb_loader_delay_done(ThumbLoader *tl) | |
261 { | |
262 if (tl->idle_done_id == -1) tl->idle_done_id = g_idle_add(thumb_loader_done_delay_cb, tl); | |
263 } | |
264 | |
838 | 265 static void thumb_loader_setup(ThumbLoader *tl, const gchar *path) |
9 | 266 { |
838 | 267 FileData *fd = file_data_new_simple(path); |
9 | 268 image_loader_free(tl->il); |
838 | 269 tl->il = image_loader_new(fd); |
270 file_data_unref(fd); | |
1036 | 271 image_loader_set_priority(tl->il, G_PRIORITY_LOW); |
9 | 272 |
333 | 273 if (options->thumbnails.fast) |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
274 { |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
275 /* this will speed up jpegs by up to 3x in some cases */ |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
276 image_loader_set_requested_size(tl->il, tl->max_w, tl->max_h); |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
277 } |
9 | 278 |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
279 g_signal_connect(G_OBJECT(tl->il), "error", (GCallback)thumb_loader_error_cb, tl); |
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
280 if (tl->func_progress) g_signal_connect(G_OBJECT(tl->il), "percent", (GCallback)thumb_loader_percent_cb, tl); |
9 | 281 } |
282 | |
283 void thumb_loader_set_callbacks(ThumbLoader *tl, | |
284 ThumbLoaderFunc func_done, | |
285 ThumbLoaderFunc func_error, | |
286 ThumbLoaderFunc func_progress, | |
287 gpointer data) | |
288 { | |
289 if (!tl) return; | |
290 | |
291 if (tl->standard_loader) | |
292 { | |
293 thumb_loader_std_set_callbacks((ThumbLoaderStd *)tl, | |
294 (ThumbLoaderStdFunc) func_done, | |
295 (ThumbLoaderStdFunc) func_error, | |
296 (ThumbLoaderStdFunc) func_progress, | |
297 data); | |
298 return; | |
299 } | |
300 | |
301 tl->func_done = func_done; | |
302 tl->func_error = func_error; | |
303 tl->func_progress = func_progress; | |
304 | |
305 tl->data = data; | |
306 } | |
307 | |
308 void thumb_loader_set_cache(ThumbLoader *tl, gint enable_cache, gint local, gint retry_failed) | |
309 { | |
442 | 310 if (!tl) return; |
9 | 311 |
312 if (tl->standard_loader) | |
313 { | |
314 thumb_loader_std_set_cache((ThumbLoaderStd *)tl, enable_cache, local, retry_failed); | |
315 return; | |
316 } | |
317 | |
318 tl->cache_enable = enable_cache; | |
319 #if 0 | |
320 tl->cache_local = local; | |
321 tl->cache_retry = retry_failed; | |
322 #endif | |
1 | 323 } |
324 | |
325 | |
838 | 326 gint thumb_loader_start(ThumbLoader *tl, FileData *fd) |
9 | 327 { |
328 gchar *cache_path = NULL; | |
1 | 329 |
9 | 330 if (!tl) return FALSE; |
1 | 331 |
9 | 332 if (tl->standard_loader) |
1 | 333 { |
838 | 334 return thumb_loader_std_start((ThumbLoaderStd *)tl, fd); |
9 | 335 } |
336 | |
838 | 337 if (!tl->fd && !fd) return FALSE; |
1 | 338 |
838 | 339 if (!tl->fd) tl->fd = file_data_ref(fd); |
1 | 340 |
864 | 341 |
9 | 342 if (tl->cache_enable) |
343 { | |
838 | 344 cache_path = cache_find_location(CACHE_TYPE_THUMB, tl->fd->path); |
9 | 345 |
346 if (cache_path) | |
1 | 347 { |
838 | 348 if (cache_time_valid(cache_path, tl->fd->path)) |
9 | 349 { |
838 | 350 DEBUG_1("Found in cache:%s", tl->fd->path); |
1 | 351 |
9 | 352 if (filesize(cache_path) == 0) |
1 | 353 { |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
354 DEBUG_1("Broken image mark found:%s", cache_path); |
9 | 355 g_free(cache_path); |
1009
dd311dae857a
fixed thumbnail loader for the new raw preview interface
nadvornik
parents:
1000
diff
changeset
|
356 thumb_loader_set_fallback(tl); |
9 | 357 return FALSE; |
1 | 358 } |
9 | 359 |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
360 DEBUG_1("Cache location:%s", cache_path); |
9 | 361 } |
362 else | |
363 { | |
364 g_free(cache_path); | |
365 cache_path = NULL; | |
1 | 366 } |
367 } | |
9 | 368 } |
369 | |
333 | 370 if (!cache_path && options->thumbnails.use_xvpics) |
9 | 371 { |
845 | 372 if (tl->fd->thumb_pixbuf) g_object_unref(tl->fd->thumb_pixbuf); |
373 tl->fd->thumb_pixbuf = get_xv_thumbnail(tl->fd->path, tl->max_w, tl->max_h); | |
374 if (tl->fd->thumb_pixbuf) | |
9 | 375 { |
376 thumb_loader_delay_done(tl); | |
377 return TRUE; | |
378 } | |
379 } | |
380 | |
381 if (cache_path) | |
382 { | |
383 thumb_loader_setup(tl, cache_path); | |
384 g_free(cache_path); | |
385 tl->cache_hit = TRUE; | |
386 } | |
387 else | |
388 { | |
838 | 389 thumb_loader_setup(tl, tl->fd->path); |
9 | 390 } |
391 | |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
392 g_signal_connect(G_OBJECT(tl->il), "done", (GCallback)thumb_loader_done_cb, tl); |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1011
diff
changeset
|
393 if (!image_loader_start(tl->il)) |
9 | 394 { |
395 /* try from original if cache attempt */ | |
396 if (tl->cache_hit) | |
397 { | |
398 tl->cache_hit = FALSE; | |
694 | 399 log_printf("%s", _("Thumbnail image in cache failed to load, trying to recreate.\n")); |
9 | 400 |
838 | 401 thumb_loader_setup(tl, tl->fd->path); |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
402 g_signal_connect(G_OBJECT(tl->il), "done", (GCallback)thumb_loader_done_cb, tl); |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
1011
diff
changeset
|
403 if (image_loader_start(tl->il)) return TRUE; |
9 | 404 } |
405 /* mark failed thumbnail in cache with 0 byte file */ | |
406 if (tl->cache_enable) | |
407 { | |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
408 thumb_loader_save_thumbnail(tl, TRUE); |
9 | 409 } |
442 | 410 |
9 | 411 image_loader_free(tl->il); |
412 tl->il = NULL; | |
876
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
413 thumb_loader_set_fallback(tl); |
9 | 414 return FALSE; |
415 } | |
416 | |
417 return TRUE; | |
418 } | |
419 | |
420 #if 0 | |
421 gint thumb_loader_to_pixmap(ThumbLoader *tl, GdkPixmap **pixmap, GdkBitmap **mask) | |
422 { | |
423 if (!tl || !tl->pixbuf) return -1; | |
424 | |
425 gdk_pixbuf_render_pixmap_and_mask(tl->pixbuf, pixmap, mask, 128); | |
426 | |
427 return thumb_loader_get_space(tl); | |
428 } | |
429 #endif | |
430 | |
864 | 431 GdkPixbuf *thumb_loader_get_pixbuf(ThumbLoader *tl) |
9 | 432 { |
433 GdkPixbuf *pixbuf; | |
434 | |
435 if (tl && tl->standard_loader) | |
436 { | |
864 | 437 return thumb_loader_std_get_pixbuf((ThumbLoaderStd *)tl); |
9 | 438 } |
439 | |
845 | 440 if (tl && tl->fd && tl->fd->thumb_pixbuf) |
9 | 441 { |
845 | 442 pixbuf = tl->fd->thumb_pixbuf; |
9 | 443 g_object_ref(pixbuf); |
444 } | |
445 else | |
446 { | |
864 | 447 pixbuf = pixbuf_fallback(NULL, tl->max_w, tl->max_h); |
9 | 448 } |
449 | |
450 return pixbuf; | |
451 } | |
452 | |
453 #if 0 | |
454 gint thumb_loader_get_space(ThumbLoader *tl) | |
455 { | |
456 if (!tl) return 0; | |
457 | |
458 if (tl->pixbuf) return (tl->max_w - gdk_pixbuf_get_width(tl->pixbuf)); | |
459 | |
460 return tl->max_w; | |
461 } | |
462 #endif | |
463 | |
464 ThumbLoader *thumb_loader_new(gint width, gint height) | |
465 { | |
466 ThumbLoader *tl; | |
467 | |
1060 | 468 /* non-std thumb loader is more effective for configurations with disabled caching |
469 because it loads the thumbnails at the required size. loader_std loads | |
470 the thumbnails at the sizes appropriate for standard cache (typically 256x256 pixels) | |
471 and then performs one additional scaling */ | |
472 if (options->thumbnails.spec_standard && options->thumbnails.enable_caching) | |
9 | 473 { |
474 return (ThumbLoader *)thumb_loader_std_new(width, height); | |
475 } | |
476 | |
477 tl = g_new0(ThumbLoader, 1); | |
1365
249bf204004a
When g_new0() is used, drop redundant initializations to NULL, FALSE or 0.
zas_
parents:
1346
diff
changeset
|
478 |
333 | 479 tl->cache_enable = options->thumbnails.enable_caching; |
9 | 480 tl->percent_done = 0.0; |
481 tl->max_w = width; | |
482 tl->max_h = height; | |
483 tl->idle_done_id = -1; | |
484 | |
485 return tl; | |
1 | 486 } |
487 | |
9 | 488 void thumb_loader_free(ThumbLoader *tl) |
489 { | |
490 if (!tl) return; | |
491 | |
492 if (tl->standard_loader) | |
493 { | |
494 thumb_loader_std_free((ThumbLoaderStd *)tl); | |
495 return; | |
496 } | |
497 | |
498 image_loader_free(tl->il); | |
838 | 499 file_data_unref(tl->fd); |
9 | 500 |
501 if (tl->idle_done_id != -1) g_source_remove(tl->idle_done_id); | |
502 | |
503 g_free(tl); | |
504 } | |
505 | |
506 #if 0 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
877
diff
changeset
|
507 gint thumb_from_xpm_d(const gchar **data, gint max_w, gint max_h, GdkPixmap **pixmap, GdkBitmap **mask) |
9 | 508 { |
509 GdkPixbuf *pixbuf; | |
510 gint w, h; | |
511 | |
512 pixbuf = gdk_pixbuf_new_from_xpm_data(data); | |
513 w = gdk_pixbuf_get_width(pixbuf); | |
514 h = gdk_pixbuf_get_height(pixbuf); | |
515 | |
864 | 516 if (pixbuf_scale_aspect(w, h, max_w, max_h, &w, &h)) |
9 | 517 { |
518 /* scale */ | |
519 GdkPixbuf *tmp; | |
520 | |
521 tmp = pixbuf; | |
522 pixbuf = gdk_pixbuf_scale_simple(tmp, w, h, GDK_INTERP_NEAREST); | |
523 gdk_pixbuf_unref(tmp); | |
524 } | |
525 | |
526 gdk_pixbuf_render_pixmap_and_mask(pixbuf, pixmap, mask, 128); | |
527 gdk_pixbuf_unref(pixbuf); | |
528 | |
529 return w; | |
530 } | |
531 #endif | |
532 | |
877 | 533 |
534 /* release thumb_pixbuf on file change - this forces reload. */ | |
535 void thumb_notify_cb(FileData *fd, NotifyType type, gpointer data) | |
536 { | |
1432 | 537 if ((type & (NOTIFY_REREAD | NOTIFY_CHANGE)) && fd->thumb_pixbuf) |
877 | 538 { |
539 g_object_unref(fd->thumb_pixbuf); | |
540 fd->thumb_pixbuf = NULL; | |
541 } | |
542 } | |
543 | |
544 | |
1 | 545 /* |
546 *----------------------------------------------------------------------------- | |
547 * xvpics thumbnail support, read-only (private) | |
548 *----------------------------------------------------------------------------- | |
549 */ | |
550 | |
551 /* | |
552 * xvpics code originally supplied by: | |
553 * "Diederen Damien" <D.Diederen@student.ulg.ac.be> | |
554 * | |
555 * Note: Code has been modified to fit the style of the other code, and to use | |
556 * a few more glib-isms. | |
9 | 557 * 08-28-2000: Updated to return a gdk_pixbuf, Imlib is dieing a death here. |
1 | 558 */ |
559 | |
560 #define XV_BUFFER 2048 | |
561 static guchar *load_xv_thumbnail(gchar *filename, gint *widthp, gint *heightp) | |
562 { | |
563 FILE *file; | |
564 gchar buffer[XV_BUFFER]; | |
1181 | 565 guchar *data = NULL; |
1 | 566 |
567 file = fopen(filename, "rt"); | |
855 | 568 if (!file) return NULL; |
1 | 569 |
1181 | 570 if (fgets(buffer, XV_BUFFER, file) != NULL |
571 && strncmp(buffer, "P7 332", 6) == 0) | |
1 | 572 { |
1181 | 573 gint width, height, depth; |
574 | |
575 while (fgets(buffer, XV_BUFFER, file) && buffer[0] == '#') /* do_nothing() */; | |
576 | |
577 if (sscanf(buffer, "%d %d %d", &width, &height, &depth) == 3) | |
578 { | |
579 gsize size = width * height; | |
580 | |
581 data = g_new(guchar, size); | |
582 if (data && fread(data, 1, size, file) == size) | |
583 { | |
584 *widthp = width; | |
585 *heightp = height; | |
586 } | |
587 } | |
1 | 588 } |
589 | |
590 fclose(file); | |
591 return data; | |
592 } | |
593 #undef XV_BUFFER | |
594 | |
9 | 595 static void free_rgb_buffer(guchar *pixels, gpointer data) |
596 { | |
597 g_free(pixels); | |
598 } | |
599 | |
600 static GdkPixbuf *get_xv_thumbnail(gchar *thumb_filename, gint max_w, gint max_h) | |
1 | 601 { |
602 gint width, height; | |
603 gchar *thumb_name; | |
715 | 604 gchar *path; |
605 gchar *directory; | |
606 gchar *name; | |
1 | 607 guchar *packed_data; |
608 | |
715 | 609 path = path_from_utf8(thumb_filename); |
610 directory = g_path_get_dirname(path); | |
611 name = g_path_get_basename(path); | |
612 | |
613 thumb_name = g_build_filename(directory, ".xvpics", name, NULL); | |
614 | |
615 g_free(name); | |
616 g_free(directory); | |
617 g_free(path); | |
1 | 618 |
619 packed_data = load_xv_thumbnail(thumb_name, &width, &height); | |
620 g_free(thumb_name); | |
621 | |
855 | 622 if (packed_data) |
1 | 623 { |
624 guchar *rgb_data; | |
9 | 625 GdkPixbuf *pixbuf; |
1 | 626 gint i; |
627 | |
628 rgb_data = g_new(guchar, width * height * 3); | |
517 | 629 for (i = 0; i < width * height; i++) |
1 | 630 { |
631 rgb_data[i * 3 + 0] = (packed_data[i] >> 5) * 36; | |
632 rgb_data[i * 3 + 1] = ((packed_data[i] & 28) >> 2) * 36; | |
633 rgb_data[i * 3 + 2] = (packed_data[i] & 3) * 85; | |
634 } | |
9 | 635 g_free(packed_data); |
1 | 636 |
9 | 637 pixbuf = gdk_pixbuf_new_from_data(rgb_data, GDK_COLORSPACE_RGB, FALSE, 8, |
638 width, height, 3 * width, free_rgb_buffer, NULL); | |
639 | |
864 | 640 if (pixbuf_scale_aspect(width, height, max_w, max_h, &width, &height)) |
9 | 641 { |
642 /* scale */ | |
643 GdkPixbuf *tmp; | |
644 | |
645 tmp = pixbuf; | |
646 pixbuf = gdk_pixbuf_scale_simple(tmp, width, height, GDK_INTERP_NEAREST); | |
1043 | 647 g_object_unref(tmp); |
9 | 648 } |
442 | 649 |
9 | 650 return pixbuf; |
1 | 651 } |
652 | |
9 | 653 return NULL; |
1 | 654 } |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1043
diff
changeset
|
655 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |