efl/src/lib/eo/eo_base_class.c

1006 lines
26 KiB
C
Raw Normal View History

2013-12-25 06:13:41 -08:00
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eina.h>
2013-12-25 06:19:07 -08:00
#include "Eo.h"
2013-12-25 06:13:41 -08:00
#include "eo_ptr_indirection.h"
#include "eo_private.h"
static int event_freeze_count = 0;
typedef struct _Eo_Callback_Description Eo_Callback_Description;
typedef struct
{
Eina_List *children;
Eo *parent;
2013-12-25 06:13:41 -08:00
Eina_Inlist *generic_data;
Eo ***wrefs;
Eo_Callback_Description *callbacks;
unsigned short walking_list;
unsigned short event_freeze_count;
Eina_Bool deletions_waiting : 1;
} Private_Data;
typedef struct
{
EINA_INLIST;
Eina_Stringshare *key;
void *data;
2014-04-02 03:42:00 -07:00
eo_key_data_free_func free_func;
2013-12-25 06:13:41 -08:00
} Eo_Generic_Data_Node;
static void
_eo_generic_data_node_free(Eo_Generic_Data_Node *node)
{
eina_stringshare_del(node->key);
if (node->free_func)
node->free_func(node->data);
free(node);
}
static void
_eo_generic_data_del_all(Private_Data *pd)
{
Eina_Inlist *nnode;
Eo_Generic_Data_Node *node = NULL;
EINA_INLIST_FOREACH_SAFE(pd->generic_data, nnode, node)
{
pd->generic_data = eina_inlist_remove(pd->generic_data,
EINA_INLIST_GET(node));
_eo_generic_data_node_free(node);
}
}
static void
_data_set(Eo *obj, void *class_data,
2014-04-02 03:42:00 -07:00
const char *key, const void *data, eo_key_data_free_func free_func)
2013-12-25 06:13:41 -08:00
{
Private_Data *pd = class_data;
Eo_Generic_Data_Node *node;
if (!key) return;
2014-04-02 03:42:00 -07:00
eo_do(obj, eo_key_data_del(key); );
2013-12-25 06:13:41 -08:00
node = malloc(sizeof(Eo_Generic_Data_Node));
if (!node) return;
2013-12-25 06:13:41 -08:00
node->key = eina_stringshare_add(key);
node->data = (void *) data;
node->free_func = free_func;
pd->generic_data = eina_inlist_prepend(pd->generic_data,
EINA_INLIST_GET(node));
}
2014-04-02 03:42:00 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_key_data_set, EO_FUNC_CALL(key, data, free_func),
const char *key, const void *data, eo_key_data_free_func free_func);
2013-12-25 06:13:41 -08:00
static void *
_data_get(Eo *obj EINA_UNUSED, void *class_data, const char *key)
{
/* We don't really change it... */
Eo_Generic_Data_Node *node;
Private_Data *pd = (Private_Data *) class_data;
if (!key) return NULL;
EINA_INLIST_FOREACH(pd->generic_data, node)
{
if (!strcmp(node->key, key))
{
pd->generic_data =
eina_inlist_promote(pd->generic_data, EINA_INLIST_GET(node));
return node->data;
}
}
return NULL;
}
2014-04-02 03:42:00 -07:00
EAPI EO_FUNC_BODYV(eo_key_data_get, void*, NULL, EO_FUNC_CALL(key), const char *key);
2013-12-25 06:13:41 -08:00
static void
_parent_set(Eo *obj, void *class_data, Eo *parent_id)
{
Private_Data *pd = (Private_Data *) class_data;
if (pd->parent == parent_id)
return;
if (eo_composite_is(obj) && pd->parent)
{
eo_composite_detach(obj, pd->parent);
}
if (pd->parent)
{
Private_Data *old_parent_pd;
2014-04-02 04:01:16 -07:00
old_parent_pd = eo_data_scope_get(pd->parent, EO_CLASS);
if (old_parent_pd)
{
old_parent_pd->children = eina_list_remove(old_parent_pd->children,
obj);
}
else
{
ERR("CONTACT DEVS!!! SHOULD NEVER HAPPEN!!! Old parent %p for object %p is not a valid Eo object.",
pd->parent, obj);
}
eo_xunref(obj, pd->parent);
}
/* Set new parent */
if (parent_id)
{
Private_Data *parent_pd = NULL;
2014-04-02 04:01:16 -07:00
parent_pd = eo_data_scope_get(parent_id, EO_CLASS);
if (EINA_LIKELY(parent_pd != NULL))
{
pd->parent = parent_id;
parent_pd->children = eina_list_append(parent_pd->children,
obj);
eo_xref(obj, pd->parent);
}
else
{
pd->parent = NULL;
ERR("New parent %p for object %p is not a valid Eo object.",
parent_id, obj);
}
}
else
{
pd->parent = NULL;
}
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_parent_set, EO_FUNC_CALL(parent_id), Eo *parent_id);
static Eo *
_parent_get(Eo *obj EINA_UNUSED, void *class_data)
{
Private_Data *pd = (Private_Data *) class_data;
return pd->parent;
}
2014-04-02 01:46:34 -07:00
EAPI EO_FUNC_BODY(eo_parent_get, Eo *, NULL);
/* Children accessor */
typedef struct _Eo_Children_Iterator Eo_Children_Iterator;
struct _Eo_Children_Iterator
{
Eina_Iterator iterator;
Eina_List *current;
_Eo_Object *obj;
Eo *obj_id;
};
static Eina_Bool
_eo_children_iterator_next(Eo_Children_Iterator *it, void **data)
{
if (!it->current) return EINA_FALSE;
if (data) *data = eina_list_data_get(it->current);
it->current = eina_list_next(it->current);
return EINA_TRUE;
}
static Eo *
_eo_children_iterator_container(Eo_Children_Iterator *it)
{
return it->obj_id;
}
static void
_eo_children_iterator_free(Eo_Children_Iterator *it)
{
_Eo_Class *klass;
_Eo_Object *obj;
klass = (_Eo_Class*) it->obj->klass;
obj = it->obj;
eina_spinlock_take(&klass->iterators.trash_lock);
if (klass->iterators.trash_count < 8)
{
klass->iterators.trash_count++;
eina_trash_push(&klass->iterators.trash, it);
}
else
{
free(it);
}
eina_spinlock_release(&klass->iterators.trash_lock);
_eo_unref(obj);
}
static Eina_Iterator *
_children_iterator_new(Eo *obj_id, void *class_data)
{
Private_Data *pd = class_data;
_Eo_Class *klass;
Eo_Children_Iterator *it;
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, NULL);
if (!pd->children) return NULL;
klass = (_Eo_Class *) obj->klass;
eina_spinlock_take(&klass->iterators.trash_lock);
it = eina_trash_pop(&klass->iterators.trash);
if (it)
{
klass->iterators.trash_count--;
memset(it, 0, sizeof (Eo_Children_Iterator));
}
else
{
it = calloc(1, sizeof (Eo_Children_Iterator));
}
eina_spinlock_release(&klass->iterators.trash_lock);
if (!it) return NULL;
EINA_MAGIC_SET(&it->iterator, EINA_MAGIC_ITERATOR);
it->current = pd->children;
it->obj = _eo_ref(obj);
it->obj_id = obj_id;
it->iterator.next = FUNC_ITERATOR_NEXT(_eo_children_iterator_next);
it->iterator.get_container = FUNC_ITERATOR_GET_CONTAINER(_eo_children_iterator_container);
it->iterator.free = FUNC_ITERATOR_FREE(_eo_children_iterator_free);
return (Eina_Iterator *)it;
}
2014-04-02 01:46:34 -07:00
EAPI EO_FUNC_BODY(eo_children_iterator_new, Eina_Iterator *, NULL);
2013-12-25 06:13:41 -08:00
static void
_dbg_info_get(Eo *obj EINA_UNUSED, void *class_data EINA_UNUSED, Eo_Dbg_Info *root_node EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{ /* No info required in the meantime */
return;
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_dbg_info_get, EO_FUNC_CALL(root_node), Eo_Dbg_Info *root_node);
2013-12-25 06:13:41 -08:00
static void
_data_del(Eo *obj EINA_UNUSED, void *class_data, const char *key)
{
Eo_Generic_Data_Node *node;
Private_Data *pd = class_data;
if (!key) return;
EINA_INLIST_FOREACH(pd->generic_data, node)
{
if (!strcmp(node->key, key))
{
pd->generic_data = eina_inlist_remove(pd->generic_data,
EINA_INLIST_GET(node));
_eo_generic_data_node_free(node);
return;
}
}
}
2014-04-02 03:42:00 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_key_data_del, EO_FUNC_CALL(key), const char *key);
2013-12-25 06:13:41 -08:00
/* Weak reference. */
static inline size_t
_wref_count(Private_Data *pd)
{
size_t count = 0;
if (!pd->wrefs)
return 0;
Eo ***itr;
2013-12-26 12:00:23 -08:00
for (itr = pd->wrefs; *itr; itr++)
2013-12-25 06:13:41 -08:00
count++;
return count;
}
static void
_wref_add(Eo *obj, void *class_data, Eo **wref)
{
Private_Data *pd = (Private_Data *) class_data;
size_t count;
Eo ***tmp;
2013-12-25 06:13:41 -08:00
count = _wref_count(pd);
count += 1; /* New wref. */
tmp = realloc(pd->wrefs, sizeof(*pd->wrefs) * (count + 1));
if (!tmp) return;
pd->wrefs = tmp;
2013-12-25 06:13:41 -08:00
pd->wrefs[count - 1] = wref;
pd->wrefs[count] = NULL;
*wref = obj;
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_wref_add, EO_FUNC_CALL(wref), Eo **wref);
2013-12-25 06:13:41 -08:00
static void
_wref_del(Eo *obj, void *class_data, Eo **wref)
{
Private_Data *pd = (Private_Data *) class_data;
size_t count;
if (*wref != obj)
{
ERR("Wref is a weak ref to %p, while this function was called on %p.",
*wref, obj);
return;
}
if (!pd->wrefs)
{
ERR("There are no weak refs for object %p", obj);
*wref = NULL;
return;
}
/* Move the last item in the array instead of the current wref. */
count = _wref_count(pd);
{
Eo ***itr;
2013-12-26 12:00:23 -08:00
for (itr = pd->wrefs; *itr; itr++)
2013-12-25 06:13:41 -08:00
{
if (*itr == wref)
{
*itr = pd->wrefs[count - 1];
break;
}
}
if (!*itr)
{
ERR("Wref %p is not associated with object %p", wref, obj);
*wref = NULL;
return;
}
}
if (count > 1)
{
Eo ***tmp;
2013-12-25 06:13:41 -08:00
// No count--; because of the NULL that is not included in the count. */
tmp = realloc(pd->wrefs, sizeof(*pd->wrefs) * count);
if (!tmp) return;
pd->wrefs = tmp;
2013-12-25 06:13:41 -08:00
pd->wrefs[count - 1] = NULL;
}
else
{
free(pd->wrefs);
pd->wrefs = NULL;
}
*wref = NULL;
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_wref_del, EO_FUNC_CALL(wref), Eo **wref);
2013-12-25 06:13:41 -08:00
static inline void
_wref_destruct(Private_Data *pd)
{
Eo ***itr;
if (!pd->wrefs)
return;
2013-12-26 12:00:23 -08:00
for (itr = pd->wrefs; *itr; itr++)
2013-12-25 06:13:41 -08:00
{
**itr = NULL;
}
free(pd->wrefs);
}
/* EOF Weak reference. */
/* Event callbacks */
/* Callbacks */
struct _Eo_Callback_Description
{
Eo_Callback_Description *next;
union
{
Eo_Callback_Array_Item item;
const Eo_Callback_Array_Item *item_array;
} items;
void *func_data;
Eo_Callback_Priority priority;
Eina_Bool delete_me : 1;
Eina_Bool func_array : 1;
};
/* Actually remove, doesn't care about walking list, or delete_me */
static void
_eo_callback_remove(Private_Data *pd, Eo_Callback_Description *cb)
{
Eo_Callback_Description *itr, *pitr = NULL;
2013-12-25 06:13:41 -08:00
itr = pd->callbacks;
2013-12-25 06:13:41 -08:00
2013-12-26 12:00:23 -08:00
for ( ; itr; )
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description *titr = itr;
itr = itr->next;
if (titr == cb)
{
if (pitr)
{
pitr->next = titr->next;
}
else
{
pd->callbacks = titr->next;
}
2013-12-25 06:13:41 -08:00
free(titr);
}
else
{
pitr = titr;
}
}
}
/* Actually remove, doesn't care about walking list, or delete_me */
static void
_eo_callback_remove_all(Private_Data *pd)
{
while (pd->callbacks)
{
Eo_Callback_Description *next = pd->callbacks->next;
free(pd->callbacks);
pd->callbacks = next;
}
}
static void
_eo_callbacks_clear(Private_Data *pd)
{
Eo_Callback_Description *cb = NULL;
/* If there are no deletions waiting. */
if (!pd->deletions_waiting)
return;
/* Abort if we are currently walking the list. */
if (pd->walking_list > 0)
return;
pd->deletions_waiting = EINA_FALSE;
2013-12-26 12:00:23 -08:00
for (cb = pd->callbacks; cb; )
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description *titr = cb;
cb = cb->next;
if (titr->delete_me)
{
_eo_callback_remove(pd, titr);
}
}
}
static void
_eo_callbacks_sorted_insert(Private_Data *pd, Eo_Callback_Description *cb)
{
Eo_Callback_Description *itr, *itrp = NULL;
2013-12-26 12:00:23 -08:00
for (itr = pd->callbacks; itr && (itr->priority < cb->priority);
2013-12-25 06:13:41 -08:00
itr = itr->next)
{
itrp = itr;
}
if (itrp)
{
cb->next = itrp->next;
itrp->next = cb;
}
else
{
cb->next = pd->callbacks;
pd->callbacks = cb;
}
}
static void
_ev_cb_priority_add(Eo *obj, void *class_data,
const Eo_Event_Description *desc,
Eo_Callback_Priority priority,
Eo_Event_Cb func,
const void *user_data)
{
Eo_Callback_Description *cb;
Private_Data *pd = (Private_Data *) class_data;
cb = calloc(1, sizeof(*cb));
if (!cb) return;
2013-12-25 06:13:41 -08:00
cb->items.item.desc = desc;
cb->items.item.func = func;
cb->func_data = (void *) user_data;
cb->priority = priority;
_eo_callbacks_sorted_insert(pd, cb);
{
const Eo_Callback_Array_Item arr[] = { {desc, func}, {NULL, NULL}};
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_call(EO_EV_CALLBACK_ADD, (void *)arr));
2013-12-25 06:13:41 -08:00
}
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_event_callback_priority_add,
EO_FUNC_CALL(desc, priority, func, user_data),
2013-12-25 06:13:41 -08:00
const Eo_Event_Description *desc,
Eo_Callback_Priority priority,
Eo_Event_Cb func,
const void *user_data);
static void
_ev_cb_del(Eo *obj, void *class_data,
const Eo_Event_Description *desc,
Eo_Event_Cb func,
void *user_data)
{
Eo_Callback_Description *cb;
Private_Data *pd = (Private_Data *) class_data;
2013-12-26 12:00:23 -08:00
for (cb = pd->callbacks; cb; cb = cb->next)
2013-12-25 06:13:41 -08:00
{
if ((cb->items.item.desc == desc) && (cb->items.item.func == func) &&
(cb->func_data == user_data))
{
const Eo_Callback_Array_Item arr[] = { {desc, func}, {NULL, NULL}};
cb->delete_me = EINA_TRUE;
pd->deletions_waiting = EINA_TRUE;
_eo_callbacks_clear(pd);
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_call(EO_EV_CALLBACK_DEL, (void *)arr); );
2013-12-25 06:13:41 -08:00
return;
}
}
DBG("Callback of object %p with function %p and data %p not found.", obj, func, user_data);
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_event_callback_del,
EO_FUNC_CALL(desc, func, user_data),
2013-12-25 06:13:41 -08:00
const Eo_Event_Description *desc,
Eo_Event_Cb func,
const void *user_data);
static void
_ev_cb_array_priority_add(Eo *obj, void *class_data,
const Eo_Callback_Array_Item *array,
Eo_Callback_Priority priority,
const void *user_data)
{
Eo_Callback_Description *cb;
Private_Data *pd = (Private_Data *) class_data;
cb = calloc(1, sizeof(*cb));
if (!cb) return;
2013-12-25 06:13:41 -08:00
cb->func_data = (void *) user_data;
cb->priority = priority;
cb->items.item_array = array;
cb->func_array = EINA_TRUE;
_eo_callbacks_sorted_insert(pd, cb);
{
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_call(EO_EV_CALLBACK_ADD, (void *)array); );
2013-12-25 06:13:41 -08:00
}
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_event_callback_array_priority_add,
EO_FUNC_CALL(array, priority, user_data),
2013-12-25 06:13:41 -08:00
const Eo_Callback_Array_Item *array,
Eo_Callback_Priority priority,
const void *user_data);
static void
_ev_cb_array_del(Eo *obj, void *class_data,
const Eo_Callback_Array_Item *array,
void *user_data)
{
Eo_Callback_Description *cb;
Private_Data *pd = (Private_Data *) class_data;
2013-12-26 12:00:23 -08:00
for (cb = pd->callbacks; cb; cb = cb->next)
2013-12-25 06:13:41 -08:00
{
if ((cb->items.item_array == array) && (cb->func_data == user_data))
{
cb->delete_me = EINA_TRUE;
pd->deletions_waiting = EINA_TRUE;
_eo_callbacks_clear(pd);
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_call(EO_EV_CALLBACK_DEL, (void *)array); );
2013-12-25 06:13:41 -08:00
return;
}
}
DBG("Callback of object %p with function array %p and data %p not found.", obj, array, user_data);
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_event_callback_array_del,
EO_FUNC_CALL(array, user_data),
2013-12-25 06:13:41 -08:00
const Eo_Callback_Array_Item *array,
const void *user_data);
static Eina_Bool
_ev_cb_call(Eo *obj_id, void *class_data,
const Eo_Event_Description *desc,
void *event_info)
{
Eina_Bool ret;
Eo_Callback_Description *cb;
Private_Data *pd = (Private_Data *) class_data;
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, EINA_FALSE);
ret = EINA_TRUE;
_eo_ref(obj);
pd->walking_list++;
2013-12-26 12:00:23 -08:00
for (cb = pd->callbacks; cb; cb = cb->next)
2013-12-25 06:13:41 -08:00
{
if (!cb->delete_me)
{
if (cb->func_array)
{
const Eo_Callback_Array_Item *it;
2013-12-26 12:00:23 -08:00
for (it = cb->items.item_array; it->func; it++)
2013-12-25 06:13:41 -08:00
{
if (it->desc != desc)
continue;
if (!it->desc->unfreezable &&
(event_freeze_count || pd->event_freeze_count))
continue;
/* Abort callback calling if the func says so. */
if (!it->func((void *) cb->func_data, obj_id, desc,
(void *) event_info))
{
ret = EINA_FALSE;
goto end;
}
}
}
else
{
if (cb->items.item.desc != desc)
continue;
if ((!cb->items.item.desc
|| !cb->items.item.desc->unfreezable) &&
(event_freeze_count || pd->event_freeze_count))
continue;
/* Abort callback calling if the func says so. */
if (!cb->items.item.func((void *) cb->func_data, obj_id, desc,
(void *) event_info))
{
ret = EINA_FALSE;
goto end;
}
}
}
}
end:
pd->walking_list--;
_eo_callbacks_clear(pd);
_eo_unref(obj);
return ret;
}
2014-04-02 01:46:34 -07:00
EAPI EO_FUNC_BODYV(eo_event_callback_call, Eina_Bool,
2013-12-25 06:13:41 -08:00
EINA_FALSE,
2014-04-02 01:46:34 -07:00
EO_FUNC_CALL(desc, event_info),
2013-12-25 06:13:41 -08:00
const Eo_Event_Description *desc,
void *event_info);
static Eina_Bool
_eo_event_forwarder_callback(void *data, Eo *obj, const Eo_Event_Description *desc, void *event_info)
{
(void) obj;
Eo *new_obj = (Eo *) data;
Eina_Bool ret = EINA_FALSE;
2013-12-25 06:13:41 -08:00
2014-04-02 01:46:34 -07:00
eo_do(new_obj, ret = eo_event_callback_call(desc, (void *)event_info); );
2013-12-25 06:13:41 -08:00
return ret;
}
/* FIXME: Change default priority? Maybe call later? */
static void
_ev_cb_forwarder_add(Eo *obj, void *class_data EINA_UNUSED,
const Eo_Event_Description *desc,
Eo *new_obj)
{
/* FIXME: Add it EO_MAGIC_RETURN(new_obj, EO_EINA_MAGIC); */
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_add(desc, _eo_event_forwarder_callback, new_obj); );
2013-12-25 06:13:41 -08:00
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_event_callback_forwarder_add,
EO_FUNC_CALL(desc, new_obj),
2013-12-25 06:13:41 -08:00
const Eo_Event_Description *desc,
Eo *new_obj);
static void
_ev_cb_forwarder_del(Eo *obj, void *class_data EINA_UNUSED,
const Eo_Event_Description *desc,
Eo *new_obj)
{
/* FIXME: Add it EO_MAGIC_RETURN(new_obj, EO_EINA_MAGIC); */
2014-04-02 01:46:34 -07:00
eo_do(obj, eo_event_callback_del(desc, _eo_event_forwarder_callback, new_obj); );
2013-12-25 06:13:41 -08:00
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODYV(eo_event_callback_forwarder_del,
EO_FUNC_CALL(desc, new_obj),
2013-12-25 06:13:41 -08:00
const Eo_Event_Description *desc,
Eo *new_obj);
static void
_ev_freeze(Eo *obj EINA_UNUSED, void *class_data)
{
Private_Data *pd = (Private_Data *) class_data;
pd->event_freeze_count++;
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODY(eo_event_freeze);
2013-12-25 06:13:41 -08:00
static void
_ev_thaw(Eo *obj, void *class_data)
{
Private_Data *pd = (Private_Data *) class_data;
if (pd->event_freeze_count > 0)
{
pd->event_freeze_count--;
}
else
{
ERR("Events for object %p have already been thawed.", obj);
}
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODY(eo_event_thaw);
2013-12-25 06:13:41 -08:00
static int
_ev_freeze_get(Eo *obj EINA_UNUSED, void *class_data)
{
Private_Data *pd = (Private_Data *) class_data;
return pd->event_freeze_count;
}
2014-04-02 01:46:34 -07:00
EAPI EO_FUNC_BODY(eo_event_freeze_get, int, 0);
2013-12-25 06:13:41 -08:00
static void
_ev_global_freeze(const Eo_Class *klass EINA_UNUSED, void *class_data EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
event_freeze_count++;
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODY(eo_event_global_freeze);
2013-12-25 06:13:41 -08:00
static void
_ev_global_thaw(const Eo_Class *klass EINA_UNUSED, void *class_data EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
if (event_freeze_count > 0)
{
event_freeze_count--;
}
else
{
ERR("Global events have already been thawed.");
}
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODY(eo_event_global_thaw);
2013-12-25 06:13:41 -08:00
static int
_ev_global_freeze_get(const Eo_Class *klass EINA_UNUSED, void *class_data EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
return event_freeze_count;
}
2014-04-02 01:46:34 -07:00
EAPI EO_FUNC_BODY(eo_event_global_freeze_get, int, 0);
2013-12-25 06:13:41 -08:00
/* Eo_Dbg */
EAPI void
2014-04-02 01:46:34 -07:00
eo_dbg_info_free(Eo_Dbg_Info *info)
2013-12-25 06:13:41 -08:00
{
eina_value_flush(&(info->value));
free(info);
}
static Eina_Bool
_eo_dbg_info_setup(const Eina_Value_Type *type, void *mem)
{
memset(mem, 0, type->value_size);
return EINA_TRUE;
}
static Eina_Bool
_eo_dbg_info_flush(const Eina_Value_Type *type EINA_UNUSED, void *_mem)
{
Eo_Dbg_Info *mem = *(Eo_Dbg_Info **) _mem;
eina_stringshare_del(mem->name);
eina_value_flush(&(mem->value));
free(mem);
return EINA_TRUE;
}
static Eina_Bool
_eo_dbg_info_copy(const Eina_Value_Type *type EINA_UNUSED, const void *_src, void *_dst)
{
const Eo_Dbg_Info **src = (const Eo_Dbg_Info **) _src;
Eo_Dbg_Info **dst = _dst;
2013-12-25 06:13:41 -08:00
*dst = calloc(1, sizeof(Eo_Dbg_Info));
if (!*dst) return EINA_FALSE;
2013-12-25 06:13:41 -08:00
(*dst)->name = eina_stringshare_ref((*src)->name);
eina_value_copy(&((*src)->value), &((*dst)->value));
return EINA_TRUE;
}
static Eina_Bool
_eo_dbg_info_convert_to(const Eina_Value_Type *type EINA_UNUSED, const Eina_Value_Type *convert, const void *type_mem, void *convert_mem)
{
/* FIXME: For the meanwhile, just use the inner type for the value. */
const Eo_Dbg_Info **src = (const Eo_Dbg_Info **) type_mem;
if (convert == EINA_VALUE_TYPE_STRINGSHARE ||
convert == EINA_VALUE_TYPE_STRING)
{
Eina_Bool ret;
const char *other_mem;
char *inner_val = eina_value_to_string(&(*src)->value);
other_mem = inner_val;
ret = eina_value_type_pset(convert, convert_mem, &other_mem);
free(inner_val);
return ret;
}
eina_error_set(EINA_ERROR_VALUE_FAILED);
return EINA_FALSE;
}
static Eina_Bool
_eo_dbg_info_pset(const Eina_Value_Type *type EINA_UNUSED, void *_mem, const void *_ptr)
{
Eo_Dbg_Info **mem = _mem;
if (*mem)
free(*mem);
*mem = (void *) _ptr;
return EINA_TRUE;
}
static Eina_Bool
_eo_dbg_info_pget(const Eina_Value_Type *type EINA_UNUSED, const void *_mem, void *_ptr)
{
Eo_Dbg_Info **ptr = _ptr;
*ptr = (void *) _mem;
return EINA_TRUE;
}
2014-04-02 01:46:34 -07:00
static const Eina_Value_Type _EO_DBG_INFO_TYPE = {
2013-12-25 06:13:41 -08:00
EINA_VALUE_TYPE_VERSION,
sizeof(Eo_Dbg_Info *),
"Eo_Dbg_Info_Ptr",
_eo_dbg_info_setup,
_eo_dbg_info_flush,
_eo_dbg_info_copy,
NULL,
_eo_dbg_info_convert_to,
NULL,
NULL,
_eo_dbg_info_pset,
_eo_dbg_info_pget
};
2014-04-02 01:46:34 -07:00
EAPI const Eina_Value_Type *EO_DBG_INFO_TYPE = &_EO_DBG_INFO_TYPE;
2013-12-25 06:13:41 -08:00
/* EOF event callbacks */
2014-04-02 04:01:16 -07:00
/* EO_CLASS stuff */
#define MY_CLASS EO_CLASS
2013-12-25 06:13:41 -08:00
EAPI const Eo_Event_Description _EO_EV_CALLBACK_ADD =
EO_EVENT_DESCRIPTION("callback,add", "A callback was added.");
EAPI const Eo_Event_Description _EO_EV_CALLBACK_DEL =
EO_EVENT_DESCRIPTION("callback,del", "A callback was deleted.");
EAPI const Eo_Event_Description _EO_EV_DEL =
EO_HOT_EVENT_DESCRIPTION("del", "Obj is being deleted.");
2013-12-25 06:13:41 -08:00
static void
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
DBG("%p - %s.", obj, eo_class_name_get(MY_CLASS));
_eo_condtor_done(obj);
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODY(eo_constructor);
2013-12-25 06:13:41 -08:00
static void
_destructor(Eo *obj, void *class_data)
{
Private_Data *pd = class_data;
Eo *child;
2013-12-25 06:13:41 -08:00
DBG("%p - %s.", obj, eo_class_name_get(MY_CLASS));
EINA_LIST_FREE(pd->children, child)
2014-04-02 01:46:34 -07:00
eo_do(child, eo_parent_set(NULL));
2013-12-25 06:13:41 -08:00
_eo_generic_data_del_all(class_data);
_wref_destruct(class_data);
_eo_callback_remove_all(class_data);
_eo_condtor_done(obj);
}
2014-04-02 01:46:34 -07:00
EAPI EO_VOID_FUNC_BODY(eo_destructor);
2013-12-25 06:13:41 -08:00
static void
_class_constructor(Eo_Class *klass EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
event_freeze_count = 0;
}
2014-04-02 01:46:34 -07:00
static Eo_Op_Description op_descs [] = {
EO_OP_FUNC(eo_constructor, _constructor, "Constructor."),
EO_OP_FUNC(eo_destructor, _destructor, "Destructor."),
EO_OP_FUNC(eo_parent_set, _parent_set, "Set parent."),
EO_OP_FUNC(eo_parent_get, _parent_get, "Get parent."),
EO_OP_FUNC(eo_children_iterator_new, _children_iterator_new, "Get Children Iterator."),
2014-04-02 03:42:00 -07:00
EO_OP_FUNC(eo_key_data_set, _data_set, "Set data for key."),
EO_OP_FUNC(eo_key_data_get, _data_get, "Get data for key."),
EO_OP_FUNC(eo_key_data_del, _data_del, "Del key."),
2014-04-02 01:46:34 -07:00
EO_OP_FUNC(eo_wref_add, _wref_add, "Add a weak ref to the object."),
EO_OP_FUNC(eo_wref_del, _wref_del, "Delete the weak ref."),
EO_OP_FUNC(eo_event_callback_priority_add, _ev_cb_priority_add, "Add an event callback with a priority."),
EO_OP_FUNC(eo_event_callback_del, _ev_cb_del, "Delete an event callback"),
EO_OP_FUNC(eo_event_callback_array_priority_add, _ev_cb_array_priority_add, "Add an event callback array with a priority."),
EO_OP_FUNC(eo_event_callback_array_del, _ev_cb_array_del, "Delete an event callback array"),
EO_OP_FUNC(eo_event_callback_call, _ev_cb_call, "Call the event callbacks for an event."),
EO_OP_FUNC(eo_event_callback_forwarder_add, _ev_cb_forwarder_add, "Add an event forwarder."),
EO_OP_FUNC(eo_event_callback_forwarder_del, _ev_cb_forwarder_del, "Delete an event forwarder."),
EO_OP_FUNC(eo_event_freeze, _ev_freeze, "Freezes events."),
EO_OP_FUNC(eo_event_thaw, _ev_thaw, "Thaws events."),
EO_OP_FUNC(eo_event_freeze_get, _ev_freeze_get, "Get event freeze counter."),
EO_OP_CLASS_FUNC(eo_event_global_freeze, _ev_global_freeze, "Freezes events globally."),
EO_OP_CLASS_FUNC(eo_event_global_thaw, _ev_global_thaw, "Thaws events globally."),
EO_OP_CLASS_FUNC(eo_event_global_freeze_get, _ev_global_freeze_get, "Get global event freeze counter."),
2014-04-02 01:46:34 -07:00
EO_OP_FUNC(eo_dbg_info_get, _dbg_info_get, "Get debug info list for obj."),
EO_OP_SENTINEL
2013-12-25 06:13:41 -08:00
};
2014-04-02 01:46:34 -07:00
// FIXME: eo
2013-12-25 06:13:41 -08:00
static const Eo_Event_Description *event_desc[] = {
EO_EV_CALLBACK_ADD,
EO_EV_CALLBACK_DEL,
EO_EV_DEL,
NULL
};
static const Eo_Class_Description class_desc = {
2014-04-02 01:46:34 -07:00
EO_VERSION,
"Eo_Base",
2013-12-25 06:13:41 -08:00
EO_CLASS_TYPE_REGULAR_NO_INSTANT,
2014-04-02 01:46:34 -07:00
EO_CLASS_DESCRIPTION_OPS(op_descs),
2013-12-25 06:13:41 -08:00
event_desc,
sizeof(Private_Data),
_class_constructor,
NULL
};
2014-04-02 01:46:34 -07:00
EO_DEFINE_CLASS(eo_base_class_get, &class_desc, NULL, NULL)