4 * Copyright (C) 2009 by ProFUSION embedded systems
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or (at your
9 * option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 * @author Rafael Antognolli <antognolli@profusion.mobi>
29 #elif defined __GNUC__
30 # define alloca __builtin_alloca
32 # define alloca __alloca
33 #elif defined _MSC_VER
35 # define alloca _alloca
41 void *alloca (size_t);
50 #include <sys/types.h>
57 # define PATH_MAX 4096
61 #include <eina_safety_checks.h>
64 #include <Ecore_Evas.h>
65 #include <Ecore_File.h>
69 #include "ethumb_private.h"
70 #include "Ethumb_Plugin.h"
73 static int _log_dom = -1;
74 #define DBG(...) EINA_LOG_DOM_DBG(_log_dom, __VA_ARGS__)
75 #define INF(...) EINA_LOG_DOM_INFO(_log_dom, __VA_ARGS__)
76 #define WRN(...) EINA_LOG_DOM_WARN(_log_dom, __VA_ARGS__)
77 #define ERR(...) EINA_LOG_DOM_ERR(_log_dom, __VA_ARGS__)
79 static int initcount = 0;
80 static const char *_home_thumb_dir = NULL;
81 static const char *_thumb_category_normal = NULL;
82 static const char *_thumb_category_large = NULL;
84 static const int THUMB_SIZE_NORMAL = 128;
85 static const int THUMB_SIZE_LARGE = 256;
87 static Eina_Hash *_plugins_ext = NULL;
88 static Eina_Array *_plugins = NULL;
91 _ethumb_plugin_list_cb(Eina_Module *m, void *data __UNUSED__)
95 Ethumb_Plugin *plugin;
96 Ethumb_Plugin *(*plugin_get)(void);
98 file = eina_module_file_get(m);
99 if (!eina_module_load(m))
101 ERR("could not load module \"%s\": %s",
102 file, eina_error_msg_get(eina_error_get()));
106 plugin_get = eina_module_symbol_get(m, "ethumb_plugin_get");
109 ERR("could not find ethumb_plugin_get() in module \"%s\": %s",
110 file, eina_error_msg_get(eina_error_get()));
111 eina_module_unload(m);
115 plugin = plugin_get();
118 ERR("plugin \"%s\" failed to init.", file);
119 eina_module_unload(m);
123 DBG("loaded plugin \"%s\" (%p) with extensions:", file, plugin);
124 for (ext = plugin->extensions; *ext; ext++)
126 DBG(" extension \"%s\"", *ext);
127 eina_hash_add(_plugins_ext, *ext, plugin);
134 _ethumb_plugins_load(void)
136 _plugins_ext = eina_hash_string_small_new(NULL);
137 EINA_SAFETY_ON_NULL_RETURN(_plugins_ext);
139 _plugins = eina_module_list_get(_plugins, PLUGINSDIR, 1,
140 &_ethumb_plugin_list_cb, NULL);
144 _ethumb_plugins_unload(void)
146 eina_hash_free(_plugins_ext);
148 eina_module_list_unload(_plugins);
149 eina_module_list_free(_plugins);
150 eina_array_free(_plugins);
165 fprintf(stderr, "ERROR: Could not initialize eina.\n");
168 _log_dom = eina_log_domain_register("ethumb", EINA_COLOR_GREEN);
171 EINA_LOG_ERR("Could not register log domain: ethumb");
181 home = getenv("HOME");
182 snprintf(buf, sizeof(buf), "%s/.thumbnails", home);
184 _home_thumb_dir = eina_stringshare_add(buf);
185 _thumb_category_normal = eina_stringshare_add("normal");
186 _thumb_category_large = eina_stringshare_add("large");
188 _ethumb_plugins_load();
193 ethumb_shutdown(void)
198 _ethumb_plugins_unload();
199 eina_stringshare_del(_home_thumb_dir);
200 eina_stringshare_del(_thumb_category_normal);
201 eina_stringshare_del(_thumb_category_large);
204 ecore_evas_shutdown();
206 eina_log_domain_unregister(_log_dom);
218 Ecore_Evas *ee, *sub_ee;
220 Evas_Object *o, *img;
222 ethumb = calloc(1, sizeof(Ethumb));
223 EINA_SAFETY_ON_NULL_RETURN_VAL(ethumb, NULL);
225 /* IF CHANGED, UPDATE DOCS in (Ethumb.c, Ethumb_Client.c, python...)!!! */
226 ethumb->tw = THUMB_SIZE_NORMAL;
227 ethumb->th = THUMB_SIZE_NORMAL;
228 ethumb->crop_x = 0.5;
229 ethumb->crop_y = 0.5;
230 ethumb->quality = 80;
231 ethumb->compress = 9;
232 ethumb->video.start = 0.1;
233 ethumb->video.time = 3;
234 ethumb->video.interval = 0.05;
235 ethumb->video.ntimes = 3;
236 ethumb->video.fps = 10;
238 ee = ecore_evas_buffer_new(1, 1);
239 e = ecore_evas_get(ee);
242 ERR("could not create ecore evas buffer");
246 evas_image_cache_set(e, 0);
247 evas_font_cache_set(e, 0);
249 o = ecore_evas_object_image_new(ee);
252 ERR("could not create sub ecore evas buffer");
258 sub_ee = evas_object_data_get(o, "Ecore_Evas");
259 sub_e = ecore_evas_get(sub_ee);
261 evas_image_cache_set(sub_e, 0);
262 evas_font_cache_set(sub_e, 0);
264 img = evas_object_image_add(sub_e);
267 ERR("could not create source objects.");
275 ethumb->sub_ee = sub_ee;
276 ethumb->sub_e = sub_e;
280 DBG("ethumb=%p", ethumb);
286 _ethumb_frame_free(Ethumb_Frame *frame)
293 if (frame->swallow && frame->edje)
295 o = edje_object_part_swallow_get(frame->edje, frame->swallow);
297 edje_object_part_unswallow(frame->edje, o);
299 eina_stringshare_del(frame->file);
300 eina_stringshare_del(frame->group);
301 eina_stringshare_del(frame->swallow);
304 evas_object_del(frame->edje);
310 ethumb_free(Ethumb *ethumb)
312 EINA_SAFETY_ON_NULL_RETURN(ethumb);
314 DBG("ethumb=%p", ethumb);
317 _ethumb_frame_free(ethumb->frame);
318 ethumb_file_free(ethumb);
319 ecore_evas_free(ethumb->ee);
320 eina_stringshare_del(ethumb->thumb_dir);
321 eina_stringshare_del(ethumb->category);
322 if (ethumb->finished_idler)
323 ecore_idler_del(ethumb->finished_idler);
328 ethumb_thumb_fdo_set(Ethumb *e, Ethumb_Thumb_FDO_Size s)
330 EINA_SAFETY_ON_NULL_RETURN(e);
331 EINA_SAFETY_ON_FALSE_RETURN(s == ETHUMB_THUMB_NORMAL ||
332 s == ETHUMB_THUMB_LARGE);
333 DBG("ethumb=%p, size=%d", e, s);
335 if (s == ETHUMB_THUMB_NORMAL)
337 e->tw = THUMB_SIZE_NORMAL;
338 e->th = THUMB_SIZE_NORMAL;
342 e->tw = THUMB_SIZE_LARGE;
343 e->th = THUMB_SIZE_LARGE;
346 e->format = ETHUMB_THUMB_FDO;
347 e->aspect = ETHUMB_THUMB_KEEP_ASPECT;
348 _ethumb_frame_free(e->frame);
350 eina_stringshare_del(e->thumb_dir);
351 eina_stringshare_del(e->category);
357 ethumb_thumb_size_set(Ethumb *e, int tw, int th)
359 EINA_SAFETY_ON_NULL_RETURN(e);
360 EINA_SAFETY_ON_FALSE_RETURN(tw > 0);
361 EINA_SAFETY_ON_FALSE_RETURN(th > 0);
363 DBG("ethumb=%p, w=%d, h=%d", e, tw, th);
369 ethumb_thumb_size_get(const Ethumb *e, int *tw, int *th)
371 EINA_SAFETY_ON_NULL_RETURN(e);
378 ethumb_thumb_format_set(Ethumb *e, Ethumb_Thumb_Format f)
380 EINA_SAFETY_ON_NULL_RETURN(e);
381 EINA_SAFETY_ON_FALSE_RETURN(f == ETHUMB_THUMB_FDO ||
382 f == ETHUMB_THUMB_JPEG ||
383 f == ETHUMB_THUMB_EET);
385 DBG("ethumb=%p, format=%d", e, f);
389 EAPI Ethumb_Thumb_Format
390 ethumb_thumb_format_get(const Ethumb *e)
392 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
397 ethumb_thumb_aspect_set(Ethumb *e, Ethumb_Thumb_Aspect a)
399 EINA_SAFETY_ON_NULL_RETURN(e);
400 EINA_SAFETY_ON_FALSE_RETURN(a == ETHUMB_THUMB_KEEP_ASPECT ||
401 a == ETHUMB_THUMB_IGNORE_ASPECT ||
402 a == ETHUMB_THUMB_CROP);
404 DBG("ethumb=%p, aspect=%d", e, a);
408 EAPI Ethumb_Thumb_Aspect
409 ethumb_thumb_aspect_get(const Ethumb *e)
411 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
416 ethumb_thumb_crop_align_set(Ethumb *e, float x, float y)
418 EINA_SAFETY_ON_NULL_RETURN(e);
420 DBG("ethumb=%p, x=%f, y=%f", e, x, y);
426 ethumb_thumb_crop_align_get(const Ethumb *e, float *x, float *y)
428 EINA_SAFETY_ON_NULL_RETURN(e);
430 if (x) *x = e->crop_x;
431 if (y) *y = e->crop_y;
435 ethumb_thumb_quality_set(Ethumb *e, int quality)
437 EINA_SAFETY_ON_NULL_RETURN(e);
439 DBG("ethumb=%p, quality=%d", e, quality);
440 e->quality = quality;
444 ethumb_thumb_quality_get(const Ethumb *e)
446 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
451 ethumb_thumb_compress_set(Ethumb *e, int compress)
453 EINA_SAFETY_ON_NULL_RETURN(e);
455 DBG("ethumb=%p, compress=%d", e, compress);
456 e->compress = compress;
460 ethumb_thumb_compress_get(const Ethumb *e)
462 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
467 ethumb_frame_set(Ethumb *e, const char *theme_file, const char *group, const char *swallow)
469 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
474 DBG("ethumb=%p, theme_file=%s, group=%s, swallow=%s",
475 e, theme_file ? theme_file : "", group ? group : "",
476 swallow ? swallow : "");
480 edje_object_part_unswallow(frame->edje, e->img);
482 _ethumb_frame_free(frame);
493 frame = calloc(1, sizeof(Ethumb_Frame));
496 ERR("could not allocate Ethumb_Frame structure.");
500 frame->edje = edje_object_add(e->sub_e);
503 ERR("could not create edje frame object.");
504 _ethumb_frame_free(frame);
510 if (!edje_object_file_set(frame->edje, theme_file, group))
512 ERR("could not load frame theme.");
513 _ethumb_frame_free(frame);
518 edje_object_part_swallow(frame->edje, swallow, e->img);
519 if (!edje_object_part_swallow_get(frame->edje, swallow))
521 ERR("could not swallow image to edje frame.");
522 _ethumb_frame_free(frame);
527 eina_stringshare_replace(&frame->file, theme_file);
528 eina_stringshare_replace(&frame->group, group);
529 eina_stringshare_replace(&frame->swallow, swallow);
537 ethumb_frame_get(const Ethumb *e, const char **theme_file, const char **group, const char **swallow)
539 EINA_SAFETY_ON_NULL_RETURN(e);
543 if (theme_file) *theme_file = e->frame->file;
544 if (group) *group = e->frame->group;
545 if (swallow) *swallow = e->frame->swallow;
549 if (theme_file) *theme_file = NULL;
550 if (group) *group = NULL;
551 if (swallow) *swallow = NULL;
556 _ethumb_build_absolute_path(const char *path, char buf[PATH_MAX])
568 else if (path[0] == '~')
570 const char *home = getenv("HOME");
582 if (!getcwd(p, PATH_MAX))
595 ethumb_thumb_dir_path_set(Ethumb *e, const char *path)
598 EINA_SAFETY_ON_NULL_RETURN(e);
600 DBG("ethumb=%p, path=%s", e, path ? path : "");
601 path = _ethumb_build_absolute_path(path, buf);
602 eina_stringshare_replace(&e->thumb_dir, path);
606 ethumb_thumb_dir_path_get(const Ethumb *e)
608 EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL);
614 ethumb_thumb_category_set(Ethumb *e, const char *category)
616 EINA_SAFETY_ON_NULL_RETURN(e);
618 DBG("ethumb=%p, category=%s", e, category ? category : "");
619 eina_stringshare_replace(&e->category, category);
623 ethumb_thumb_category_get(const Ethumb *e)
625 EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL);
631 ethumb_video_start_set(Ethumb *e, float start)
633 EINA_SAFETY_ON_NULL_RETURN(e);
634 EINA_SAFETY_ON_FALSE_RETURN(start >= 0.0);
635 EINA_SAFETY_ON_FALSE_RETURN(start <= 1.0);
637 DBG("ethumb=%p, video_start=%f", e, start);
638 e->video.start = start;
642 ethumb_video_start_get(const Ethumb *e)
644 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
646 return e->video.start;
650 ethumb_video_time_set(Ethumb *e, float time)
652 EINA_SAFETY_ON_NULL_RETURN(e);
654 DBG("ethumb=%p, video_start=%f", e, time);
655 e->video.time = time;
659 ethumb_video_time_get(const Ethumb *e)
661 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
663 return e->video.time;
667 ethumb_video_interval_set(Ethumb *e, float interval)
669 EINA_SAFETY_ON_NULL_RETURN(e);
671 DBG("ethumb=%p, video_interval=%f", e, interval);
672 e->video.interval = interval;
676 ethumb_video_interval_get(const Ethumb *e)
678 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
680 return e->video.interval;
684 ethumb_video_ntimes_set(Ethumb *e, unsigned int ntimes)
686 EINA_SAFETY_ON_NULL_RETURN(e);
687 EINA_SAFETY_ON_FALSE_RETURN(ntimes > 0);
689 DBG("ethumb=%p, video_ntimes=%d", e, ntimes);
690 e->video.ntimes = ntimes;
694 ethumb_video_ntimes_get(const Ethumb *e)
696 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
698 return e->video.ntimes;
702 ethumb_video_fps_set(Ethumb *e, unsigned int fps)
704 EINA_SAFETY_ON_NULL_RETURN(e);
705 EINA_SAFETY_ON_FALSE_RETURN(fps > 0);
707 DBG("ethumb=%p, video_fps=%d", e, fps);
712 ethumb_video_fps_get(const Ethumb *e)
714 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
720 ethumb_document_page_set(Ethumb *e, unsigned int page)
722 EINA_SAFETY_ON_NULL_RETURN(e);
724 DBG("ethumb=%p, document_page=%d", e, page);
725 e->document.page = page;
729 ethumb_document_page_get(const Ethumb *e)
731 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
733 return e->document.page;
737 ethumb_file_set(Ethumb *e, const char *path, const char *key)
740 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
742 DBG("ethumb=%p, path=%s, key=%s", e, path ? path : "", key ? key : "");
743 if (path && access(path, R_OK))
745 ERR("couldn't access file \"%s\"", path);
749 path = _ethumb_build_absolute_path(path, buf);
750 eina_stringshare_replace(&e->src_path, path);
751 eina_stringshare_replace(&e->src_key, key);
752 eina_stringshare_replace(&e->thumb_path, NULL);
753 eina_stringshare_replace(&e->thumb_key, NULL);
759 ethumb_file_get(const Ethumb *e, const char **path, const char **key)
761 EINA_SAFETY_ON_NULL_RETURN(e);
763 if (path) *path = e->src_path;
764 if (key) *key = e->src_key;
767 static const char ACCEPTABLE_URI_CHARS[96] = {
768 /* ! " # $ % & ' ( ) * + , - . / */
769 0x00,0x3F,0x20,0x20,0x28,0x00,0x2C,0x3F,0x3F,0x3F,0x3F,0x2A,0x28,0x3F,0x3F,0x1C,
770 /* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
771 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x38,0x20,0x20,0x2C,0x20,0x20,
772 /* @ A B C D E F G H I J K L M N O */
773 0x38,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
774 /* P Q R S T U V W X Y Z [ \ ] ^ _ */
775 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x20,0x20,0x20,0x20,0x3F,
776 /* ` a b c d e f g h i j k l m n o */
777 0x20,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
778 /* p q r s t u v w x y z { | } ~ DEL */
779 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x20,0x20,0x20,0x3F,0x20
783 _ethumb_generate_hash(const char *file)
787 char md5out[(2 * MD5_HASHBYTES) + 1];
788 unsigned char hash[MD5_HASHBYTES];
789 static const char hex[] = "0123456789abcdef";
793 const unsigned char *c;
795 #define _check_uri_char(c) \
796 ((c) >= 32 && (c) < 128 && (ACCEPTABLE_URI_CHARS[(c) - 32] & 0x08))
798 EINA_SAFETY_ON_NULL_RETURN_VAL(file, NULL);
800 uri = alloca(3 * strlen(file) + 9);
801 memcpy(uri, "file://", sizeof("file://") - 1);
802 t = uri + sizeof("file://") - 1;
804 for (c = (const unsigned char *)file; *c != '\0'; c++)
806 if (!_check_uri_char(*c))
817 #undef _check_uri_char
820 MD5Update (&ctx, (unsigned char const*)uri, (unsigned)strlen (uri));
821 MD5Final (hash, &ctx);
823 for (n = 0; n < MD5_HASHBYTES; n++)
825 md5out[2 * n] = hex[hash[n] >> 4];
826 md5out[2 * n + 1] = hex[hash[n] & 0x0f];
828 md5out[2 * n] = '\0';
830 DBG("md5=%s, file=%s", md5out, file);
831 return eina_stringshare_add(md5out);
835 _ethumb_file_check_fdo(Ethumb *e)
837 if (!((e->tw == THUMB_SIZE_NORMAL && e->th == THUMB_SIZE_NORMAL) ||
838 (e->tw == THUMB_SIZE_LARGE && e->th == THUMB_SIZE_LARGE)))
841 if (e->format != ETHUMB_THUMB_FDO)
844 if (e->aspect != ETHUMB_THUMB_KEEP_ASPECT)
854 _ethumb_file_generate_custom_category(Ethumb *e)
857 const char *aspect, *format;
860 if (e->aspect == ETHUMB_THUMB_KEEP_ASPECT)
861 aspect = "keep_aspect";
862 else if (e->aspect == ETHUMB_THUMB_IGNORE_ASPECT)
863 aspect = "ignore_aspect";
867 if (e->format == ETHUMB_THUMB_FDO)
869 else if (e->format == ETHUMB_THUMB_JPEG)
879 snprintf(buf, sizeof(buf), "%dx%d-%s%s-%s",
880 e->tw, e->th, aspect, frame, format);
882 return eina_stringshare_add(buf);
886 _ethumb_file_generate_path(Ethumb *e)
891 const char *thumb_dir, *category;
896 fdo_format = _ethumb_file_check_fdo(e);
899 thumb_dir = eina_stringshare_ref(e->thumb_dir);
901 thumb_dir = eina_stringshare_ref(_home_thumb_dir);
904 category = eina_stringshare_ref(e->category);
905 else if (!fdo_format)
906 category = _ethumb_file_generate_custom_category(e);
909 if (e->tw == THUMB_SIZE_NORMAL)
910 category = eina_stringshare_ref(_thumb_category_normal);
911 else if (e->tw == THUMB_SIZE_LARGE)
912 category = eina_stringshare_ref(_thumb_category_large);
915 if (e->format == ETHUMB_THUMB_FDO)
917 else if (e->format == ETHUMB_THUMB_JPEG)
923 fullname = ecore_file_realpath(e->src_path);
924 hash = _ethumb_generate_hash(fullname);
925 snprintf(buf, sizeof(buf), "%s/%s/%s.%s", thumb_dir, category, hash, ext);
927 DBG("ethumb=%p, path=%s", e, buf);
928 eina_stringshare_replace(&e->thumb_path, buf);
929 if (e->format == ETHUMB_THUMB_EET)
930 eina_stringshare_replace(&e->thumb_key, "thumbnail");
933 eina_stringshare_del(e->thumb_key);
937 eina_stringshare_del(thumb_dir);
938 eina_stringshare_del(category);
939 eina_stringshare_del(hash);
943 ethumb_file_free(Ethumb *e)
945 EINA_SAFETY_ON_NULL_RETURN(e);
948 eina_stringshare_replace(&e->src_path, NULL);
949 eina_stringshare_replace(&e->src_key, NULL);
950 eina_stringshare_replace(&e->thumb_path, NULL);
951 eina_stringshare_replace(&e->thumb_key, NULL);
955 ethumb_thumb_path_set(Ethumb *e, const char *path, const char *key)
959 EINA_SAFETY_ON_NULL_RETURN(e);
960 DBG("ethumb=%p, path=%s, key=%s", e, path ? path : "", key ? key : "");
964 eina_stringshare_replace(&e->thumb_path, NULL);
965 eina_stringshare_replace(&e->thumb_key, NULL);
969 path = _ethumb_build_absolute_path(path, buf);
970 eina_stringshare_replace(&e->thumb_path, path);
971 eina_stringshare_replace(&e->thumb_key, key);
976 ethumb_thumb_path_get(Ethumb *e, const char **path, const char **key)
978 EINA_SAFETY_ON_NULL_RETURN(e);
980 _ethumb_file_generate_path(e);
982 if (path) *path = e->thumb_path;
983 if (key) *key = e->thumb_key;
987 ethumb_calculate_aspect_from_ratio(Ethumb *e, float ia, int *w, int *h)
997 a = e->tw / (float)e->th;
999 if (e->aspect == ETHUMB_THUMB_KEEP_ASPECT)
1001 if ((ia > a && e->tw > 0) || e->th <= 0)
1009 ethumb_calculate_aspect(Ethumb *e, int iw, int ih, int *w, int *h)
1013 ia = iw / (float)ih;
1015 ethumb_calculate_aspect_from_ratio(e, ia, w, h);
1019 ethumb_calculate_fill_from_ratio(Ethumb *e, float ia, int *fx, int *fy, int *fw, int *fh)
1031 a = e->tw / (float)e->th;
1033 if (e->aspect == ETHUMB_THUMB_CROP)
1035 if ((ia > a && e->tw > 0) || e->th <= 0)
1040 *fx = - e->crop_x * (*fw - e->tw);
1041 *fy = - e->crop_y * (*fh - e->th);
1043 else if (e->aspect == ETHUMB_THUMB_KEEP_ASPECT)
1045 if ((ia > a && e->tw > 0) || e->th <= 0)
1053 ethumb_calculate_fill(Ethumb *e, int iw, int ih, int *fx, int *fy, int *fw, int *fh)
1056 ia = iw / (float)ih;
1058 ethumb_calculate_fill_from_ratio(e, ia, fx, fy, fw, fh);
1062 _ethumb_plugin_generate(Ethumb *e)
1066 Ethumb_Plugin *plugin;
1069 extp = strrchr(e->src_path, '.');
1072 ERR("could not get extension for file \"%s\"", e->src_path);
1076 for (i = 0; extp[i] != '\0'; i++)
1077 ext[i] = tolower(extp[i + 1]);
1079 plugin = eina_hash_find(_plugins_ext, ext);
1082 DBG("no plugin for extension: \"%s\"", ext);
1087 evas_object_hide(e->frame->edje);
1089 evas_object_hide(e->img);
1091 plugin->generate_thumb(e);
1097 ethumb_plugin_image_resize(Ethumb *e, int w, int h)
1105 edje_extern_object_min_size_set(img, w, h);
1106 edje_extern_object_max_size_set(img, w, h);
1107 edje_object_calc_force(e->frame->edje);
1108 evas_object_move(e->frame->edje, 0, 0);
1109 evas_object_resize(e->frame->edje, w, h);
1113 evas_object_move(img, 0, 0);
1114 evas_object_resize(img, w, h);
1117 evas_object_image_size_set(e->o, w, h);
1118 ecore_evas_resize(e->sub_ee, w, h);
1127 ethumb_image_save(Ethumb *e)
1133 evas_damage_rectangle_add(e->sub_e, 0, 0, e->rw, e->rh);
1134 evas_render(e->sub_e);
1137 _ethumb_file_generate_path(e);
1141 ERR("could not create file path...");
1145 dname = ecore_file_dir_get(e->thumb_path);
1146 r = ecore_file_mkpath(dname);
1150 ERR("could not create directory '%s'", dname);
1154 snprintf(flags, sizeof(flags), "quality=%d compress=%d",
1155 e->quality, e->compress);
1156 r = evas_object_image_save(e->o, e->thumb_path, e->thumb_key, flags);
1160 ERR("could not save image: path=%s, key=%s", e->thumb_path,
1169 _ethumb_image_load(Ethumb *e)
1172 Evas_Coord w, h, ww, hh, fx, fy, fw, fh;
1178 evas_object_hide(e->frame->edje);
1180 evas_object_hide(img);
1181 evas_object_image_file_set(img, NULL, NULL);
1182 evas_object_image_load_size_set(img, e->tw, e->th);
1183 evas_object_image_file_set(img, e->src_path, e->src_key);
1186 evas_object_show(e->frame->edje);
1188 evas_object_show(img);
1190 error = evas_object_image_load_error_get(img);
1191 if (error != EVAS_LOAD_ERROR_NONE)
1193 ERR("could not load image '%s': %d", e->src_path, error);
1197 evas_object_image_size_get(img, &w, &h);
1198 if ((w <= 0) || (h <= 0))
1201 ethumb_calculate_aspect(e, w, h, &ww, &hh);
1205 edje_extern_object_min_size_set(img, ww, hh);
1206 edje_extern_object_max_size_set(img, ww, hh);
1207 edje_object_calc_force(e->frame->edje);
1208 evas_object_move(e->frame->edje, 0, 0);
1209 evas_object_resize(e->frame->edje, ww, hh);
1213 evas_object_move(img, 0, 0);
1214 evas_object_resize(img, ww, hh);
1217 ethumb_calculate_fill(e, w, h, &fx, &fy, &fw, &fh);
1218 evas_object_image_fill_set(img, fx, fy, fw, fh);
1220 evas_object_image_size_set(e->o, ww, hh);
1221 ecore_evas_resize(e->sub_ee, ww, hh);
1230 _ethumb_finished_idler_cb(void *data)
1234 e->finished_cb(e->cb_data, e, e->cb_result);
1235 if (e->cb_data_free)
1236 e->cb_data_free(e->cb_data);
1237 e->finished_idler = NULL;
1238 e->finished_cb = NULL;
1240 e->cb_data_free = NULL;
1246 ethumb_finished_callback_call(Ethumb *e, int result)
1248 EINA_SAFETY_ON_NULL_RETURN(e);
1250 e->cb_result = result;
1251 if (e->finished_idler)
1252 ecore_idler_del(e->finished_idler);
1253 e->finished_idler = ecore_idler_add(_ethumb_finished_idler_cb, e);
1257 ethumb_generate(Ethumb *e, Ethumb_Generate_Cb finished_cb, const void *data, Eina_Free_Cb free_data)
1261 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
1262 EINA_SAFETY_ON_NULL_RETURN_VAL(finished_cb, 0);
1263 DBG("ethumb=%p, finished_cb=%p, data=%p, free_data=%p, path=%s, key=%s",
1264 e, finished_cb, data, free_data,
1265 e->src_path ? e->src_path : "", e->src_key ? e->src_key : "");
1267 if (e->finished_idler)
1269 ERR("thumbnail generation already in progress.");
1272 e->finished_cb = finished_cb;
1273 e->cb_data = (void *)data;
1274 e->cb_data_free = free_data;
1278 ERR("no file set.");
1279 ethumb_finished_callback_call(e, 0);
1283 r = _ethumb_plugin_generate(e);
1287 if (!_ethumb_image_load(e))
1289 ERR("could not load input image.");
1290 ethumb_finished_callback_call(e, 0);
1294 r = ethumb_image_save(e);
1296 ethumb_finished_callback_call(e, r);
1302 ethumb_exists(Ethumb *e)
1304 struct stat thumb, src;
1306 Eina_Bool r = EINA_FALSE;
1308 EINA_SAFETY_ON_NULL_RETURN_VAL(e, 0);
1309 EINA_SAFETY_ON_NULL_RETURN_VAL(e->src_path, 0);
1310 DBG("ethumb=%p, path=%s", e, e->src_path ? e->src_path : "");
1313 _ethumb_file_generate_path(e);
1315 EINA_SAFETY_ON_NULL_RETURN_VAL(e->thumb_path, 0);
1317 r_thumb = stat(e->thumb_path, &thumb);
1318 r_src = stat(e->src_path, &src);
1320 EINA_SAFETY_ON_TRUE_RETURN_VAL(r_src, 0);
1322 if (r_thumb && errno != ENOENT)
1323 ERR("could not access file \"%s\": %s", e->thumb_path, strerror(errno));
1324 else if (!r_thumb && thumb.st_mtime > src.st_mtime)
1331 ethumb_evas_get(const Ethumb *e)
1333 EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL);
1339 ethumb_ecore_evas_get(const Ethumb *e)
1341 EINA_SAFETY_ON_NULL_RETURN_VAL(e, NULL);