efl/legacy/eina/src/lib/eina_main.c

303 lines
6.6 KiB
C
Raw Normal View History

/* EINA - EFL data type library
* Copyright (C) 2008 Cedric Bail
*
* 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
2010-08-16 23:58:26 -07:00
#include <stdio.h>
#ifdef EFL_HAVE_WIN32_THREADS
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# undef WIN32_LEAN_AND_MEAN
#endif
#include "eina_config.h"
2009-09-03 18:48:36 -07:00
#include "eina_private.h"
#include "eina_types.h"
#include "eina_main.h"
#include "eina_error.h"
#include "eina_log.h"
#include "eina_hash.h"
2010-07-27 20:33:49 -07:00
#include "eina_binshare.h"
#include "eina_stringshare.h"
#include "eina_ustringshare.h"
#include "eina_list.h"
#include "eina_matrixsparse.h"
#include "eina_array.h"
#include "eina_counter.h"
#include "eina_benchmark.h"
#include "eina_magic.h"
#include "eina_rectangle.h"
2009-09-03 18:48:36 -07:00
#include "eina_safety_checks.h"
#include "eina_lock.h"
/*============================================================================*
2010-07-27 19:37:05 -07:00
* Local *
*============================================================================*/
/**
* @cond LOCAL
*/
2010-08-16 23:58:26 -07:00
static Eina_Version _version = { VMAJ, VMIN, VMIC, VREV };
static int _eina_main_count = 0;
#ifdef EFL_HAVE_THREADS
static int _eina_main_thread_count = 0;
#endif
2009-09-03 18:48:36 -07:00
static int _eina_log_dom = -1;
#ifdef ERR
#undef ERR
#endif
2009-09-03 18:48:36 -07:00
#define ERR(...) EINA_LOG_DOM_ERR(_eina_log_dom, __VA_ARGS__)
#ifdef DBG
#undef DBG
#endif
2009-09-03 18:48:36 -07:00
#define DBG(...) EINA_LOG_DOM_DBG(_eina_log_dom, __VA_ARGS__)
EAPI Eina_Bool _eina_threads_activated = EINA_FALSE;
#ifdef EINA_HAVE_DEBUG_THREADS
EAPI int _eina_threads_debug = 0;
#endif
static Eina_Lock _mutex;
/* place module init/shutdown functions here to avoid other modules
* calling them by mistake.
*/
2010-07-27 19:37:05 -07:00
#define S(x) extern Eina_Bool eina_ ## x ## _init(void); \
extern Eina_Bool eina_ ## x ## _shutdown(void)
S(log);
S(error);
S(safety_checks);
S(magic_string);
S(iterator);
S(accessor);
S(array);
S(module);
S(mempool);
S(list);
2010-07-27 20:33:49 -07:00
S(binshare);
2010-07-27 19:37:05 -07:00
S(stringshare);
S(ustringshare);
S(matrixsparse);
S(convert);
S(counter);
S(benchmark);
S(rectangle);
S(strbuf);
S(ustrbuf);
S(quadtree);
S(simple_xml);
S(file);
#undef S
struct eina_desc_setup
{
const char *name;
Eina_Bool (*init)(void);
Eina_Bool (*shutdown)(void);
};
static const struct eina_desc_setup _eina_desc_setup[] = {
2010-07-27 19:37:05 -07:00
#define S(x) {# x, eina_ ## x ## _init, eina_ ## x ## _shutdown}
/* log is a special case as it needs printf */
S(error),
S(safety_checks),
S(magic_string),
S(iterator),
S(accessor),
S(array),
S(module),
S(mempool),
S(list),
2010-07-27 20:33:49 -07:00
S(binshare),
2010-07-27 19:37:05 -07:00
S(stringshare),
S(ustringshare),
S(matrixsparse),
S(convert),
S(counter),
S(benchmark),
S(rectangle),
S(strbuf),
S(ustrbuf),
S(quadtree),
S(simple_xml),
S(file)
#undef S
};
2010-07-27 19:37:05 -07:00
static const size_t _eina_desc_setup_len = sizeof(_eina_desc_setup) /
sizeof(_eina_desc_setup[0]);
static void
_eina_shutdown_from_desc(const struct eina_desc_setup *itr)
{
for (itr--; itr >= _eina_desc_setup; itr--)
{
2010-07-27 19:37:05 -07:00
if (!itr->shutdown())
ERR("Problems shutting down eina module '%s', ignored.", itr->name);
}
eina_log_domain_unregister(_eina_log_dom);
_eina_log_dom = -1;
eina_log_shutdown();
}
/**
* @endcond
*/
/*============================================================================*
2010-07-27 19:37:05 -07:00
* Global *
*============================================================================*/
2010-08-16 23:58:26 -07:00
/*============================================================================*
2010-07-27 19:37:05 -07:00
* API *
*============================================================================*/
2010-08-16 23:58:26 -07:00
/**
* @var eina_version
* @brief Eina version (defined at configuration time)
*/
EAPI Eina_Version *eina_version = &_version;
EAPI int
eina_init(void)
{
const struct eina_desc_setup *itr, *itr_end;
if (EINA_LIKELY(_eina_main_count > 0))
2010-07-27 19:37:05 -07:00
return ++_eina_main_count;
2009-09-03 18:48:36 -07:00
if (!eina_log_init())
{
2010-07-27 19:37:05 -07:00
fprintf(stderr, "Could not initialize eina logging system.\n");
return 0;
}
2010-07-27 19:37:05 -07:00
2009-09-03 18:48:36 -07:00
_eina_log_dom = eina_log_domain_register("eina", EINA_LOG_COLOR_DEFAULT);
if (_eina_log_dom < 0)
{
2010-07-27 19:37:05 -07:00
EINA_LOG_ERR("Could not register log domain: eina");
eina_log_shutdown();
return 0;
2009-09-03 18:48:36 -07:00
}
itr = _eina_desc_setup;
itr_end = itr + _eina_desc_setup_len;
for (; itr < itr_end; itr++)
{
2010-07-27 19:37:05 -07:00
if (!itr->init())
{
ERR("Could not initialize eina module '%s'.", itr->name);
_eina_shutdown_from_desc(itr);
return 0;
}
}
eina_lock_new(&_mutex);
#ifdef EINA_HAVE_DEBUG_THREADS
if (getenv("EINA_DEBUG_THREADS"))
_eina_threads_debug = atoi(getenv("EINA_DEBUG_THREADS");
#endif
_eina_main_count = 1;
return 1;
}
EAPI int
eina_shutdown(void)
{
_eina_main_count--;
if (EINA_UNLIKELY(_eina_main_count == 0))
{
_eina_shutdown_from_desc(_eina_desc_setup + _eina_desc_setup_len);
eina_lock_free(&_mutex);
}
2010-07-27 19:37:05 -07:00
return _eina_main_count;
}
EAPI int
eina_threads_init(void)
{
#ifdef EFL_HAVE_THREADS
2010-07-27 19:37:05 -07:00
int ret;
2010-07-27 19:37:05 -07:00
eina_lock_take(&_mutex);
2010-07-27 19:37:05 -07:00
++_eina_main_thread_count;
ret = _eina_main_thread_count;
if(_eina_main_thread_count > 1)
{
eina_lock_release(&_mutex);
return ret;
2010-07-27 19:37:05 -07:00
}
2010-07-27 19:37:05 -07:00
eina_share_common_threads_init();
eina_log_threads_init();
_eina_threads_activated = EINA_TRUE;
eina_lock_release(&_mutex);
2010-07-27 19:37:05 -07:00
return ret;
#else
2010-07-27 19:37:05 -07:00
return 0;
#endif
}
EAPI int
eina_threads_shutdown(void)
{
#ifdef EFL_HAVE_THREADS
2010-07-27 19:37:05 -07:00
int ret;
eina_lock_take(&_mutex);
2010-07-27 19:37:05 -07:00
ret = --_eina_main_thread_count;
if(_eina_main_thread_count > 0)
{
eina_lock_release(&_mutex);
2010-07-27 19:37:05 -07:00
return ret;
}
2010-07-27 19:37:05 -07:00
eina_share_common_threads_shutdown();
eina_log_threads_shutdown();
eina_lock_release(&_mutex);
_eina_threads_activated = EINA_FALSE;
2010-07-27 19:37:05 -07:00
return ret;
#else
2010-07-27 19:37:05 -07:00
return 0;
#endif
}
/**
* @}
*/