efl/src/lib/eo/eo_base_class.c

1682 lines
44 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>
#include <fnmatch.h>
2013-12-25 06:13:41 -08:00
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;
Eina_Spinlock _eoid_lock;
_Eo_Object *cached_object = NULL;
Eo_Id cached_id = 0;
2013-12-25 06:13:41 -08:00
typedef struct _Eo_Callback_Description Eo_Callback_Description;
typedef struct
{
const char *name;
const char *comment;
Eo *composite_parent;
Eina_Inlist *generic_data;
Eo ***wrefs;
} Efl_Object_Extension;
2013-12-25 06:13:41 -08:00
typedef struct
{
Eina_Inlist *children;
Eo *parent;
Efl_Object_Extension *ext;
Eina_Inlist *current;
Eo_Callback_Description **callbacks;
unsigned int callbacks_count;
unsigned short walking_list;
unsigned short event_freeze_count;
Eina_Bool deletions_waiting : 1;
Eina_Bool callback_stopped : 1;
} Efl_Object_Data;
2013-12-25 06:13:41 -08:00
typedef enum {
DATA_PTR,
DATA_OBJ,
DATA_OBJ_WEAK,
DATA_VAL
} Eo_Generic_Data_Node_Type;
2013-12-25 06:13:41 -08:00
typedef struct
{
EINA_INLIST;
const Eo *obj;
Eina_Stringshare *key;
union {
Eina_Value *val;
Eo *obj;
void *ptr;
} d;
Eo_Generic_Data_Node_Type d_type;
2013-12-25 06:13:41 -08:00
} Eo_Generic_Data_Node;
typedef struct
{
EINA_INLIST;
const Efl_Event_Description *desc;
unsigned int current;
} Eo_Current_Callback_Description;
static inline void
_efl_object_extension_free(Efl_Object_Extension *ext)
{
free(ext);
}
static inline void
_efl_object_extension_need(Efl_Object_Data *pd)
{
if (pd->ext) return;
pd->ext = calloc(1, sizeof(Efl_Object_Extension));
}
static inline void
_efl_object_extension_noneed(Efl_Object_Data *pd)
{
Efl_Object_Extension *ext = pd->ext;
if ((!ext) || (ext->name) || (ext->comment) || (ext->generic_data) ||
(ext->wrefs) || (ext->composite_parent)) return;
_efl_object_extension_free(pd->ext);
pd->ext = NULL;
}
static void _key_generic_cb_del(void *data, const Efl_Event *event);
2013-12-25 06:13:41 -08:00
static void
_eo_generic_data_node_free(Eo_Generic_Data_Node *node)
{
switch (node->d_type)
{
case DATA_PTR:
break;
case DATA_OBJ:
efl_event_callback_del(node->d.obj, EFL_EVENT_DEL, _key_generic_cb_del, node);
efl_unref(node->d.obj);
break;
case DATA_OBJ_WEAK:
efl_event_callback_del(node->d.obj, EFL_EVENT_DEL, _key_generic_cb_del, node);
break;
case DATA_VAL:
eina_value_free(node->d.val);
break;
}
2013-12-25 06:13:41 -08:00
eina_stringshare_del(node->key);
free(node);
}
static void
_eo_generic_data_del_all(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
Eo_Generic_Data_Node *node;
Efl_Object_Extension *ext = pd->ext;
2013-12-25 06:13:41 -08:00
if (!ext) return;
while (ext->generic_data)
2013-12-25 06:13:41 -08:00
{
node = (Eo_Generic_Data_Node *)ext->generic_data;
ext->generic_data = eina_inlist_remove(ext->generic_data,
EINA_INLIST_GET(node));
2013-12-25 06:13:41 -08:00
_eo_generic_data_node_free(node);
}
}
static void
_eo_key_generic_direct_del(Efl_Object_Data *pd, Eo_Generic_Data_Node *node, Eina_Bool call_free)
{
Efl_Object_Extension *ext = pd->ext;
ext->generic_data = eina_inlist_remove
(ext->generic_data, EINA_INLIST_GET(node));
if (call_free) _eo_generic_data_node_free(node);
}
static void
_eo_key_generic_del(const Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const char *key, Eina_Bool call_free)
{
Eo_Generic_Data_Node *node;
Efl_Object_Extension *ext = pd->ext;
EINA_INLIST_FOREACH(ext->generic_data, node)
{
if (!strcmp(node->key, key))
{
ext->generic_data = eina_inlist_remove
(ext->generic_data, EINA_INLIST_GET(node));
if (call_free) _eo_generic_data_node_free(node);
return;
}
}
}
/* Return TRUE if the object was newly added. */
static Eo_Generic_Data_Node *
_key_generic_set(const Eo *obj, Efl_Object_Data *pd, const char *key, const void *data, Eo_Generic_Data_Node_Type d_type, Eina_Bool call_free)
{
Eo_Generic_Data_Node *node;
Efl_Object_Extension *ext = pd->ext;
2013-12-25 06:13:41 -08:00
if (!key) return NULL;
if (ext)
2013-12-25 06:13:41 -08:00
{
if (!data)
{
_eo_key_generic_del(obj, pd, key, call_free);
return NULL;
}
EINA_INLIST_FOREACH(ext->generic_data, node)
2013-12-25 06:13:41 -08:00
{
if (!strcmp(node->key, key))
{
if ((node->d_type == d_type) && (node->d.ptr == data))
return NULL;
ext->generic_data = eina_inlist_remove
(ext->generic_data, EINA_INLIST_GET(node));
_eo_generic_data_node_free(node);
break;
}
2013-12-25 06:13:41 -08:00
}
}
_efl_object_extension_need(pd);
ext = pd->ext;
if (ext)
{
node = calloc(1, sizeof(Eo_Generic_Data_Node));
if (!node) return NULL;
node->obj = obj;
node->key = eina_stringshare_add(key);
node->d.ptr = (void *) data;
node->d_type = d_type;
ext->generic_data = eina_inlist_prepend
(ext->generic_data, EINA_INLIST_GET(node));
return node;
}
return NULL;
}
static void *
_key_generic_get(const Eo *obj, Efl_Object_Data *pd, const char *key, Eo_Generic_Data_Node_Type d_type)
{
Eo_Generic_Data_Node *node;
Efl_Object_Extension *ext = pd->ext;
if (!key) return NULL;
if (!ext) return NULL;
EINA_INLIST_FOREACH(ext->generic_data, node)
{
if (!strcmp(node->key, key))
{
if (node->d_type == d_type)
{
ext->generic_data = eina_inlist_promote
(ext->generic_data, EINA_INLIST_GET(node));
return node->d.ptr;
}
else
{
ERR("Object %p key '%s' asked for %d but is %d'",
obj, key, d_type, node->d_type);
return NULL;
}
}
}
2013-12-25 06:13:41 -08:00
return NULL;
}
static void
_key_generic_cb_del(void *data, const Efl_Event *event EINA_UNUSED)
{
Eo_Generic_Data_Node *node = data;
Efl_Object_Data *pd = efl_data_scope_get(node->obj, EFL_OBJECT_CLASS);
_eo_key_generic_direct_del(pd, node, EINA_FALSE);
}
EOLIAN static void
_efl_object_key_data_set(Eo *obj, Efl_Object_Data *pd, const char *key, const void *data)
{
_key_generic_set(obj, pd, key, data, DATA_PTR, EINA_TRUE);
}
EOLIAN static void *
_efl_object_key_data_get(Eo *obj, Efl_Object_Data *pd, const char *key)
{
return _key_generic_get(obj, pd, key, DATA_PTR);
}
EOLIAN static void
_efl_object_key_ref_set(Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const char *key, const Eo *objdata)
{
Eo_Generic_Data_Node *node;
node = _key_generic_set(obj, pd, key, objdata, DATA_OBJ, EINA_TRUE);
if (node)
{
efl_ref(objdata);
efl_event_callback_add((Eo *)objdata, EFL_EVENT_DEL, _key_generic_cb_del, node);
}
}
EOLIAN static Eo *
_efl_object_key_ref_get(Eo *obj, Efl_Object_Data *pd, const char *key)
{
return _key_generic_get(obj, pd, key, DATA_OBJ);
}
EOLIAN static void
_efl_object_key_wref_set(Eo *obj, Efl_Object_Data *pd, const char * key, const Efl_Object *objdata)
{
Eo_Generic_Data_Node *node;
node = _key_generic_set(obj, pd, key, objdata, DATA_OBJ_WEAK, EINA_TRUE);
if (node)
{
efl_event_callback_add((Eo *)objdata, EFL_EVENT_DEL, _key_generic_cb_del, node);
}
}
EOLIAN static Eo *
_efl_object_key_wref_get(Eo *obj, Efl_Object_Data *pd, const char * key)
{
return _key_generic_get(obj, pd, key, DATA_OBJ_WEAK);
}
EOLIAN static void
_efl_object_key_value_set(Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const char *key, Eina_Value *value)
{
_key_generic_set(obj, pd, key, value, DATA_VAL, EINA_TRUE);
}
EOLIAN static Eina_Value *
_efl_object_key_value_get(Eo *obj, Efl_Object_Data *pd, const char *key)
{
return _key_generic_get(obj, pd, key, DATA_VAL);
}
EOLIAN static void
_efl_object_name_set(Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const char *name)
{
if ((name) && (!name[0])) name = NULL;
if (name)
{
_efl_object_extension_need(pd);
if (pd->ext) eina_stringshare_replace(&(pd->ext->name), name);
}
else
{
if (!pd->ext) return;
if (pd->ext->name)
{
eina_stringshare_replace(&(pd->ext->name), name);
_efl_object_extension_noneed(pd);
}
}
}
EOLIAN static const char *
_efl_object_name_get(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
{
if (!pd->ext) return NULL;
return pd->ext->name;
}
static inline Eina_Bool
_name_match(const char *match, Eina_Bool is_glob, const char *str)
{
if (str)
{
if (is_glob)
{
// if match string is empty - then it matches - same as "*"
if (!match[0]) return EINA_TRUE;
// if match string is "*" special case it and match
if ((match[0] == '*') && (match[1] == 0)) return EINA_TRUE;
// actual compare
if (!fnmatch(match, str, 0)) return EINA_TRUE;
}
else
{
// if match string is empty - then it matches - same as "*"
if (!match[0]) return EINA_TRUE;
// if pointers are the same they must be the same
if (match == str) return EINA_TRUE;
// actual compare
if (!strcmp(match, str)) return EINA_TRUE;
}
}
return EINA_FALSE;
}
static inline Eina_Bool
_matchall(const char *match)
{
if ((match[0] == 0) || ((match[0] == '*') && (match[1] == 0)))
return EINA_TRUE;
return EINA_FALSE;
}
static Eina_Bool
_hasglob(const char *match)
{
if (strpbrk(match, "*?[")) return EINA_TRUE;
return EINA_FALSE;
}
static Eina_Bool
_ismultiglob(const char *match)
{
if ((match[0] == '*') && (match[1] == '*') && (match[2] == 0))
return EINA_TRUE;
if ((match[0] == '*') && (match[1] == '*') && (match[2] == '/'))
return EINA_TRUE;
if ((match[0] == '/') && (match[1] == '*') && (match[2] == '*') && (match[3] == 0))
return EINA_TRUE;
if ((match[0] == '/') && (match[1] == '*') && (match[2] == '*') && (match[3] == '/'))
return EINA_TRUE;
return EINA_FALSE;
}
EOLIAN static Efl_Object *
_efl_object_name_find(Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const char *search)
{
Eo *child;
_Eo_Object *child_eo;
const char *name, *p, *klass_name;
// notes:
// if search contains NO "/" char, then its just a name search.
// if there is one or more "/" chars, then these are explicitly object
// delimiters.
// a name of "**" means 0 or more objects in the heirachy chain
// if the string has no "/" char at the start, it implies "/**/"
// a name can be a name or the form "class:name" where the object must
// be of class named "class" and name "name". if "name" is empty like:
// "class:" then an object of any name will match like "class:*". an
// empty class like ":name" is the sanme as "*:name" which is the same
// as "name". class ane name of course can be basic globs but not **
// search string NULL or "" is invalid
if (!search) return NULL;
if (!search[0]) return NULL;
if (strchr(search, '/'))
{
ERR("Looking up object by path '%s' is not supported", search);
return NULL;
}
else
{
// if this is a multi glob - "**" then we don't have a name or
// class to match at all so just don't look
if (_ismultiglob(search)) return NULL;
// check if this is "class:name" or just "name"
if ((p = strchr(search, ':')))
{
// "class:name"
char *klass;
char *search_name;
size_t colon_location = p - search;
Eina_Bool klass_glob = EINA_FALSE;
Eina_Bool name_glob = EINA_FALSE;
// split class:name into 2 strings dropping :
klass = alloca(strlen(search) + 1);
strcpy(klass, search);
klass[colon_location] = '\0';
search_name = klass + colon_location + 1;
// figure out if class or name are globs
klass_glob = _hasglob(klass);
name_glob = _hasglob(search_name);
EINA_INLIST_FOREACH(pd->children, child_eo)
{
child = _eo_obj_id_get(child_eo);
name = efl_name_get(child);
klass_name = efl_class_name_get(efl_class_get(child));
if (_name_match(klass, klass_glob, klass_name) &&
(((!_matchall(klass)) && (!name) && (_matchall(search_name))) ||
((name) && _name_match(search_name, name_glob, name))))
return child;
child = efl_name_find(child, search);
if (child) return child;
}
}
else
{
if (_hasglob(search))
{
// we have a glob - fnmatch
EINA_INLIST_FOREACH(pd->children, child_eo)
{
child = _eo_obj_id_get(child_eo);
name = efl_name_get(child);
if ((name) && (_name_match(search, EINA_TRUE, name)))
return child;
child = efl_name_find(child, search);
if (child) return child;
}
}
else
{
// fast path for simple "name"
EINA_INLIST_FOREACH(pd->children, child_eo)
{
child = _eo_obj_id_get(child_eo);
name = efl_name_get(child);
if ((name) && (_name_match(search, EINA_FALSE, name)))
return child;
child = efl_name_find(child, search);
if (child) return child;
}
}
}
}
return NULL;
}
EOLIAN static void
_efl_object_comment_set(Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const char *comment)
{
if ((comment) && (!comment[0])) comment = NULL;
if (comment)
{
_efl_object_extension_need(pd);
if (pd->ext) eina_stringshare_replace(&(pd->ext->comment), comment);
}
else
{
if (!pd->ext) return;
if (pd->ext->comment)
{
eina_stringshare_replace(&(pd->ext->comment), comment);
_efl_object_extension_noneed(pd);
}
}
}
EOLIAN static const char *
_efl_object_comment_get(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
{
if (!pd->ext) return NULL;
return pd->ext->comment;
}
EOLIAN static void
_efl_object_del(const Eo *obj, Efl_Object_Data *pd EINA_UNUSED)
{
if (efl_parent_get((Eo *) obj))
{
efl_parent_set((Eo *) obj, NULL);
}
else
{
efl_unref(obj);
}
}
EOLIAN static void
_efl_object_parent_set(Eo *obj, Efl_Object_Data *pd, Eo *parent_id)
{
if (pd->parent == parent_id)
return;
EO_OBJ_POINTER(obj, eo_obj);
if (pd->parent)
{
Efl_Object_Data *old_parent_pd;
old_parent_pd = efl_data_scope_get(pd->parent, EFL_OBJECT_CLASS);
if (old_parent_pd)
{
old_parent_pd->children = eina_inlist_remove(old_parent_pd->children,
EINA_INLIST_GET(eo_obj));
}
else
{
ERR("CONTACT DEVS!!! SHOULD NEVER HAPPEN!!! Old parent %p for object %p is not a valid Eo object.",
pd->parent, obj);
}
/* Only unref if we don't have a new parent instead and we are not at
* the process of deleting the object.*/
if (!parent_id && !eo_obj->del_triggered)
{
efl_unref(obj);
}
}
/* Set new parent */
if (parent_id)
{
Efl_Object_Data *parent_pd = NULL;
parent_pd = efl_data_scope_get(parent_id, EFL_OBJECT_CLASS);
if (EINA_LIKELY(parent_pd != NULL))
{
pd->parent = parent_id;
parent_pd->children = eina_inlist_append(parent_pd->children,
EINA_INLIST_GET(eo_obj));
}
else
{
pd->parent = NULL;
ERR("New parent %p for object %p is not a valid Eo object.",
parent_id, obj);
}
}
else
{
pd->parent = NULL;
}
}
EOLIAN static Eo *
_efl_object_parent_get(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
{
return pd->parent;
}
EOLIAN static Eina_Bool
_efl_object_finalized_get(Eo *obj_id, Efl_Object_Data *pd EINA_UNUSED)
{
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, EINA_FALSE);
return obj->finalized;
}
EOLIAN static Efl_Object *
_efl_object_provider_find(Eo *obj EINA_UNUSED, Efl_Object_Data *pd, const Efl_Object *klass)
{
if (pd->parent) return efl_provider_find(pd->parent, klass);
return NULL;
}
/* Children accessor */
typedef struct _Eo_Children_Iterator Eo_Children_Iterator;
struct _Eo_Children_Iterator
{
Eina_Iterator iterator;
Eina_Inlist *current;
_Eo_Object *obj;
Eo *obj_id;
};
static Eina_Bool
_efl_children_iterator_next(Eo_Children_Iterator *it, void **data)
{
if (!it->current) return EINA_FALSE;
if (data)
{
_Eo_Object *eo_obj = EINA_INLIST_CONTAINER_GET(it->current, _Eo_Object);
*data = _eo_obj_id_get(eo_obj);
}
it->current = it->current->next;
return EINA_TRUE;
}
static Eo *
_efl_children_iterator_container(Eo_Children_Iterator *it)
{
return it->obj_id;
}
static void
_efl_children_iterator_free(Eo_Children_Iterator *it)
{
_Efl_Class *klass;
_Eo_Object *obj;
klass = (_Efl_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);
_efl_unref(obj);
}
EOLIAN static Eina_Iterator *
_efl_object_children_iterator_new(Eo *obj_id, Efl_Object_Data *pd)
{
_Efl_Class *klass;
Eo_Children_Iterator *it;
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, NULL);
if (!pd->children) return NULL;
klass = (_Efl_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 = _efl_ref(obj);
it->obj_id = obj_id;
it->iterator.next = FUNC_ITERATOR_NEXT(_efl_children_iterator_next);
it->iterator.get_container = FUNC_ITERATOR_GET_CONTAINER(_efl_children_iterator_container);
it->iterator.free = FUNC_ITERATOR_FREE(_efl_children_iterator_free);
return (Eina_Iterator *)it;
}
EOLIAN static void
_efl_object_dbg_info_get(Eo *obj EINA_UNUSED, Efl_Object_Data *pd EINA_UNUSED, Efl_Dbg_Info *root_node EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{ /* No info required in the meantime */
return;
}
/* Weak reference. */
static inline size_t
_wref_count(Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
Eo ***itr;
2013-12-25 06:13:41 -08:00
size_t count = 0;
Efl_Object_Extension *ext = pd->ext;
2013-12-25 06:13:41 -08:00
if ((!ext) || (!ext->wrefs)) return 0;
for (itr = ext->wrefs; *itr; itr++) count++;
2013-12-25 06:13:41 -08:00
return count;
}
EOLIAN static void
_efl_object_wref_add(Eo *obj, Efl_Object_Data *pd, Eo **wref)
2013-12-25 06:13:41 -08:00
{
size_t count;
Eo ***tmp;
Efl_Object_Extension *ext;
2013-12-25 06:13:41 -08:00
count = _wref_count(pd);
count += 1; /* New wref. */
_efl_object_extension_need(pd);
ext = pd->ext;
if (!ext) return;
tmp = realloc(ext->wrefs, sizeof(*ext->wrefs) * (count + 1));
if (!tmp) return;
ext->wrefs = tmp;
2013-12-25 06:13:41 -08:00
ext->wrefs[count - 1] = wref;
ext->wrefs[count] = NULL;
2013-12-25 06:13:41 -08:00
*wref = obj;
}
EOLIAN static void
_efl_object_wref_del(Eo *obj, Efl_Object_Data *pd, Eo **wref)
2013-12-25 06:13:41 -08:00
{
size_t count;
Efl_Object_Extension *ext = pd->ext;
2013-12-25 06:13:41 -08:00
if (*wref != obj)
{
ERR("Wref is a weak ref to %p, while this function was called on %p.",
*wref, obj);
2013-12-25 06:13:41 -08:00
return;
}
if ((!ext) || (!ext->wrefs))
2013-12-25 06:13:41 -08:00
{
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;
for (itr = ext->wrefs; *itr; itr++)
2013-12-25 06:13:41 -08:00
{
if (*itr == wref)
{
*itr = ext->wrefs[count - 1];
2013-12-25 06:13:41 -08:00
break;
}
}
if (!*itr)
{
ERR("Wref %p is not associated with object %p", wref, obj);
*wref = NULL;
return;
}
}
if (count > 1)
{
Eo ***tmp;
// No count--; because of the NULL that is not included in the count
tmp = realloc(ext->wrefs, sizeof(*ext->wrefs) * count);
if (!tmp) return;
ext->wrefs = tmp;
ext->wrefs[count - 1] = NULL;
2013-12-25 06:13:41 -08:00
}
else
{
free(ext->wrefs);
ext->wrefs = NULL;
_efl_object_extension_noneed(pd);
2013-12-25 06:13:41 -08:00
}
*wref = NULL;
}
static inline void
_wref_destruct(Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
Eo ***itr;
Efl_Object_Extension *ext = pd->ext;
2013-12-25 06:13:41 -08:00
if ((!ext) || (!ext->wrefs)) return;
for (itr = ext->wrefs; *itr; itr++) **itr = NULL;
free(ext->wrefs);
ext->wrefs = NULL;
2013-12-25 06:13:41 -08:00
}
/* EOF Weak reference. */
/* Event callbacks */
/* Callbacks */
/* XXX: Legacy support, remove when legacy is dead. */
static Eina_Hash *_legacy_events_hash = NULL;
EAPI const Efl_Event_Description *
efl_object_legacy_only_event_description_get(const char *_event_name)
{
Eina_Stringshare *event_name = eina_stringshare_add(_event_name);
Efl_Event_Description *event_desc = eina_hash_find(_legacy_events_hash, event_name);
if (!event_desc)
{
event_desc = calloc(1, sizeof(Efl_Event_Description));
event_desc->name = event_name;
event_desc->legacy_is = EINA_TRUE;
eina_hash_add(_legacy_events_hash, event_name, event_desc);
}
else
{
eina_stringshare_del(event_name);
}
return event_desc;
}
static inline Eina_Bool
_legacy_event_desc_is(const Efl_Event_Description *desc)
{
return desc->legacy_is;
}
static void
_legacy_events_hash_free_cb(void *_desc)
{
Efl_Event_Description *desc = _desc;
eina_stringshare_del(desc->name);
free(desc);
}
/* EOF Legacy */
2013-12-25 06:13:41 -08:00
struct _Eo_Callback_Description
{
union
{
Efl_Callback_Array_Item item;
const Efl_Callback_Array_Item *item_array;
2013-12-25 06:13:41 -08:00
} items;
void *func_data;
Efl_Callback_Priority priority;
2013-12-25 06:13:41 -08:00
Eina_Bool delete_me : 1;
Eina_Bool func_array : 1;
};
static int _eo_callbacks = 0;
static Eina_Mempool *_eo_callback_mempool = NULL;
static void
_eo_callback_free(Eo_Callback_Description *cb)
{
if (!cb) return;
eina_mempool_free(_eo_callback_mempool, cb);
_eo_callbacks--;
if (_eo_callbacks == 0)
{
eina_mempool_del(_eo_callback_mempool);
_eo_callback_mempool = NULL;
}
}
static Eo_Callback_Description *
_eo_callback_new(void)
{
Eo_Callback_Description *cb;
if (!_eo_callback_mempool)
{
_eo_callback_mempool = eina_mempool_add
("chained_mempool",
NULL, NULL,
sizeof(Eo_Callback_Description), 256);
if (!_eo_callback_mempool) return NULL;
}
cb = eina_mempool_calloc(_eo_callback_mempool,
sizeof(Eo_Callback_Description));
if (!cb)
{
if (_eo_callbacks == 0)
{
eina_mempool_del(_eo_callback_mempool);
_eo_callback_mempool = NULL;
}
return NULL;
}
_eo_callbacks++;
return cb;
}
2013-12-25 06:13:41 -08:00
/* Actually remove, doesn't care about walking list, or delete_me */
static void
_eo_callback_remove(Efl_Object_Data *pd, Eo_Callback_Description **cb)
2013-12-25 06:13:41 -08:00
{
unsigned int length;
2013-12-25 06:13:41 -08:00
_eo_callback_free(*cb);
2013-12-25 06:13:41 -08:00
length = pd->callbacks_count - (cb - pd->callbacks);
if (length > 1) memmove(cb, cb + 1, (length - 1) * sizeof (Eo_Callback_Description*));
pd->callbacks_count--;
2013-12-25 06:13:41 -08:00
}
/* Actually remove, doesn't care about walking list, or delete_me */
static void
_eo_callback_remove_all(Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
unsigned int i;
for (i = 0; i < pd->callbacks_count; i++)
_eo_callback_free(pd->callbacks[i]);
free(pd->callbacks);
pd->callbacks_count = 0;
2013-12-25 06:13:41 -08:00
}
static void
_eo_callbacks_clear(Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
unsigned int i = 0;
2013-12-25 06:13:41 -08:00
/* If there are no deletions waiting. */
if (!pd->deletions_waiting) return;
2013-12-25 06:13:41 -08:00
/* Abort if we are currently walking the list. */
if (pd->walking_list > 0) return;
2013-12-25 06:13:41 -08:00
pd->deletions_waiting = EINA_FALSE;
while (i < pd->callbacks_count)
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description **itr;
itr = pd->callbacks + i;
2013-12-25 06:13:41 -08:00
if ((*itr)->delete_me) _eo_callback_remove(pd, itr);
else i++;
2013-12-25 06:13:41 -08:00
}
}
static inline unsigned int
_eo_callback_search_sorted_near(const Efl_Object_Data *pd, const Eo_Callback_Description *look)
2013-12-25 06:13:41 -08:00
{
unsigned int start, last, middle;
if (pd->callbacks_count == 0)
{
return 0;
}
else if (pd->callbacks_count == 1)
{
return 0;
}
2013-12-25 06:13:41 -08:00
start = 0;
last = pd->callbacks_count - 1;
do
2013-12-25 06:13:41 -08:00
{
const Eo_Callback_Description *p;
int cmp;
middle = start + (last - start) / 2;
p = pd->callbacks[middle];
cmp = p->priority - look->priority;
if (cmp == 0)
return middle;
else if (cmp > 0)
start = middle + 1;
else if (middle > 0)
last = middle - 1;
else
break ;
2013-12-25 06:13:41 -08:00
}
while (start <= last);
return middle;
}
static void
_eo_callbacks_sorted_insert(Efl_Object_Data *pd, Eo_Callback_Description *cb)
{
Eo_Callback_Description **itr;
unsigned int length, j;
// Do a dichotomic searh
j = _eo_callback_search_sorted_near(pd, cb);
// Adjust for both case of length == 0 and when priority is equal.
while (j < pd->callbacks_count &&
pd->callbacks[j]->priority >= cb->priority)
j++;
// Increase the callbacks storage by 16 entries at a time
if ((pd->callbacks_count & 0xF) == 0x0)
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description **tmp;
unsigned int length = (pd->callbacks_count | 0xF) + 1;
tmp = realloc(pd->callbacks, length * sizeof (Eo_Callback_Description*));
if (!tmp) return ;
pd->callbacks = tmp;
2013-12-25 06:13:41 -08:00
}
// FIXME: Potential improvement, merge single callback description of the same priority
// into an array when possible
itr = pd->callbacks + j;
length = pd->callbacks_count - j;
if (length > 0) memmove(itr + 1, itr, length * sizeof (Eo_Callback_Description*));
*itr = cb;
pd->callbacks_count++;
2013-12-25 06:13:41 -08:00
}
EOLIAN static Eina_Bool
_efl_object_event_callback_priority_add(Eo *obj, Efl_Object_Data *pd,
const Efl_Event_Description *desc,
Efl_Callback_Priority priority,
Efl_Event_Cb func,
2013-12-25 06:13:41 -08:00
const void *user_data)
{
const Efl_Callback_Array_Item arr[] = { {desc, func}, {NULL, NULL}};
Eo_Callback_Description *cb = _eo_callback_new();
2013-12-25 06:13:41 -08:00
if (!cb || !desc || !func)
{
ERR("Tried adding callback with invalid values: cb: %p desc: %p func: %p\n", cb, desc, func);
_eo_callback_free(cb);
return EINA_FALSE;
}
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);
efl_event_callback_call(obj, EFL_EVENT_CALLBACK_ADD, (void *)arr);
return EINA_TRUE;
2013-12-25 06:13:41 -08:00
}
EOLIAN static Eina_Bool
_efl_object_event_callback_del(Eo *obj, Efl_Object_Data *pd,
const Efl_Event_Description *desc,
Efl_Event_Cb func,
const void *user_data)
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description **cb;
unsigned int i;
2013-12-25 06:13:41 -08:00
for (cb = pd->callbacks, i = 0;
i < pd->callbacks_count;
cb++, i++)
2013-12-25 06:13:41 -08:00
{
if (!(*cb)->delete_me &&
((*cb)->items.item.desc == desc) &&
((*cb)->items.item.func == func) &&
((*cb)->func_data == user_data))
2013-12-25 06:13:41 -08:00
{
const Efl_Callback_Array_Item arr[] = { {desc, func}, {NULL, NULL}};
2013-12-25 06:13:41 -08:00
(*cb)->delete_me = EINA_TRUE;
if (pd->walking_list > 0)
pd->deletions_waiting = EINA_FALSE;
else
_eo_callback_remove(pd, cb);
efl_event_callback_call(obj, EFL_EVENT_CALLBACK_DEL, (void *)arr);
return EINA_TRUE;
2013-12-25 06:13:41 -08:00
}
}
DBG("Callback of object %p with function %p and data %p not found.", obj, func, user_data);
return EINA_FALSE;
2013-12-25 06:13:41 -08:00
}
EOLIAN static Eina_Bool
_efl_object_event_callback_array_priority_add(Eo *obj, Efl_Object_Data *pd,
const Efl_Callback_Array_Item *array,
Efl_Callback_Priority priority,
2013-12-25 06:13:41 -08:00
const void *user_data)
{
Eo_Callback_Description *cb = _eo_callback_new();
#ifdef EO_DEBUG
const Efl_Callback_Array_Item *it;
const Efl_Callback_Array_Item *prev;
#endif
2013-12-25 06:13:41 -08:00
if (!cb || !array)
{
ERR("Tried adding array of callbacks with invalid values: cb: %p array: %p.", cb, array);
_eo_callback_free(cb);
return EINA_FALSE;
}
#ifdef EO_DEBUG
prev = array;
for (it = prev + 1; prev->func && it->func; it++, prev++)
{
if (efl_callbacks_cmp(prev, it) > 0)
{
ERR("Trying to insert a non sorted array callbacks (%p).", array);
_eo_callback_free(cb);
return EINA_FALSE;
}
}
#endif
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);
efl_event_callback_call(obj, EFL_EVENT_CALLBACK_ADD, (void *)array);
return EINA_TRUE;
2013-12-25 06:13:41 -08:00
}
EOLIAN static Eina_Bool
_efl_object_event_callback_array_del(Eo *obj, Efl_Object_Data *pd,
const Efl_Callback_Array_Item *array,
const void *user_data)
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description **cb;
unsigned int i;
2013-12-25 06:13:41 -08:00
for (cb = pd->callbacks, i = 0;
i < pd->callbacks_count;
cb++, i++)
2013-12-25 06:13:41 -08:00
{
if (!(*cb)->delete_me &&
((*cb)->items.item_array == array) &&
((*cb)->func_data == user_data))
2013-12-25 06:13:41 -08:00
{
(*cb)->delete_me = EINA_TRUE;
if (pd->walking_list > 0)
pd->deletions_waiting = EINA_FALSE;
else
_eo_callback_remove(pd, cb);
efl_event_callback_call(obj, EFL_EVENT_CALLBACK_DEL, (void *)array);
return EINA_TRUE;
2013-12-25 06:13:41 -08:00
}
}
DBG("Callback of object %p with function array %p and data %p not found.", obj, array, user_data);
return EINA_FALSE;
2013-12-25 06:13:41 -08:00
}
static Eina_Bool
_cb_desc_match(const Efl_Event_Description *a, const Efl_Event_Description *b, Eina_Bool legacy_compare)
{
/* If one is legacy and the other is not, strcmp. Else, pointer compare. */
if (EINA_UNLIKELY(legacy_compare && (_legacy_event_desc_is(a) != _legacy_event_desc_is(b))))
{
return !strcmp(a->name, b->name);
}
return (a == b);
}
static inline Eina_Bool
_event_callback_call(Eo *obj_id, Efl_Object_Data *pd,
const Efl_Event_Description *desc,
void *event_info,
Eina_Bool legacy_compare)
2013-12-25 06:13:41 -08:00
{
Eo_Callback_Description **cb;
Eo_Current_Callback_Description *lookup = NULL;
Eo_Current_Callback_Description saved;
Efl_Event ev;
unsigned int idx;
Eina_Bool callback_already_stopped = pd->callback_stopped;
Eina_Bool ret = EINA_TRUE;
ev.object = obj_id;
ev.desc = desc;
ev.info = event_info;
2013-12-25 06:13:41 -08:00
if (pd->callbacks_count == 0) return EINA_FALSE;
2013-12-25 06:13:41 -08:00
pd->walking_list++;
// Handle event that require to restart where we were in the nested list walking
if (desc->restart)
{
EINA_INLIST_FOREACH(pd->current, lookup)
if (lookup->desc == desc)
break;
// This is the first event to trigger it, so register it here
if (!lookup)
{
// This following trick get us a zero allocation list
saved.desc = desc;
saved.current = 0;
lookup = &saved;
// Ideally there will most of the time be only one item in this list
// But just to speed up things, prepend so we find it fast at the end
// of this function
pd->current = eina_inlist_prepend(pd->current, EINA_INLIST_GET(lookup));
}
if (!lookup->current) lookup->current = pd->callbacks_count;
idx = lookup->current;
}
else
{
idx = pd->callbacks_count;
}
for (; idx > 0; idx--)
2013-12-25 06:13:41 -08:00
{
cb = pd->callbacks + idx - 1;
if (!(*cb)->delete_me)
2013-12-25 06:13:41 -08:00
{
if ((*cb)->func_array)
{
const Efl_Callback_Array_Item *it;
2013-12-25 06:13:41 -08:00
for (it = (*cb)->items.item_array; it->func; it++)
{
// Array callbacks are sorted, break if we are getting to high.
if (!legacy_compare &&
((const unsigned char *) desc - (const unsigned char *) it->desc) < 0)
break;
if (!_cb_desc_match(it->desc, desc, legacy_compare))
continue;
if (!it->desc->unfreezable &&
(event_freeze_count || pd->event_freeze_count))
continue;
// Handle nested restart of walking list
if (lookup) lookup->current = idx - 1;
it->func((void *) (*cb)->func_data, &ev);
/* Abort callback calling if the func says so. */
if (pd->callback_stopped)
{
ret = EINA_FALSE;
goto end;
}
// We have actually walked this list during a nested call
if (lookup &&
lookup->current == 0)
goto end;
}
}
else
2013-12-25 06:13:41 -08:00
{
if (!_cb_desc_match((*cb)->items.item.desc, desc, legacy_compare))
continue;
if (!(*cb)->items.item.desc->unfreezable &&
(event_freeze_count || pd->event_freeze_count))
2013-12-25 06:13:41 -08:00
continue;
// Handle nested restart of walking list
if (lookup) lookup->current = idx - 1;
(*cb)->items.item.func((void *) (*cb)->func_data, &ev);
2013-12-25 06:13:41 -08:00
/* Abort callback calling if the func says so. */
if (pd->callback_stopped)
2013-12-25 06:13:41 -08:00
{
ret = EINA_FALSE;
goto end;
}
// We have actually walked this list during a nested call
if (lookup &&
lookup->current == 0)
goto end;
2013-12-25 06:13:41 -08:00
}
}
}
end:
// Handling restarting list walking complete exit.
if (lookup) lookup->current = 0;
if (lookup == &saved)
{
pd->current = eina_inlist_remove(pd->current, EINA_INLIST_GET(lookup));
}
2013-12-25 06:13:41 -08:00
pd->walking_list--;
_eo_callbacks_clear(pd);
pd->callback_stopped = callback_already_stopped;
2013-12-25 06:13:41 -08:00
return ret;
}
EOLIAN static Eina_Bool
_efl_object_event_callback_call(Eo *obj_id, Efl_Object_Data *pd,
const Efl_Event_Description *desc,
void *event_info)
{
return _event_callback_call(obj_id, pd, desc, event_info, EINA_FALSE);
}
EOLIAN static Eina_Bool
_efl_object_event_callback_legacy_call(Eo *obj_id, Efl_Object_Data *pd,
const Efl_Event_Description *desc,
void *event_info)
{
return _event_callback_call(obj_id, pd, desc, event_info, EINA_TRUE);
}
EOLIAN static void
_efl_object_event_callback_stop(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
{
pd->callback_stopped = EINA_TRUE;
}
static void
_efl_event_forwarder_callback(void *data, const Efl_Event *event)
2013-12-25 06:13:41 -08:00
{
Eo *new_obj = (Eo *) data;
Eina_Bool ret = EINA_FALSE;
2013-12-25 06:13:41 -08:00
ret = efl_event_callback_call(new_obj, event->desc, event->info);
2013-12-25 06:13:41 -08:00
if (!ret)
{
efl_event_callback_stop(event->object);
}
2013-12-25 06:13:41 -08:00
}
/* FIXME: Change default priority? Maybe call later? */
EOLIAN static void
_efl_object_event_callback_forwarder_add(Eo *obj, Efl_Object_Data *pd EINA_UNUSED,
const Efl_Event_Description *desc,
2013-12-25 06:13:41 -08:00
Eo *new_obj)
{
/* FIXME: Add it EO_MAGIC_RETURN(new_obj, EO_EINA_MAGIC); */
efl_event_callback_add(obj, desc, _efl_event_forwarder_callback, new_obj);
2013-12-25 06:13:41 -08:00
}
EOLIAN static void
_efl_object_event_callback_forwarder_del(Eo *obj, Efl_Object_Data *pd EINA_UNUSED,
const Efl_Event_Description *desc,
2013-12-25 06:13:41 -08:00
Eo *new_obj)
{
/* FIXME: Add it EO_MAGIC_RETURN(new_obj, EO_EINA_MAGIC); */
efl_event_callback_del(obj, desc, _efl_event_forwarder_callback, new_obj);
2013-12-25 06:13:41 -08:00
}
EOLIAN static void
_efl_object_event_freeze(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
pd->event_freeze_count++;
}
EOLIAN static void
_efl_object_event_thaw(Eo *obj, Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
if (pd->event_freeze_count > 0)
{
pd->event_freeze_count--;
}
else
{
ERR("Events for object %p have already been thawed.", obj);
}
}
EOLIAN static int
_efl_object_event_freeze_count_get(Eo *obj EINA_UNUSED, Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
return pd->event_freeze_count;
}
EOLIAN static void
_efl_object_event_global_freeze(Eo *klass EINA_UNUSED, void *pd EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
event_freeze_count++;
}
EOLIAN static void
_efl_object_event_global_thaw(Eo *klass EINA_UNUSED, void *pd 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.");
}
}
EOLIAN static int
_efl_object_event_global_freeze_count_get(Eo *klass EINA_UNUSED, void *pd EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
return event_freeze_count;
}
EOLIAN static Eina_Bool
_efl_object_composite_attach(Eo *parent_id, Efl_Object_Data *pd EINA_UNUSED, Eo *comp_obj_id)
{
EO_OBJ_POINTER_RETURN_VAL(comp_obj_id, comp_obj, EINA_FALSE);
EO_OBJ_POINTER_RETURN_VAL(parent_id, parent, EINA_FALSE);
Efl_Object_Data *comp_pd = efl_data_scope_get(comp_obj_id, EFL_OBJECT_CLASS);
/* Don't composite if we already have a composite object of this type */
{
Eina_List *itr;
Eo *emb_obj_id;
EINA_LIST_FOREACH(parent->composite_objects, itr, emb_obj_id)
{
EO_OBJ_POINTER_RETURN_VAL(emb_obj_id, emb_obj, EINA_FALSE);
if (emb_obj->klass == comp_obj->klass)
return EINA_FALSE;
}
}
if (efl_composite_part_is(comp_obj_id))
{
efl_composite_detach(comp_pd->ext->composite_parent, comp_obj_id);
}
/* Set the parent comp on the child. */
_efl_object_extension_need(comp_pd);
comp_pd->ext->composite_parent = parent_id;
parent->composite_objects = eina_list_prepend(parent->composite_objects, comp_obj_id);
return EINA_TRUE;
}
EOLIAN static Eina_Bool
_efl_object_composite_detach(Eo *parent_id, Efl_Object_Data *pd EINA_UNUSED, Eo *comp_obj_id)
{
EO_OBJ_POINTER_RETURN_VAL(comp_obj_id, comp_obj, EINA_FALSE);
EO_OBJ_POINTER_RETURN_VAL(parent_id, parent, EINA_FALSE);
if (!efl_composite_part_is(comp_obj_id))
return EINA_FALSE;
parent->composite_objects = eina_list_remove(parent->composite_objects, comp_obj_id);
/* Clear the comp parent on the child. */
{
Efl_Object_Data *comp_pd = efl_data_scope_get(comp_obj_id, EFL_OBJECT_CLASS);
comp_pd->ext->composite_parent = NULL;
_efl_object_extension_noneed(comp_pd);
}
return EINA_TRUE;
}
EOLIAN static Eina_Bool
_efl_object_composite_part_is(Eo *comp_obj_id EINA_UNUSED, Efl_Object_Data *pd)
{
return pd->ext && pd->ext->composite_parent;
}
2013-12-25 06:13:41 -08:00
/* Eo_Dbg */
EAPI void
efl_dbg_info_free(Efl_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)
{
Efl_Dbg_Info *mem = *(Efl_Dbg_Info **) _mem;
2013-12-25 06:13:41 -08:00
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 Efl_Dbg_Info **src = (const Efl_Dbg_Info **) _src;
Efl_Dbg_Info **dst = _dst;
*dst = calloc(1, sizeof(Efl_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 Efl_Dbg_Info **src = (const Efl_Dbg_Info **) type_mem;
2013-12-25 06:13:41 -08:00
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)
{
Efl_Dbg_Info **mem = _mem;
2013-12-25 06:13:41 -08:00
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)
{
Efl_Dbg_Info **ptr = _ptr;
2013-12-25 06:13:41 -08:00
*ptr = (void *) _mem;
return EINA_TRUE;
}
static const Eina_Value_Type _EFL_DBG_INFO_TYPE = {
2013-12-25 06:13:41 -08:00
EINA_VALUE_TYPE_VERSION,
sizeof(Efl_Dbg_Info *),
"Efl_Dbg_Info_Ptr",
2013-12-25 06:13:41 -08:00
_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
};
EAPI const Eina_Value_Type *EFL_DBG_INFO_TYPE = &_EFL_DBG_INFO_TYPE;
2013-12-25 06:13:41 -08:00
/* EOF event callbacks */
/* EFL_OBJECT_CLASS stuff */
#define MY_CLASS EFL_OBJECT_CLASS
2013-12-25 06:13:41 -08:00
EOLIAN static Eo *
_efl_object_constructor(Eo *obj, Efl_Object_Data *pd EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
DBG("%p - %s.", obj, efl_class_name_get(obj));
2013-12-25 06:13:41 -08:00
_eo_condtor_done(obj);
return obj;
2013-12-25 06:13:41 -08:00
}
EOLIAN static void
_efl_object_destructor(Eo *obj, Efl_Object_Data *pd)
2013-12-25 06:13:41 -08:00
{
Eo *child;
Efl_Object_Extension *ext;
DBG("%p - %s.", obj, efl_class_name_get(obj));
2013-12-25 06:13:41 -08:00
// special removal - remove from children list by hand after getting
// child handle in case unparent method is overridden and does
// extra things like removes other children too later on in the list
while (pd->children)
{
child = _eo_obj_id_get(EINA_INLIST_CONTAINER_GET(pd->children, _Eo_Object));
efl_parent_set(child, NULL);
}
/* If we are a composite object, detach children */
{
EO_OBJ_POINTER_RETURN(obj, obj_data);
Eina_List *itr, *next;
Eo *emb_obj_id;
EINA_LIST_FOREACH_SAFE(obj_data->composite_objects, itr, next, emb_obj_id)
{
efl_composite_detach(obj, emb_obj_id);
}
}
if (pd->ext && pd->ext->composite_parent)
{
efl_composite_detach(pd->ext->composite_parent, obj);
}
if (pd->parent)
{
ERR("Object '%p' still has a parent at the time of destruction.", obj);
efl_parent_set(obj, NULL);
}
_eo_generic_data_del_all(obj, pd);
_wref_destruct(pd);
_eo_callback_remove_all(pd);
2013-12-25 06:13:41 -08:00
ext = pd->ext;
if (ext)
{
eina_stringshare_del(ext->name);
ext->name = NULL;
eina_stringshare_del(ext->comment);
ext->comment = NULL;
_efl_object_extension_free(ext);
pd->ext = NULL;
}
2013-12-25 06:13:41 -08:00
_eo_condtor_done(obj);
}
EOLIAN static Eo *
_efl_object_finalize(Eo *obj, Efl_Object_Data *pd EINA_UNUSED)
{
return obj;
}
EOLIAN static void
_efl_object_class_constructor(Efl_Class *klass EINA_UNUSED)
2013-12-25 06:13:41 -08:00
{
event_freeze_count = 0;
_legacy_events_hash = eina_hash_stringshared_new(_legacy_events_hash_free_cb);
}
EOLIAN static void
_efl_object_class_destructor(Efl_Class *klass EINA_UNUSED)
{
eina_hash_free(_legacy_events_hash);
2013-12-25 06:13:41 -08:00
}
#include "efl_object.eo.c"