efl/src/lib/eio/efl_io_manager.c

583 lines
16 KiB
C

/* EIO - EFL data type library
* Copyright (C) 2016 Enlightenment Developers:
* Felipe Magno de Almeida <felipe@expertisesolutions.com.br>
* Lauro Moura <lauromoura@expertisesolutions.com.br>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library;
* if not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eo.h>
#include <Ecore.h>
#include "Eio.h"
#include "eio_private.h"
typedef struct _Efl_Io_Manager_Data Efl_Io_Manager_Data;
struct _Efl_Io_Manager_Data
{
Eo *object;
Eina_List *operations;
};
typedef Eio_File* (*Efl_Io_Manager_Direct_Ls_Func)(const char *path, Eio_Filter_Direct_Cb, Eio_Main_Direct_Cb, Eio_Done_Cb, Eio_Error_Cb, const void *data);
typedef struct _Job_Closure Job_Closure;
struct _Job_Closure
{
Eo *object;
Efl_Io_Manager_Data *pdata;
Efl_Promise *promise;
Eio_File *file;
Eina_Bool delete_me;
void *delayed_arg;
Efl_Io_Manager_Direct_Ls_Func direct_func; // Used when dispatching direct ls funcs.
};
/* Helper functions */
static void
_efl_io_manager_future_cancel(void *data, const Eina_Promise *dead_ptr EINA_UNUSED)
{
eio_file_cancel(data);
}
static void
_future_file_done_cb(void *data, Eio_File *handler)
{
Eina_Promise *p = data;
eina_promise_resolve(p, eina_value_uint64_init(handler->length));
}
static void
_future_file_error_cb(void *data,
Eio_File *handler EINA_UNUSED,
int error)
{
Eina_Promise *p = data;
eina_promise_reject(p, error);
}
static void
_no_future(void *data, const Efl_Event *ev EINA_UNUSED)
{
Eio_File *h = data;
eio_file_cancel(h);
}
static void
_forced_shutdown(void *data, const Efl_Event *ev EINA_UNUSED)
{
Eio_File *h = data;
eio_file_cancel(h);
// FIXME: handle memory lock here !
// Acceptable strategy will be to unlock all thread as
// if we were freeing some memory
// FIXME: Handle long to finish thread
ecore_thread_wait(h->thread, 1.0);
}
static void
_progress(void *data EINA_UNUSED, const Efl_Event *ev)
{
efl_key_data_set(ev->object, "_eio.progress", (void*) EINA_TRUE);
}
EFL_CALLBACKS_ARRAY_DEFINE(promise_progress_handling,
{ EFL_PROMISE_EVENT_FUTURE_PROGRESS_SET, _progress },
{ EFL_PROMISE_EVENT_FUTURE_NONE, _no_future },
{ EFL_EVENT_DEL, _forced_shutdown });
EFL_CALLBACKS_ARRAY_DEFINE(promise_handling,
{ EFL_PROMISE_EVENT_FUTURE_NONE, _no_future },
{ EFL_EVENT_DEL, _forced_shutdown });
static void
_file_error_cb(void *data, Eio_File *handler, int error)
{
Efl_Promise *p = data;
efl_event_callback_array_del(p, promise_handling(), handler);
efl_promise_failed_set(p, error);
efl_del(p);
}
static void
_file_done_cb(void *data, Eio_File *handler)
{
Efl_Promise *p = data;
uint64_t *v = calloc(1, sizeof (uint64_t));
efl_event_callback_array_del(p, promise_handling(), handler);
if (!v)
{
efl_promise_failed_set(p, ENOMEM);
goto end;
}
*v = handler->length;
efl_promise_value_set(p, v, free);
end:
efl_del(p);
}
/* Basic listing callbacks */
static void
_cleanup_info_progress(void *data)
{
Eina_Array *existing = data;
Eio_File_Direct_Info *d; // This is a trick because we use the head of the structure
Eina_Array_Iterator it;
unsigned int i;
EINA_ARRAY_ITER_NEXT(existing, i, d, it)
eio_direct_info_free(d);
eina_array_free(existing);
}
static void
_future_string_cb(void *data EINA_UNUSED, Eio_File *handler, Eina_Array *gather)
{
EflIoPath paths = ecore_thread_local_data_find(handler->thread, ".paths");
void *paths_data = ecore_thread_local_data_find(handler->thread, ".paths_data");
Eina_Accessor *access;
unsigned int count;
Eina_Stringshare *s;
if (!paths)
{
eina_array_free(gather);
return ;
}
access = eina_array_accessor_new(gather);
paths(paths_data, access);
// Cleanup strings, accessor and array
EINA_ACCESSOR_FOREACH(access, count, s)
eina_stringshare_del(s);
eina_accessor_free(access);
eina_array_free(gather);
}
/* Direct listing callbacks */
static void
_file_info_cb(void *data, Eio_File *handler, Eina_Array *gather)
{
Efl_Promise *p = data;
Eina_Array *existing = efl_key_data_get(p, "_eio.stored");
void **tmp;
// If a future is set, but without progress, we should assume
// that we should discard all future progress. [[FIXME]]
if (existing)
{
tmp = realloc(existing->data, sizeof (void*) * (existing->count + gather->count));
if (!tmp)
{
eina_array_free(gather);
eina_array_free(existing);
efl_key_data_set(p, "_eio.stored", NULL);
handler->error = ENOMEM;
eio_file_cancel(handler);
return ;
}
existing->data = tmp;
memcpy(existing->data + existing->count, gather->data, gather->count * sizeof (void*));
existing->count += gather->count;
existing->total = existing->count;
eina_array_free(gather);
}
else
{
existing = gather;
}
if (!efl_key_data_get(p, "_eio.progress"))
{
efl_key_data_set(p, "_eio.stored", existing);
return ;
}
efl_promise_progress_set(p, existing);
efl_key_data_set(p, "_eio.stored", NULL);
_cleanup_info_progress(existing);
}
/* Method implementations */
static Efl_Future *
_efl_io_manager_direct_ls(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
Eina_Bool recursive)
{
Efl_Promise *p;
Eio_File *h;
Eo *loop = efl_loop_get(obj);
p = efl_add(EFL_PROMISE_CLASS, loop);
if (!p) return NULL;
if (!recursive)
{
h = _eio_file_direct_ls(path,
_file_info_cb,
_file_done_cb,
_file_error_cb,
p);
}
else
{
h = _eio_dir_direct_ls(path,
_file_info_cb,
_file_done_cb,
_file_error_cb,
p);
}
if (!h) goto end;
efl_event_callback_array_add(p, promise_progress_handling(), h);
return efl_promise_future_get(p);
end:
efl_del(p);
return NULL;
}
static Efl_Future *
_efl_io_manager_stat_ls(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
Eina_Bool recursive)
{
Efl_Promise *p;
Eio_File *h;
Eo *loop = efl_loop_get(obj);
p = efl_add(EFL_PROMISE_CLASS, loop);
if (!p) return NULL;
if (!recursive)
{
h = _eio_file_stat_ls(path,
_file_info_cb,
_file_done_cb,
_file_error_cb,
p);
}
else
{
h = _eio_dir_stat_ls(path,
_file_info_cb,
_file_done_cb,
_file_error_cb,
p);
}
if (!h) goto end;
efl_event_callback_array_add(p, promise_progress_handling(), h);
return efl_promise_future_get(p);
end:
efl_del(p);
return NULL;
}
static Eina_Future *
_efl_io_manager_ls(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
void *paths_data, EflIoPath paths, Eina_Free_Cb paths_free_cb)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = _eio_file_ls(path,
_future_string_cb,
_future_file_done_cb,
_future_file_error_cb,
p);
if (!h) goto end;
ecore_thread_local_data_add(h->thread, ".paths", paths, NULL, EINA_TRUE);
ecore_thread_local_data_add(h->thread, ".paths_data", paths_data, paths_free_cb, EINA_TRUE);
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return future;
}
/* Stat function */
EINA_VALUE_STRUCT_DESC_DEFINE(_eina_stat_desc,
NULL,
sizeof (Eina_Stat),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, dev),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, ino),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_UINT, Eina_Stat, mode),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_UINT, Eina_Stat, nlink),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_UINT, Eina_Stat, uid),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_UINT, Eina_Stat, gid),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, rdev),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, size),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, blksize),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, blocks),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_TIMESTAMP, Eina_Stat, atime),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, atimensec),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_TIMESTAMP, Eina_Stat, mtime),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, mtimensec),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_TIMESTAMP, Eina_Stat, ctime),
EINA_VALUE_STRUCT_MEMBER(EINA_VALUE_TYPE_ULONG, Eina_Stat, ctimensec));
static void
_file_stat_done_cb(void *data, Eio_File *handle EINA_UNUSED, const Eina_Stat *st)
{
const Eina_Value_Struct value = { _eina_stat_desc(), (void*) st };
Eina_Promise *p = data;
Eina_Value r = EINA_VALUE_EMPTY;
if (!eina_value_setup(&r, EINA_VALUE_TYPE_STRUCT))
goto on_error;
if (!eina_value_pset(&r, &value))
goto on_error;
eina_promise_resolve(p, r);
return ;
on_error:
eina_value_flush(&r);
eina_promise_reject(p, eina_error_get());
}
static Eina_Future *
_efl_io_manager_stat(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = eio_file_direct_stat(path,
_file_stat_done_cb,
_file_error_cb,
p);
if (!h) goto end;
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return future;
}
/* eXtended attribute manipulation */
static Eina_Future *
_efl_io_manager_xattr_ls(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
void *paths_data, EflIoPath paths, Eina_Free_Cb paths_free_cb)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = _eio_file_xattr(path,
_future_string_cb,
_future_file_done_cb,
_future_file_error_cb,
p);
if (!h) goto end;
// There is no race condition here as all the callback are called in the main loop after this
ecore_thread_local_data_add(h->thread, ".paths", paths, NULL, EINA_TRUE);
ecore_thread_local_data_add(h->thread, ".paths_data", paths_data, paths_free_cb, EINA_TRUE);
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return efl_future_Eina_FutureXXX_then(obj, future);;
}
static void
_future_file_done_data_cb(void *data, Eio_File *handler EINA_UNUSED, const char *attr_data, unsigned int size)
{
Eina_Promise *p = data;
Eina_Value_Blob blob = { EINA_VALUE_BLOB_OPERATIONS_MALLOC, NULL, size };
Eina_Value v = EINA_VALUE_EMPTY;
char *tmp;
tmp = malloc(size);
memcpy(tmp, attr_data, size);
blob.memory = tmp;
eina_value_setup(&v, EINA_VALUE_TYPE_BLOB);
eina_value_set(&v, &blob);
eina_promise_resolve(p, v);
}
static Eina_Future *
_efl_io_manager_xattr_set(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
const char *attribute,
Eina_Binbuf *data,
Eina_Xattr_Flags flags)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = eio_file_xattr_set(path, attribute,
(const char *) eina_binbuf_string_get(data),
eina_binbuf_length_get(data),
flags,
_future_file_done_cb,
_future_file_error_cb,
p);
if (!h) goto end;
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return future;
}
static Eina_Future *
_efl_io_manager_xattr_get(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
const char *attribute)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = eio_file_xattr_get(path, attribute,
_future_file_done_data_cb,
_future_file_error_cb,
p);
if (!h) goto end;
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return future;
}
static void
_future_file_open_cb(void *data, Eio_File *handler EINA_UNUSED, Eina_File *file)
{
Eina_Promise *p = data;
Eina_Value v = EINA_VALUE_EMPTY;
eina_value_setup(&v, EINA_VALUE_TYPE_FILE);
eina_value_set(&v, file);
eina_promise_resolve(p, v);
}
static Eina_Future *
_efl_io_manager_open(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
const char *path,
Eina_Bool shared)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = eio_file_open(path, shared,
_future_file_open_cb,
_future_file_error_cb,
p);
if (!h) goto end;
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return future;
}
static Eina_Future *
_efl_io_manager_close(Eo *obj,
Efl_Io_Manager_Data *pd EINA_UNUSED,
Eina_File *file)
{
Eina_Promise *p;
Eina_Future *future;
Eio_File *h;
p = efl_loop_promise_new(obj, _efl_io_manager_future_cancel, NULL);
if (!p) return NULL;
future = eina_future_new(p);
h = eio_file_close(file,
_future_file_done_cb,
_future_file_error_cb,
p);
if (!h) goto end;
eina_promise_data_set(p, h);
return efl_future_Eina_FutureXXX_then(obj, future);
end:
return future;
}
#include "efl_io_manager.eo.c"