Mercurial > geeqie.yaz
annotate src/thumb.c @ 1538:a310abd44894
Adding debian packaging informations
Adding debian control directory to create a geeqie debian package.
NOTES: (To be fixed in autoconf)
- LIRC must be explicit _enabled_ instead of disable. This is wrong
documented.
- It might be a good idea to derivate the readmedir and the htmldir
from docdir.
author | mow |
---|---|
date | Sat, 11 Apr 2009 18:34:12 +0000 |
parents | 24a12aa0cb54 |
children | c776b1310ca6 |
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 | |
1446 | 249 static gboolean thumb_loader_done_delay_cb(gpointer data) |
9 | 250 { |
251 ThumbLoader *tl = data; | |
252 | |
1523 | 253 tl->idle_done_id = 0; |
9 | 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 { | |
1523 | 262 if (!tl->idle_done_id) tl->idle_done_id = g_idle_add(thumb_loader_done_delay_cb, tl); |
9 | 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 |
1521 | 273 /* this will speed up jpegs by up to 3x in some cases */ |
274 image_loader_set_requested_size(tl->il, tl->max_w, tl->max_h); | |
9 | 275 |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
276 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
|
277 if (tl->func_progress) g_signal_connect(G_OBJECT(tl->il), "percent", (GCallback)thumb_loader_percent_cb, tl); |
9 | 278 } |
279 | |
280 void thumb_loader_set_callbacks(ThumbLoader *tl, | |
281 ThumbLoaderFunc func_done, | |
282 ThumbLoaderFunc func_error, | |
283 ThumbLoaderFunc func_progress, | |
284 gpointer data) | |
285 { | |
286 if (!tl) return; | |
287 | |
288 if (tl->standard_loader) | |
289 { | |
290 thumb_loader_std_set_callbacks((ThumbLoaderStd *)tl, | |
291 (ThumbLoaderStdFunc) func_done, | |
292 (ThumbLoaderStdFunc) func_error, | |
293 (ThumbLoaderStdFunc) func_progress, | |
294 data); | |
295 return; | |
296 } | |
297 | |
298 tl->func_done = func_done; | |
299 tl->func_error = func_error; | |
300 tl->func_progress = func_progress; | |
301 | |
302 tl->data = data; | |
303 } | |
304 | |
1446 | 305 void thumb_loader_set_cache(ThumbLoader *tl, gboolean enable_cache, gboolean local, gboolean retry_failed) |
9 | 306 { |
442 | 307 if (!tl) return; |
9 | 308 |
309 if (tl->standard_loader) | |
310 { | |
311 thumb_loader_std_set_cache((ThumbLoaderStd *)tl, enable_cache, local, retry_failed); | |
312 return; | |
313 } | |
314 | |
315 tl->cache_enable = enable_cache; | |
316 #if 0 | |
317 tl->cache_local = local; | |
318 tl->cache_retry = retry_failed; | |
319 #endif | |
1 | 320 } |
321 | |
322 | |
1446 | 323 gboolean thumb_loader_start(ThumbLoader *tl, FileData *fd) |
9 | 324 { |
325 gchar *cache_path = NULL; | |
1 | 326 |
9 | 327 if (!tl) return FALSE; |
1 | 328 |
9 | 329 if (tl->standard_loader) |
1 | 330 { |
838 | 331 return thumb_loader_std_start((ThumbLoaderStd *)tl, fd); |
9 | 332 } |
333 | |
838 | 334 if (!tl->fd && !fd) return FALSE; |
1 | 335 |
838 | 336 if (!tl->fd) tl->fd = file_data_ref(fd); |
1 | 337 |
864 | 338 |
9 | 339 if (tl->cache_enable) |
340 { | |
838 | 341 cache_path = cache_find_location(CACHE_TYPE_THUMB, tl->fd->path); |
9 | 342 |
343 if (cache_path) | |
1 | 344 { |
838 | 345 if (cache_time_valid(cache_path, tl->fd->path)) |
9 | 346 { |
838 | 347 DEBUG_1("Found in cache:%s", tl->fd->path); |
1 | 348 |
9 | 349 if (filesize(cache_path) == 0) |
1 | 350 { |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
351 DEBUG_1("Broken image mark found:%s", cache_path); |
9 | 352 g_free(cache_path); |
1009
dd311dae857a
fixed thumbnail loader for the new raw preview interface
nadvornik
parents:
1000
diff
changeset
|
353 thumb_loader_set_fallback(tl); |
9 | 354 return FALSE; |
1 | 355 } |
9 | 356 |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
357 DEBUG_1("Cache location:%s", cache_path); |
9 | 358 } |
359 else | |
360 { | |
361 g_free(cache_path); | |
362 cache_path = NULL; | |
1 | 363 } |
364 } | |
9 | 365 } |
366 | |
333 | 367 if (!cache_path && options->thumbnails.use_xvpics) |
9 | 368 { |
845 | 369 if (tl->fd->thumb_pixbuf) g_object_unref(tl->fd->thumb_pixbuf); |
370 tl->fd->thumb_pixbuf = get_xv_thumbnail(tl->fd->path, tl->max_w, tl->max_h); | |
371 if (tl->fd->thumb_pixbuf) | |
9 | 372 { |
373 thumb_loader_delay_done(tl); | |
374 return TRUE; | |
375 } | |
376 } | |
377 | |
378 if (cache_path) | |
379 { | |
380 thumb_loader_setup(tl, cache_path); | |
381 g_free(cache_path); | |
382 tl->cache_hit = TRUE; | |
383 } | |
384 else | |
385 { | |
838 | 386 thumb_loader_setup(tl, tl->fd->path); |
9 | 387 } |
388 | |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1288
diff
changeset
|
389 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
|
390 if (!image_loader_start(tl->il)) |
9 | 391 { |
392 /* try from original if cache attempt */ | |
393 if (tl->cache_hit) | |
394 { | |
395 tl->cache_hit = FALSE; | |
694 | 396 log_printf("%s", _("Thumbnail image in cache failed to load, trying to recreate.\n")); |
9 | 397 |
838 | 398 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
|
399 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
|
400 if (image_loader_start(tl->il)) return TRUE; |
9 | 401 } |
402 /* mark failed thumbnail in cache with 0 byte file */ | |
403 if (tl->cache_enable) | |
404 { | |
871
3093f50c7181
Merge thumb_loader_save_to_cache() and thumb_loader_mark_failure()
zas_
parents:
867
diff
changeset
|
405 thumb_loader_save_thumbnail(tl, TRUE); |
9 | 406 } |
442 | 407 |
9 | 408 image_loader_free(tl->il); |
409 tl->il = NULL; | |
876
2d8705f33da5
set fallback thumbnail pixbuf only if the loading really fails
nadvornik
parents:
871
diff
changeset
|
410 thumb_loader_set_fallback(tl); |
9 | 411 return FALSE; |
412 } | |
413 | |
414 return TRUE; | |
415 } | |
416 | |
417 #if 0 | |
418 gint thumb_loader_to_pixmap(ThumbLoader *tl, GdkPixmap **pixmap, GdkBitmap **mask) | |
419 { | |
420 if (!tl || !tl->pixbuf) return -1; | |
421 | |
422 gdk_pixbuf_render_pixmap_and_mask(tl->pixbuf, pixmap, mask, 128); | |
423 | |
424 return thumb_loader_get_space(tl); | |
425 } | |
426 #endif | |
427 | |
864 | 428 GdkPixbuf *thumb_loader_get_pixbuf(ThumbLoader *tl) |
9 | 429 { |
430 GdkPixbuf *pixbuf; | |
431 | |
432 if (tl && tl->standard_loader) | |
433 { | |
864 | 434 return thumb_loader_std_get_pixbuf((ThumbLoaderStd *)tl); |
9 | 435 } |
436 | |
845 | 437 if (tl && tl->fd && tl->fd->thumb_pixbuf) |
9 | 438 { |
845 | 439 pixbuf = tl->fd->thumb_pixbuf; |
9 | 440 g_object_ref(pixbuf); |
441 } | |
442 else | |
443 { | |
864 | 444 pixbuf = pixbuf_fallback(NULL, tl->max_w, tl->max_h); |
9 | 445 } |
446 | |
447 return pixbuf; | |
448 } | |
449 | |
450 #if 0 | |
451 gint thumb_loader_get_space(ThumbLoader *tl) | |
452 { | |
453 if (!tl) return 0; | |
454 | |
455 if (tl->pixbuf) return (tl->max_w - gdk_pixbuf_get_width(tl->pixbuf)); | |
456 | |
457 return tl->max_w; | |
458 } | |
459 #endif | |
460 | |
461 ThumbLoader *thumb_loader_new(gint width, gint height) | |
462 { | |
463 ThumbLoader *tl; | |
464 | |
1060 | 465 /* non-std thumb loader is more effective for configurations with disabled caching |
466 because it loads the thumbnails at the required size. loader_std loads | |
467 the thumbnails at the sizes appropriate for standard cache (typically 256x256 pixels) | |
468 and then performs one additional scaling */ | |
469 if (options->thumbnails.spec_standard && options->thumbnails.enable_caching) | |
9 | 470 { |
471 return (ThumbLoader *)thumb_loader_std_new(width, height); | |
472 } | |
473 | |
474 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
|
475 |
333 | 476 tl->cache_enable = options->thumbnails.enable_caching; |
9 | 477 tl->percent_done = 0.0; |
478 tl->max_w = width; | |
479 tl->max_h = height; | |
480 | |
481 return tl; | |
1 | 482 } |
483 | |
9 | 484 void thumb_loader_free(ThumbLoader *tl) |
485 { | |
486 if (!tl) return; | |
487 | |
488 if (tl->standard_loader) | |
489 { | |
490 thumb_loader_std_free((ThumbLoaderStd *)tl); | |
491 return; | |
492 } | |
493 | |
494 image_loader_free(tl->il); | |
838 | 495 file_data_unref(tl->fd); |
9 | 496 |
1523 | 497 if (tl->idle_done_id) g_source_remove(tl->idle_done_id); |
9 | 498 |
499 g_free(tl); | |
500 } | |
501 | |
502 #if 0 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
877
diff
changeset
|
503 gint thumb_from_xpm_d(const gchar **data, gint max_w, gint max_h, GdkPixmap **pixmap, GdkBitmap **mask) |
9 | 504 { |
505 GdkPixbuf *pixbuf; | |
506 gint w, h; | |
507 | |
508 pixbuf = gdk_pixbuf_new_from_xpm_data(data); | |
509 w = gdk_pixbuf_get_width(pixbuf); | |
510 h = gdk_pixbuf_get_height(pixbuf); | |
511 | |
864 | 512 if (pixbuf_scale_aspect(w, h, max_w, max_h, &w, &h)) |
9 | 513 { |
514 /* scale */ | |
515 GdkPixbuf *tmp; | |
516 | |
517 tmp = pixbuf; | |
518 pixbuf = gdk_pixbuf_scale_simple(tmp, w, h, GDK_INTERP_NEAREST); | |
519 gdk_pixbuf_unref(tmp); | |
520 } | |
521 | |
522 gdk_pixbuf_render_pixmap_and_mask(pixbuf, pixmap, mask, 128); | |
523 gdk_pixbuf_unref(pixbuf); | |
524 | |
525 return w; | |
526 } | |
527 #endif | |
528 | |
877 | 529 |
530 /* release thumb_pixbuf on file change - this forces reload. */ | |
531 void thumb_notify_cb(FileData *fd, NotifyType type, gpointer data) | |
532 { | |
1432 | 533 if ((type & (NOTIFY_REREAD | NOTIFY_CHANGE)) && fd->thumb_pixbuf) |
877 | 534 { |
1498 | 535 DEBUG_1("Notify thumb: %s %04x", fd->path, type); |
877 | 536 g_object_unref(fd->thumb_pixbuf); |
537 fd->thumb_pixbuf = NULL; | |
538 } | |
539 } | |
540 | |
541 | |
1 | 542 /* |
543 *----------------------------------------------------------------------------- | |
544 * xvpics thumbnail support, read-only (private) | |
545 *----------------------------------------------------------------------------- | |
546 */ | |
547 | |
548 /* | |
549 * xvpics code originally supplied by: | |
550 * "Diederen Damien" <D.Diederen@student.ulg.ac.be> | |
551 * | |
552 * Note: Code has been modified to fit the style of the other code, and to use | |
553 * a few more glib-isms. | |
9 | 554 * 08-28-2000: Updated to return a gdk_pixbuf, Imlib is dieing a death here. |
1 | 555 */ |
556 | |
557 #define XV_BUFFER 2048 | |
558 static guchar *load_xv_thumbnail(gchar *filename, gint *widthp, gint *heightp) | |
559 { | |
560 FILE *file; | |
561 gchar buffer[XV_BUFFER]; | |
1181 | 562 guchar *data = NULL; |
1 | 563 |
564 file = fopen(filename, "rt"); | |
855 | 565 if (!file) return NULL; |
1 | 566 |
1181 | 567 if (fgets(buffer, XV_BUFFER, file) != NULL |
568 && strncmp(buffer, "P7 332", 6) == 0) | |
1 | 569 { |
1181 | 570 gint width, height, depth; |
571 | |
572 while (fgets(buffer, XV_BUFFER, file) && buffer[0] == '#') /* do_nothing() */; | |
573 | |
574 if (sscanf(buffer, "%d %d %d", &width, &height, &depth) == 3) | |
575 { | |
576 gsize size = width * height; | |
577 | |
578 data = g_new(guchar, size); | |
579 if (data && fread(data, 1, size, file) == size) | |
580 { | |
581 *widthp = width; | |
582 *heightp = height; | |
583 } | |
584 } | |
1 | 585 } |
586 | |
587 fclose(file); | |
588 return data; | |
589 } | |
590 #undef XV_BUFFER | |
591 | |
9 | 592 static void free_rgb_buffer(guchar *pixels, gpointer data) |
593 { | |
594 g_free(pixels); | |
595 } | |
596 | |
597 static GdkPixbuf *get_xv_thumbnail(gchar *thumb_filename, gint max_w, gint max_h) | |
1 | 598 { |
599 gint width, height; | |
600 gchar *thumb_name; | |
715 | 601 gchar *path; |
602 gchar *directory; | |
603 gchar *name; | |
1 | 604 guchar *packed_data; |
605 | |
715 | 606 path = path_from_utf8(thumb_filename); |
607 directory = g_path_get_dirname(path); | |
608 name = g_path_get_basename(path); | |
609 | |
610 thumb_name = g_build_filename(directory, ".xvpics", name, NULL); | |
611 | |
612 g_free(name); | |
613 g_free(directory); | |
614 g_free(path); | |
1 | 615 |
616 packed_data = load_xv_thumbnail(thumb_name, &width, &height); | |
617 g_free(thumb_name); | |
618 | |
855 | 619 if (packed_data) |
1 | 620 { |
621 guchar *rgb_data; | |
9 | 622 GdkPixbuf *pixbuf; |
1 | 623 gint i; |
624 | |
625 rgb_data = g_new(guchar, width * height * 3); | |
517 | 626 for (i = 0; i < width * height; i++) |
1 | 627 { |
628 rgb_data[i * 3 + 0] = (packed_data[i] >> 5) * 36; | |
629 rgb_data[i * 3 + 1] = ((packed_data[i] & 28) >> 2) * 36; | |
630 rgb_data[i * 3 + 2] = (packed_data[i] & 3) * 85; | |
631 } | |
9 | 632 g_free(packed_data); |
1 | 633 |
9 | 634 pixbuf = gdk_pixbuf_new_from_data(rgb_data, GDK_COLORSPACE_RGB, FALSE, 8, |
635 width, height, 3 * width, free_rgb_buffer, NULL); | |
636 | |
864 | 637 if (pixbuf_scale_aspect(width, height, max_w, max_h, &width, &height)) |
9 | 638 { |
639 /* scale */ | |
640 GdkPixbuf *tmp; | |
641 | |
642 tmp = pixbuf; | |
643 pixbuf = gdk_pixbuf_scale_simple(tmp, width, height, GDK_INTERP_NEAREST); | |
1043 | 644 g_object_unref(tmp); |
9 | 645 } |
442 | 646 |
9 | 647 return pixbuf; |
1 | 648 } |
649 | |
9 | 650 return NULL; |
1 | 651 } |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1043
diff
changeset
|
652 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |