efl/src/lib/ecore_buffer/ecore_buffer_queue_main.c

55 lines
1.3 KiB
C
Raw Normal View History

#include <Ecore_Buffer_Queue.h>
#include "ecore_buffer_private.h"
#include "ecore_buffer_con.h"
int _ecore_buffer_queue_log_dom = -1;
static int _ecore_buffer_queue_init_count = 0;
ecore_buffer: Rename EAPI macro to ECORE_BUFFER_API in Ecore Buffer library Patch from a series of patches to rename EAPI symbols to specific library DSOs. EAPI was designed to be able to pass ```__attribute__ ((visibility ("default")))``` for symbols with GCC, which would mean that even if -fvisibility=hidden was used when compiling the library, the needed symbols would get exported. MSVC __almost__ works like GCC (or mingw) in which you can declare everything as export and it will just work (slower, but it will work). But there's a caveat: global variables will not work the same way for MSVC, but works for mingw and GCC. For global variables (as opposed to functions), MSVC requires correct DSO visibility for MSVC: instead of declaring a symbol as export for everything, you need to declare it as import when importing from another DSO and export when defining it locally. With current EAPI definitions, we get the following example working in mingw and MSVC (observe it doesn't define any global variables as exported symbols). Example 1: dll1: ``` EAPI void foo(void); EAPI void bar() { foo(); } ``` dll2: ``` EAPI void foo() { printf ("foo\n"); } ``` This works fine with API defined as __declspec(dllexport) in both cases and for gcc defining as ```__atttribute__((visibility("default")))```. However, the following: Example 2: dll1: ``` EAPI extern int foo; EAPI void foobar(void); EAPI void bar() { foo = 5; foobar(); } ``` dll2: ``` EAPI int foo = 0; EAPI void foobar() { printf ("foo %d\n", foo); } ``` This will work on mingw but will not work for MSVC. And that's why EAPI is the only solution that worked for MSVC. Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com> Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev> Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
2020-10-29 09:33:18 -07:00
ECORE_BUFFER_API int
ecore_buffer_queue_init(void)
{
if (++_ecore_buffer_queue_init_count != 1)
return _ecore_buffer_queue_init_count;
_ecore_buffer_queue_log_dom =
eina_log_domain_register("ecore_buffer_queue", EINA_COLOR_GREEN);
if (_ecore_buffer_queue_log_dom < 0)
{
EINA_LOG_ERR("Could not register log domain: ecore_buffer_queue");
goto err;
}
#ifdef DEBUG
eina_log_abort_on_critical_level_set(EINA_LOG_LEVEL_ERR);
eina_log_abort_on_critical_set(EINA_TRUE);
#endif
DBG("Ecore_Buffer_Queue Init");
if (!_ecore_buffer_con_init())
{
eina_log_domain_unregister(_ecore_buffer_queue_log_dom);
_ecore_buffer_queue_log_dom = -1;
goto err;
}
return _ecore_buffer_queue_init_count;
err:
return --_ecore_buffer_queue_init_count;
}
ecore_buffer: Rename EAPI macro to ECORE_BUFFER_API in Ecore Buffer library Patch from a series of patches to rename EAPI symbols to specific library DSOs. EAPI was designed to be able to pass ```__attribute__ ((visibility ("default")))``` for symbols with GCC, which would mean that even if -fvisibility=hidden was used when compiling the library, the needed symbols would get exported. MSVC __almost__ works like GCC (or mingw) in which you can declare everything as export and it will just work (slower, but it will work). But there's a caveat: global variables will not work the same way for MSVC, but works for mingw and GCC. For global variables (as opposed to functions), MSVC requires correct DSO visibility for MSVC: instead of declaring a symbol as export for everything, you need to declare it as import when importing from another DSO and export when defining it locally. With current EAPI definitions, we get the following example working in mingw and MSVC (observe it doesn't define any global variables as exported symbols). Example 1: dll1: ``` EAPI void foo(void); EAPI void bar() { foo(); } ``` dll2: ``` EAPI void foo() { printf ("foo\n"); } ``` This works fine with API defined as __declspec(dllexport) in both cases and for gcc defining as ```__atttribute__((visibility("default")))```. However, the following: Example 2: dll1: ``` EAPI extern int foo; EAPI void foobar(void); EAPI void bar() { foo = 5; foobar(); } ``` dll2: ``` EAPI int foo = 0; EAPI void foobar() { printf ("foo %d\n", foo); } ``` This will work on mingw but will not work for MSVC. And that's why EAPI is the only solution that worked for MSVC. Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com> Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev> Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
2020-10-29 09:33:18 -07:00
ECORE_BUFFER_API int
ecore_buffer_queue_shutdown(void)
{
if (--_ecore_buffer_queue_init_count != 0)
return _ecore_buffer_queue_init_count;
DBG("Ecore_Buffer_Queue Shutdown");
_ecore_buffer_con_shutdown();
eina_log_domain_unregister(_ecore_buffer_queue_log_dom);
_ecore_buffer_queue_log_dom = -1;
return _ecore_buffer_queue_init_count;
}