|
|
|
#include "ephoto.h"
|
|
|
|
|
|
|
|
/* Taken from Enlightenment's Internal Thumbnailer */
|
|
|
|
|
|
|
|
typedef struct _E_Thumb E_Thumb;
|
|
|
|
|
|
|
|
struct _E_Thumb
|
|
|
|
{
|
|
|
|
int objid;
|
|
|
|
int w, h;
|
|
|
|
const char *file;
|
|
|
|
const char *key;
|
|
|
|
char *sort_id;
|
|
|
|
unsigned char queued : 1;
|
|
|
|
unsigned char busy : 1;
|
|
|
|
unsigned char done : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* local subsystem functions */
|
|
|
|
static void _e_thumb_gen_begin(int objid, const char *file, const char *key, int w, int h);
|
|
|
|
static void _e_thumb_gen_end(int objid);
|
|
|
|
static void _e_thumb_del_hook(void *data, Evas *e, Evas_Object *obj, void *event_info);
|
|
|
|
static void _e_thumb_hash_add(int objid, Evas_Object *obj);
|
|
|
|
static void _e_thumb_hash_del(int objid);
|
|
|
|
static Evas_Object *_e_thumb_hash_find(int objid);
|
|
|
|
static void _e_thumb_thumbnailers_kill(void);
|
|
|
|
static void _e_thumb_thumbnailers_kill_cancel(void);
|
|
|
|
static Eina_Bool _e_thumb_cb_kill(void *data);
|
|
|
|
static Eina_Bool _e_thumb_cb_exe_event_del(void *data, int type, void *event);
|
|
|
|
|
|
|
|
/* local subsystem globals */
|
|
|
|
static Eina_List *_thumbnailers = NULL;
|
|
|
|
static Eina_List *_thumbnailers_exe = NULL;
|
|
|
|
static Eina_List *_thumb_queue = NULL;
|
|
|
|
static int _objid = 0;
|
|
|
|
static Eina_Hash *_thumbs = NULL;
|
|
|
|
static int _pending = 0;
|
|
|
|
static int _num_thumbnailers = 1;
|
|
|
|
static Ecore_Event_Handler *_exe_del_handler = NULL;
|
|
|
|
static Ecore_Timer *_kill_timer = NULL;
|
|
|
|
|
|
|
|
/* externally accessible functions */
|
|
|
|
int
|
|
|
|
e_thumb_init(void)
|
|
|
|
{
|
|
|
|
_exe_del_handler = ecore_event_handler_add(ECORE_EXE_EVENT_DEL,
|
|
|
|
_e_thumb_cb_exe_event_del,
|
|
|
|
NULL);
|
|
|
|
_thumbs = eina_hash_string_superfast_new(NULL);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
e_thumb_shutdown(void)
|
|
|
|
{
|
|
|
|
Ecore_Exe *exe_free;
|
|
|
|
|
|
|
|
_e_thumb_thumbnailers_kill_cancel();
|
|
|
|
_e_thumb_cb_kill(NULL);
|
|
|
|
if (_exe_del_handler) ecore_event_handler_del(_exe_del_handler);
|
|
|
|
_exe_del_handler = NULL;
|
|
|
|
_thumbnailers = eina_list_free(_thumbnailers);
|
|
|
|
EINA_LIST_FREE(_thumbnailers_exe, exe_free)
|
|
|
|
ecore_exe_free(exe_free);
|
|
|
|
_thumb_queue = eina_list_free(_thumb_queue);
|
|
|
|
_objid = 0;
|
|
|
|
eina_hash_free(_thumbs);
|
|
|
|
_thumbs = NULL;
|
|
|
|
_pending = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_thumb_preloaded(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED)
|
|
|
|
{
|
|
|
|
evas_object_smart_callback_call(data, "e_thumb_gen", NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
Evas_Object *
|
|
|
|
e_thumb_icon_add(Evas *evas, Eina_Bool aspect)
|
|
|
|
{
|
|
|
|
Evas_Object *obj;
|
|
|
|
E_Thumb *eth;
|
|
|
|
|
|
|
|
obj = elm_icon_add(evas);
|
|
|
|
if (aspect)
|
|
|
|
elm_image_fill_outside_set(obj, EINA_FALSE);
|
|
|
|
else
|
|
|
|
elm_image_fill_outside_set(obj, EINA_TRUE);
|
|
|
|
evas_object_smart_callback_add(obj, "preloaded", _thumb_preloaded, obj);
|
|
|
|
_objid++;
|
|
|
|
eth = calloc(1, sizeof(E_Thumb));
|
|
|
|
eth->objid = _objid;
|
|
|
|
eth->w = 64;
|
|
|
|
eth->h = 64;
|
|
|
|
evas_object_data_set(obj, "e_thumbdata", eth);
|
|
|
|
evas_object_event_callback_add(obj, EVAS_CALLBACK_FREE,
|
|
|
|
_e_thumb_del_hook, NULL);
|
|
|
|
_e_thumb_hash_add(eth->objid, obj);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_icon_file_set(Evas_Object *obj, const char *file, const char *key)
|
|
|
|
{
|
|
|
|
E_Thumb *eth;
|
|
|
|
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return;
|
|
|
|
eina_stringshare_replace(ð->file, file);
|
|
|
|
eina_stringshare_replace(ð->key, key);
|
|
|
|
free(eth->sort_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_icon_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
|
|
|
|
{
|
|
|
|
E_Thumb *eth;
|
|
|
|
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return;
|
|
|
|
if ((w < 1) || (h < 1)) return;
|
|
|
|
eth->w = w;
|
|
|
|
eth->h = h;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_icon_begin(Evas_Object *obj)
|
|
|
|
{
|
|
|
|
E_Thumb *eth, *eth2;
|
|
|
|
char buf[4096];
|
|
|
|
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return;
|
|
|
|
if (eth->queued) return;
|
|
|
|
if (eth->busy) return;
|
|
|
|
if (eth->done) return;
|
|
|
|
if (!eth->file) return;
|
|
|
|
if (!_thumbnailers)
|
|
|
|
{
|
|
|
|
while ((int)eina_list_count(_thumbnailers_exe) < _num_thumbnailers)
|
|
|
|
{
|
|
|
|
Ecore_Exe *exe;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s/ephoto_thumbnail --nice=1", PACKAGE_LIB_DIR);
|
|
|
|
exe = ecore_exe_run(buf, NULL);
|
|
|
|
_thumbnailers_exe = eina_list_append(_thumbnailers_exe, exe);
|
|
|
|
}
|
|
|
|
_thumb_queue = eina_list_append(_thumb_queue, eth);
|
|
|
|
eth->queued = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EINA_LIST_FREE(_thumb_queue, eth2)
|
|
|
|
{
|
|
|
|
eth2->queued = 0;
|
|
|
|
eth2->busy = 1;
|
|
|
|
_pending++;
|
|
|
|
if (_pending == 1) _e_thumb_thumbnailers_kill_cancel();
|
|
|
|
_e_thumb_gen_begin(eth2->objid, eth2->file, eth2->key, eth2->w, eth2->h);
|
|
|
|
}
|
|
|
|
eth->busy = 1;
|
|
|
|
_pending++;
|
|
|
|
if (_pending == 1) _e_thumb_thumbnailers_kill_cancel();
|
|
|
|
_e_thumb_gen_begin(eth->objid, eth->file, eth->key, eth->w, eth->h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_icon_end(Evas_Object *obj)
|
|
|
|
{
|
|
|
|
E_Thumb *eth;
|
|
|
|
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return;
|
|
|
|
if (eth->queued)
|
|
|
|
{
|
|
|
|
_thumb_queue = eina_list_remove(_thumb_queue, eth);
|
|
|
|
eth->queued = 0;
|
|
|
|
}
|
|
|
|
if (eth->busy)
|
|
|
|
{
|
|
|
|
_e_thumb_gen_end(eth->objid);
|
|
|
|
eth->busy = 0;
|
|
|
|
_pending--;
|
|
|
|
if (_pending == 0) _e_thumb_thumbnailers_kill();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_icon_rethumb(Evas_Object *obj)
|
|
|
|
{
|
|
|
|
E_Thumb *eth;
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return;
|
|
|
|
|
|
|
|
if (eth->done) eth->done = 0;
|
|
|
|
else e_thumb_icon_end(obj);
|
|
|
|
|
|
|
|
e_thumb_icon_begin(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define A(v) (((v) >> 24) & 0xff)
|
|
|
|
#define R(v) (((v) >> 16) & 0xff)
|
|
|
|
#define G(v) (((v) >> 8) & 0xff)
|
|
|
|
#define B(v) (((v)) & 0xff)
|
|
|
|
#define PIX(p, x, y) p[((y) << 2) + (x)]
|
|
|
|
#define PIX2(p, x, y) p[((y) << 1) + (x)]
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_key_load(E_Thumb *eth, const char *icon)
|
|
|
|
{
|
|
|
|
Eet_File *ef;
|
|
|
|
int size = 0;
|
|
|
|
|
|
|
|
ef = eet_open(icon, EET_FILE_MODE_READ);
|
|
|
|
if (!ef) return;
|
|
|
|
eth->sort_id = eet_read(ef, "/thumbnail/sort_id", &size);
|
|
|
|
if (eth->sort_id)
|
|
|
|
{
|
|
|
|
if (size > 0) eth->sort_id[size - 1] = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
free(eth->sort_id);
|
|
|
|
eth->sort_id = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eet_close(ef);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
e_thumb_sort_id_get(Evas_Object *obj)
|
|
|
|
{
|
|
|
|
E_Thumb *eth;
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return "";
|
|
|
|
if (!eth->sort_id) return "";
|
|
|
|
return eth->sort_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_client_data(Ecore_Ipc_Event_Client_Data *e)
|
|
|
|
{
|
|
|
|
int objid;
|
|
|
|
char *icon;
|
|
|
|
E_Thumb *eth;
|
|
|
|
Evas_Object *obj;
|
|
|
|
|
|
|
|
if (!eina_list_data_find(_thumbnailers, e->client))
|
|
|
|
_thumbnailers = eina_list_prepend(_thumbnailers, e->client);
|
|
|
|
if (e->minor == 2)
|
|
|
|
{
|
|
|
|
objid = e->ref;
|
|
|
|
icon = e->data;
|
|
|
|
if ((icon) && (e->size > 1) && (icon[e->size - 1] == 0))
|
|
|
|
{
|
|
|
|
obj = _e_thumb_hash_find(objid);
|
|
|
|
if (obj)
|
|
|
|
{
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (eth)
|
|
|
|
{
|
|
|
|
eth->busy = 0;
|
|
|
|
_pending--;
|
|
|
|
eth->done = 1;
|
|
|
|
if (_pending == 0) _e_thumb_thumbnailers_kill();
|
|
|
|
if (ecore_file_exists(icon))
|
|
|
|
{
|
|
|
|
elm_image_file_set(obj, icon, "/thumbnail/data");
|
|
|
|
_e_thumb_key_load(eth, icon);
|
|
|
|
elm_image_preload_disabled_set(obj, EINA_FALSE);
|
|
|
|
}
|
|
|
|
evas_object_smart_callback_call(obj, "e_thumb_gen", NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (e->minor == 1)
|
|
|
|
{
|
|
|
|
/* hello message */
|
|
|
|
EINA_LIST_FREE(_thumb_queue, eth)
|
|
|
|
{
|
|
|
|
eth->queued = 0;
|
|
|
|
eth->busy = 1;
|
|
|
|
_pending++;
|
|
|
|
if (_pending == 1) _e_thumb_thumbnailers_kill_cancel();
|
|
|
|
_e_thumb_gen_begin(eth->objid, eth->file, eth->key, eth->w, eth->h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
e_thumb_client_del(Ecore_Ipc_Event_Client_Del *e)
|
|
|
|
{
|
|
|
|
if (!eina_list_data_find(_thumbnailers, e->client)) return;
|
|
|
|
_thumbnailers = eina_list_remove(_thumbnailers, e->client);
|
|
|
|
if ((!_thumbs) && (!_thumbnailers)) _objid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* local subsystem functions */
|
|
|
|
static void
|
|
|
|
_e_thumb_gen_begin(int objid, const char *file, const char *key, int w, int h)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
int l1, l2;
|
|
|
|
Ecore_Ipc_Client *cli;
|
|
|
|
|
|
|
|
/* send thumb req */
|
|
|
|
l1 = strlen(file);
|
|
|
|
l2 = 0;
|
|
|
|
if (key) l2 = strlen(key);
|
|
|
|
buf = alloca(l1 + 1 + l2 + 1);
|
|
|
|
strcpy(buf, file);
|
|
|
|
if (key) strcpy(buf + l1 + 1, key);
|
|
|
|
else buf[l1 + 1] = 0;
|
|
|
|
cli = eina_list_data_get(_thumbnailers);
|
|
|
|
if (!cli) return;
|
|
|
|
_thumbnailers = eina_list_remove_list(_thumbnailers, _thumbnailers);
|
|
|
|
_thumbnailers = eina_list_append(_thumbnailers, cli);
|
|
|
|
ecore_ipc_client_send(cli, EPHOTO_IPC_DOMAIN_THUMB, 1, objid, w, h, buf, l1 + 1 + l2 + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_gen_end(int objid)
|
|
|
|
{
|
|
|
|
Eina_List *l;
|
|
|
|
Ecore_Ipc_Client *cli;
|
|
|
|
|
|
|
|
/* send thumb cancel */
|
|
|
|
EINA_LIST_FOREACH(_thumbnailers, l, cli)
|
|
|
|
{
|
|
|
|
ecore_ipc_client_send(cli, EPHOTO_IPC_DOMAIN_THUMB, 2, objid, 0, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_del_hook(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED)
|
|
|
|
{
|
|
|
|
E_Thumb *eth;
|
|
|
|
|
|
|
|
eth = evas_object_data_get(obj, "e_thumbdata");
|
|
|
|
if (!eth) return;
|
|
|
|
evas_object_data_del(obj, "e_thumbdata");
|
|
|
|
_e_thumb_hash_del(eth->objid);
|
|
|
|
if (eth->busy)
|
|
|
|
{
|
|
|
|
_e_thumb_gen_end(eth->objid);
|
|
|
|
eth->busy = 0;
|
|
|
|
_pending--;
|
|
|
|
if (_pending == 0) _e_thumb_thumbnailers_kill();
|
|
|
|
}
|
|
|
|
if (eth->queued)
|
|
|
|
_thumb_queue = eina_list_remove(_thumb_queue, eth);
|
|
|
|
if (eth->file) eina_stringshare_del(eth->file);
|
|
|
|
if (eth->key) eina_stringshare_del(eth->key);
|
|
|
|
free(eth->sort_id);
|
|
|
|
free(eth);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_hash_add(int objid, Evas_Object *obj)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%i", objid);
|
|
|
|
eina_hash_add(_thumbs, buf, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_hash_del(int objid)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%i", objid);
|
|
|
|
if (_thumbs) eina_hash_del(_thumbs, buf, NULL);
|
|
|
|
if ((!_thumbs) && (!_thumbnailers)) _objid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Evas_Object *
|
|
|
|
_e_thumb_hash_find(int objid)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%i", objid);
|
|
|
|
return eina_hash_find(_thumbs, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_thumbnailers_kill(void)
|
|
|
|
{
|
|
|
|
if (_kill_timer) ecore_timer_del(_kill_timer);
|
|
|
|
_kill_timer = ecore_timer_loop_add(1.0, _e_thumb_cb_kill, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_e_thumb_thumbnailers_kill_cancel(void)
|
|
|
|
{
|
|
|
|
if (_kill_timer) ecore_timer_del(_kill_timer);
|
|
|
|
_kill_timer = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Eina_Bool
|
|
|
|
_e_thumb_cb_kill(void *data EINA_UNUSED)
|
|
|
|
{
|
|
|
|
Eina_List *l;
|
|
|
|
Ecore_Exe *exe;
|
|
|
|
|
|
|
|
EINA_LIST_FOREACH(_thumbnailers_exe, l, exe)
|
|
|
|
ecore_exe_terminate(exe);
|
|
|
|
_kill_timer = NULL;
|
|
|
|
return ECORE_CALLBACK_DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Eina_Bool
|
|
|
|
_e_thumb_cb_exe_event_del(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
|
|
|
|
{
|
|
|
|
Ecore_Exe_Event_Del *ev;
|
|
|
|
Ecore_Exe *exe;
|
|
|
|
Eina_List *l;
|
|
|
|
|
|
|
|
ev = event;
|
|
|
|
EINA_LIST_FOREACH(_thumbnailers_exe, l, exe)
|
|
|
|
{
|
|
|
|
if (exe == ev->exe)
|
|
|
|
{
|
|
|
|
_thumbnailers_exe = eina_list_remove_list(_thumbnailers_exe, l);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((!_thumbnailers_exe) && (_thumb_queue))
|
|
|
|
{
|
|
|
|
while ((int)eina_list_count(_thumbnailers_exe) < _num_thumbnailers)
|
|
|
|
{
|
|
|
|
Ecore_Exe *exe_thumb;
|
|
|
|
char buf[4096];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s/ephoto_thumbnail --nice=1", PACKAGE_LIB_DIR);
|
|
|
|
exe_thumb = ecore_exe_run(buf, NULL);
|
|
|
|
_thumbnailers_exe = eina_list_append(_thumbnailers_exe, exe_thumb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ECORE_CALLBACK_PASS_ON;
|
|
|
|
}
|