mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-05 04:35:46 +00:00
make events queue in the bg
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@152 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
e16f28d529
commit
03533ad0f3
646
aclocal.m4
vendored
646
aclocal.m4
vendored
File diff suppressed because it is too large
Load Diff
@ -30,7 +30,7 @@ AC_PROG_GCC_TRADITIONAL
|
|||||||
AC_FUNC_MALLOC
|
AC_FUNC_MALLOC
|
||||||
AC_TYPE_SIGNAL
|
AC_TYPE_SIGNAL
|
||||||
AC_FUNC_STRFTIME
|
AC_FUNC_STRFTIME
|
||||||
AC_CHECK_FUNCS([gethostname])
|
AC_CHECK_FUNCS([gethostname vasprintf])
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
libs/jrtp4c/Makefile
|
libs/jrtp4c/Makefile
|
||||||
|
@ -55,6 +55,9 @@
|
|||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#undef HAVE_UNISTD_H
|
#undef HAVE_UNISTD_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `vasprintf' function. */
|
||||||
|
#undef HAVE_VASPRINTF
|
||||||
|
|
||||||
/* Name of package */
|
/* Name of package */
|
||||||
#undef PACKAGE
|
#undef PACKAGE
|
||||||
|
|
||||||
|
@ -118,6 +118,11 @@ extern "C" {
|
|||||||
#include <switch_buffer.h>
|
#include <switch_buffer.h>
|
||||||
#include <switch_event.h>
|
#include <switch_event.h>
|
||||||
|
|
||||||
|
#ifndef WIN32
|
||||||
|
#include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -132,6 +132,8 @@ typedef enum {
|
|||||||
SWITCH_EVENT_ANSWER_CHAN,
|
SWITCH_EVENT_ANSWER_CHAN,
|
||||||
SWITCH_EVENT_HANGUP_CHAN,
|
SWITCH_EVENT_HANGUP_CHAN,
|
||||||
SWITCH_EVENT_STARTUP,
|
SWITCH_EVENT_STARTUP,
|
||||||
|
SWITCH_EVENT_EVENT_SHUTDOWN,
|
||||||
|
SWITCH_EVENT_SHUTDOWN,
|
||||||
SWITCH_EVENT_ALL
|
SWITCH_EVENT_ALL
|
||||||
} switch_event_t;
|
} switch_event_t;
|
||||||
|
|
||||||
|
@ -57,3 +57,15 @@ SWITCH_MOD_DECLARE(switch_status) switch_module_load(switch_loadable_module_inte
|
|||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef TORTURE_ME
|
||||||
|
SWITCH_MOD_DECLARE(switch_status) switch_module_runtime(void)
|
||||||
|
{
|
||||||
|
for(;;) {
|
||||||
|
int x;
|
||||||
|
for(x = 0; x < 100; x++) {
|
||||||
|
switch_event_fire(SWITCH_EVENT_CUSTOM, "hello world");
|
||||||
|
}
|
||||||
|
switch_yield(100000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <switch_console.h>
|
#include <switch_console.h>
|
||||||
|
#include <switch.h>
|
||||||
|
|
||||||
static int switch_console_process(char *cmd)
|
static int switch_console_process(char *cmd)
|
||||||
{
|
{
|
||||||
@ -98,7 +99,7 @@ SWITCH_DECLARE(void) switch_console_printf(switch_text_channel channel, char *fi
|
|||||||
filep = p + 1;
|
filep = p + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef vasprintf
|
#ifdef HAVE_VASPRINTF
|
||||||
ret = vasprintf(&data, fmt, ap);
|
ret = vasprintf(&data, fmt, ap);
|
||||||
#else
|
#else
|
||||||
data = (char *) malloc(2048);
|
data = (char *) malloc(2048);
|
||||||
|
@ -1549,16 +1549,6 @@ SWITCH_DECLARE(switch_status) switch_core_init(void)
|
|||||||
SWITCH_DECLARE(switch_status) switch_core_destroy(void)
|
SWITCH_DECLARE(switch_status) switch_core_destroy(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
switch_event_shutdown();
|
|
||||||
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Closing Event Engine.\n");
|
|
||||||
|
|
||||||
if (runtime.memory_pool) {
|
|
||||||
apr_pool_destroy(runtime.memory_pool);
|
|
||||||
apr_terminate();
|
|
||||||
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Unallocated memory pool.\n");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef EMBED_PERL
|
#ifdef EMBED_PERL
|
||||||
if (runtime.my_perl) {
|
if (runtime.my_perl) {
|
||||||
perl_destruct(runtime.my_perl);
|
perl_destruct(runtime.my_perl);
|
||||||
@ -1568,6 +1558,15 @@ SWITCH_DECLARE(switch_status) switch_core_destroy(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Closing Event Engine.\n");
|
||||||
|
switch_event_shutdown();
|
||||||
|
|
||||||
|
if (runtime.memory_pool) {
|
||||||
|
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Unallocating memory pool.\n");
|
||||||
|
apr_pool_destroy(runtime.memory_pool);
|
||||||
|
apr_terminate();
|
||||||
|
}
|
||||||
|
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,8 +34,8 @@
|
|||||||
static switch_event *EVENT_QUEUE_HEAD;
|
static switch_event *EVENT_QUEUE_HEAD;
|
||||||
static switch_event *EVENT_QUEUE_WORK;
|
static switch_event *EVENT_QUEUE_WORK;
|
||||||
static switch_event_node *EVENT_NODES[SWITCH_EVENT_ALL+1] = {NULL};
|
static switch_event_node *EVENT_NODES[SWITCH_EVENT_ALL+1] = {NULL};
|
||||||
static switch_mutex_t *ELOCK = NULL;
|
static switch_mutex_t *BLOCK = NULL;
|
||||||
static switch_mutex_t *MUTEX = NULL;
|
static switch_mutex_t *QLOCK = NULL;
|
||||||
static switch_memory_pool *EPOOL = NULL;
|
static switch_memory_pool *EPOOL = NULL;
|
||||||
switch_thread_cond_t *COND;
|
switch_thread_cond_t *COND;
|
||||||
|
|
||||||
@ -51,6 +51,8 @@ static char *EVENT_NAMES[] = {
|
|||||||
"ANSWER_CHAN",
|
"ANSWER_CHAN",
|
||||||
"HANGUP_CHAN",
|
"HANGUP_CHAN",
|
||||||
"STARTUP",
|
"STARTUP",
|
||||||
|
"EVENT_SHUTDOWN",
|
||||||
|
"SHUTDOWN",
|
||||||
"ALL"
|
"ALL"
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -59,43 +61,46 @@ static void * SWITCH_THREAD_FUNC switch_event_thread(switch_thread *thread, void
|
|||||||
switch_event_node *enp;
|
switch_event_node *enp;
|
||||||
switch_event *event = NULL, *out_event = NULL;
|
switch_event *event = NULL, *out_event = NULL;
|
||||||
switch_event_t e;
|
switch_event_t e;
|
||||||
|
switch_mutex_t *mutex = NULL;
|
||||||
|
|
||||||
assert(ELOCK != NULL);
|
switch_mutex_init(&mutex, SWITCH_MUTEX_NESTED, EPOOL);
|
||||||
|
switch_thread_cond_create(&COND, EPOOL);
|
||||||
|
switch_mutex_lock(mutex);
|
||||||
|
|
||||||
|
assert(QLOCK != NULL);
|
||||||
assert(EPOOL != NULL);
|
assert(EPOOL != NULL);
|
||||||
|
|
||||||
THREAD_RUNNING = 1;
|
THREAD_RUNNING = 1;
|
||||||
while(THREAD_RUNNING == 1) {
|
while(THREAD_RUNNING == 1) {
|
||||||
switch_thread_cond_wait(COND, MUTEX);
|
switch_thread_cond_wait(COND, mutex);
|
||||||
|
switch_mutex_lock(QLOCK);
|
||||||
if (THREAD_RUNNING == 1) {
|
/* <LOCKED> -----------------------------------------------*/
|
||||||
switch_mutex_lock(ELOCK);
|
EVENT_QUEUE_WORK = EVENT_QUEUE_HEAD;
|
||||||
/* <LOCKED> -----------------------------------------------*/
|
EVENT_QUEUE_HEAD = NULL;
|
||||||
EVENT_QUEUE_WORK = EVENT_QUEUE_HEAD;
|
switch_mutex_unlock(QLOCK);
|
||||||
EVENT_QUEUE_HEAD = NULL;
|
/* </LOCKED> -----------------------------------------------*/
|
||||||
switch_mutex_unlock(ELOCK);
|
|
||||||
/* </LOCKED> -----------------------------------------------*/
|
|
||||||
}
|
|
||||||
|
|
||||||
for(event = EVENT_QUEUE_WORK; event;) {
|
for(event = EVENT_QUEUE_WORK; event;) {
|
||||||
out_event = event;
|
out_event = event;
|
||||||
event = event->next;
|
event = event->next;
|
||||||
out_event->next = NULL;
|
out_event->next = NULL;
|
||||||
if (THREAD_RUNNING == 1) {
|
for(e = out_event->event;; e = SWITCH_EVENT_ALL) {
|
||||||
for(e = out_event->event;; e = SWITCH_EVENT_ALL) {
|
for(enp = EVENT_NODES[e]; enp; enp = enp->next) {
|
||||||
for(enp = EVENT_NODES[e]; enp; enp = enp->next) {
|
if ((enp->event == out_event->event || enp->event == SWITCH_EVENT_ALL) && (enp->subclass == out_event->subclass || enp->subclass < 0)) {
|
||||||
if ((enp->event == out_event->event || enp->event == SWITCH_EVENT_ALL) && (enp->subclass == out_event->subclass || enp->subclass < 0)) {
|
enp->callback(out_event);
|
||||||
enp->callback(out_event);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (e == SWITCH_EVENT_ALL) {
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (e == SWITCH_EVENT_ALL) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
free(out_event->data);
|
free(out_event->data);
|
||||||
free(out_event);
|
free(out_event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
THREAD_RUNNING = 0;
|
THREAD_RUNNING = 0;
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -104,7 +109,7 @@ static void * SWITCH_THREAD_FUNC switch_event_thread(switch_thread *thread, void
|
|||||||
|
|
||||||
SWITCH_DECLARE(char *) switch_event_name(switch_event_t event)
|
SWITCH_DECLARE(char *) switch_event_name(switch_event_t event)
|
||||||
{
|
{
|
||||||
assert(ELOCK != NULL);
|
assert(BLOCK != NULL);
|
||||||
assert(EPOOL != NULL);
|
assert(EPOOL != NULL);
|
||||||
|
|
||||||
return EVENT_NAMES[event];
|
return EVENT_NAMES[event];
|
||||||
@ -114,10 +119,9 @@ SWITCH_DECLARE(switch_status) switch_event_shutdown(void)
|
|||||||
{
|
{
|
||||||
THREAD_RUNNING = -1;
|
THREAD_RUNNING = -1;
|
||||||
|
|
||||||
switch_thread_cond_signal(COND);
|
switch_event_fire(SWITCH_EVENT_EVENT_SHUTDOWN, "Event System Shutting Down");
|
||||||
|
|
||||||
while(THREAD_RUNNING) {
|
while(THREAD_RUNNING) {
|
||||||
switch_yield(100);
|
switch_yield(1000);
|
||||||
}
|
}
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
@ -133,20 +137,19 @@ SWITCH_DECLARE(switch_status) switch_event_init(switch_memory_pool *pool)
|
|||||||
assert(pool != NULL);
|
assert(pool != NULL);
|
||||||
EPOOL = pool;
|
EPOOL = pool;
|
||||||
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Activate Eventing Engine.\n");
|
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Activate Eventing Engine.\n");
|
||||||
switch_mutex_init(&ELOCK, SWITCH_MUTEX_NESTED, EPOOL);
|
switch_mutex_init(&BLOCK, SWITCH_MUTEX_NESTED, EPOOL);
|
||||||
|
switch_mutex_init(&QLOCK, SWITCH_MUTEX_NESTED, EPOOL);
|
||||||
switch_mutex_init(&MUTEX, SWITCH_MUTEX_NESTED, pool);
|
|
||||||
switch_thread_cond_create(&COND, pool);
|
|
||||||
switch_mutex_lock(MUTEX);
|
|
||||||
|
|
||||||
switch_thread_create(&thread,
|
switch_thread_create(&thread,
|
||||||
thd_attr,
|
thd_attr,
|
||||||
switch_event_thread,
|
switch_event_thread,
|
||||||
NULL,
|
NULL,
|
||||||
pool
|
EPOOL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
while(!THREAD_RUNNING) {
|
||||||
|
switch_yield(1000);
|
||||||
|
}
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -154,9 +157,9 @@ SWITCH_DECLARE(switch_status) switch_event_init(switch_memory_pool *pool)
|
|||||||
SWITCH_DECLARE(switch_status) switch_event_fire_subclass(switch_event_t event, int subclass, char *data)
|
SWITCH_DECLARE(switch_status) switch_event_fire_subclass(switch_event_t event, int subclass, char *data)
|
||||||
{
|
{
|
||||||
|
|
||||||
switch_event *new_event;
|
switch_event *new_event, *ep;
|
||||||
|
|
||||||
assert(ELOCK != NULL);
|
assert(BLOCK != NULL);
|
||||||
assert(EPOOL != NULL);
|
assert(EPOOL != NULL);
|
||||||
|
|
||||||
if (!(new_event = malloc(sizeof(*new_event)))) {
|
if (!(new_event = malloc(sizeof(*new_event)))) {
|
||||||
@ -168,15 +171,17 @@ SWITCH_DECLARE(switch_status) switch_event_fire_subclass(switch_event_t event, i
|
|||||||
new_event->subclass = subclass;
|
new_event->subclass = subclass;
|
||||||
new_event->data = strdup(data ? data : "");
|
new_event->data = strdup(data ? data : "");
|
||||||
|
|
||||||
switch_mutex_lock(ELOCK);
|
switch_mutex_lock(QLOCK);
|
||||||
/* <LOCKED> -----------------------------------------------*/
|
/* <LOCKED> -----------------------------------------------*/
|
||||||
if (EVENT_QUEUE_HEAD) {
|
for(ep = EVENT_QUEUE_HEAD; ep && ep->next; ep = ep->next);
|
||||||
new_event->next = EVENT_QUEUE_HEAD;
|
|
||||||
}
|
|
||||||
EVENT_QUEUE_HEAD = new_event;
|
|
||||||
switch_mutex_unlock(ELOCK);
|
|
||||||
/* </LOCKED> -----------------------------------------------*/
|
|
||||||
|
|
||||||
|
if (ep) {
|
||||||
|
ep->next = new_event;
|
||||||
|
} else {
|
||||||
|
EVENT_QUEUE_HEAD = new_event;
|
||||||
|
}
|
||||||
|
switch_mutex_unlock(QLOCK);
|
||||||
|
/* </LOCKED> -----------------------------------------------*/
|
||||||
switch_thread_cond_signal(COND);
|
switch_thread_cond_signal(COND);
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
@ -185,11 +190,11 @@ SWITCH_DECLARE(switch_status) switch_event_bind(char *id, switch_event_t event,
|
|||||||
{
|
{
|
||||||
switch_event_node *event_node;
|
switch_event_node *event_node;
|
||||||
|
|
||||||
assert(ELOCK != NULL);
|
assert(BLOCK != NULL);
|
||||||
assert(EPOOL != NULL);
|
assert(EPOOL != NULL);
|
||||||
|
|
||||||
if (event <= SWITCH_EVENT_ALL && (event_node = switch_core_alloc(EPOOL, sizeof(switch_event_node)))) {
|
if (event <= SWITCH_EVENT_ALL && (event_node = switch_core_alloc(EPOOL, sizeof(switch_event_node)))) {
|
||||||
switch_mutex_lock(ELOCK);
|
switch_mutex_lock(BLOCK);
|
||||||
/* <LOCKED> -----------------------------------------------*/
|
/* <LOCKED> -----------------------------------------------*/
|
||||||
event_node->id = switch_core_strdup(EPOOL, id);
|
event_node->id = switch_core_strdup(EPOOL, id);
|
||||||
event_node->event = event;
|
event_node->event = event;
|
||||||
@ -199,7 +204,7 @@ SWITCH_DECLARE(switch_status) switch_event_bind(char *id, switch_event_t event,
|
|||||||
event_node->next = EVENT_NODES[event];
|
event_node->next = EVENT_NODES[event];
|
||||||
}
|
}
|
||||||
EVENT_NODES[event] = event_node;
|
EVENT_NODES[event] = event_node;
|
||||||
switch_mutex_unlock(ELOCK);
|
switch_mutex_unlock(BLOCK);
|
||||||
/* </LOCKED> -----------------------------------------------*/
|
/* </LOCKED> -----------------------------------------------*/
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user