mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Backported app_stasis fix from stasis-http branch.
The hash and compare functions for the control container was reusing the wrong ones, causing some problems. I fixed it, but in the wrong branch. Oh well, it happens. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@385116 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -35,6 +35,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
#include "asterisk/app_stasis.h"
|
#include "asterisk/app_stasis.h"
|
||||||
#include "asterisk/astobj2.h"
|
#include "asterisk/astobj2.h"
|
||||||
#include "asterisk/channel.h"
|
#include "asterisk/channel.h"
|
||||||
|
#include "asterisk/lock.h"
|
||||||
#include "asterisk/module.h"
|
#include "asterisk/module.h"
|
||||||
#include "asterisk/stasis.h"
|
#include "asterisk/stasis.h"
|
||||||
#include "asterisk/strings.h"
|
#include "asterisk/strings.h"
|
||||||
@@ -48,7 +49,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
<para>Name of the application to invoke.</para>
|
<para>Name of the application to invoke.</para>
|
||||||
</parameter>
|
</parameter>
|
||||||
<parameter name="args">
|
<parameter name="args">
|
||||||
<para>Optional comma-delimited arguments for the application invocation.</para>
|
<para>Optional comma-delimited arguments for the
|
||||||
|
application invocation.</para>
|
||||||
</parameter>
|
</parameter>
|
||||||
</syntax>
|
</syntax>
|
||||||
<description>
|
<description>
|
||||||
@@ -178,7 +180,7 @@ struct stasis_app_control {
|
|||||||
*/
|
*/
|
||||||
int continue_to_dialplan:1;
|
int continue_to_dialplan:1;
|
||||||
/*! Uniqueid of the associated channel */
|
/*! Uniqueid of the associated channel */
|
||||||
char channel_uniqueid[];
|
char channel_id[];
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct stasis_app_control *control_create(const char *uniqueid)
|
static struct stasis_app_control *control_create(const char *uniqueid)
|
||||||
@@ -192,11 +194,35 @@ static struct stasis_app_control *control_create(const char *uniqueid)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
strncpy(control->channel_uniqueid, uniqueid, size - sizeof(*control));
|
strncpy(control->channel_id, uniqueid, size - sizeof(*control));
|
||||||
|
|
||||||
return control;
|
return control;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*! AO2 hash function for \ref stasis_app_control */
|
||||||
|
static int control_hash(const void *obj, const int flags)
|
||||||
|
{
|
||||||
|
const struct stasis_app_control *control = obj;
|
||||||
|
const char *id = flags & OBJ_KEY ? obj : control->channel_id;
|
||||||
|
|
||||||
|
return ast_str_hash(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! AO2 comparison function for \ref stasis_app_control */
|
||||||
|
static int control_compare(void *lhs, void *rhs, int flags)
|
||||||
|
{
|
||||||
|
const struct stasis_app_control *lhs_control = lhs;
|
||||||
|
const struct stasis_app_control *rhs_control = rhs;
|
||||||
|
const char *rhs_name =
|
||||||
|
flags & OBJ_KEY ? rhs : rhs_control->channel_id;
|
||||||
|
|
||||||
|
if (strcmp(lhs_control->channel_id, rhs_name) == 0) {
|
||||||
|
return CMP_MATCH | CMP_STOP;
|
||||||
|
} else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct stasis_app_control *stasis_app_control_find_by_channel(
|
struct stasis_app_control *stasis_app_control_find_by_channel(
|
||||||
const struct ast_channel *chan)
|
const struct ast_channel *chan)
|
||||||
{
|
{
|
||||||
@@ -366,7 +392,8 @@ static void control_unlink(struct stasis_app_control *control)
|
|||||||
}
|
}
|
||||||
|
|
||||||
controls = app_controls();
|
controls = app_controls();
|
||||||
ao2_unlink_flags(controls, control, OBJ_POINTER | OBJ_UNLINK | OBJ_NODATA);
|
ao2_unlink_flags(controls, control,
|
||||||
|
OBJ_POINTER | OBJ_UNLINK | OBJ_NODATA);
|
||||||
ao2_cleanup(control);
|
ao2_cleanup(control);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -376,7 +403,8 @@ static int app_stasis_exec(struct ast_channel *chan, const char *data)
|
|||||||
RAII_VAR(struct ao2_container *, apps, apps_registry(), ao2_cleanup);
|
RAII_VAR(struct ao2_container *, apps, apps_registry(), ao2_cleanup);
|
||||||
RAII_VAR(struct app *, app, NULL, ao2_cleanup);
|
RAII_VAR(struct app *, app, NULL, ao2_cleanup);
|
||||||
RAII_VAR(struct stasis_app_control *, control, NULL, control_unlink);
|
RAII_VAR(struct stasis_app_control *, control, NULL, control_unlink);
|
||||||
RAII_VAR(struct stasis_subscription *, subscription, NULL, stasis_unsubscribe);
|
RAII_VAR(struct stasis_subscription *, subscription, NULL,
|
||||||
|
stasis_unsubscribe);
|
||||||
int res = 0;
|
int res = 0;
|
||||||
char *parse = NULL;
|
char *parse = NULL;
|
||||||
int hungup = 0;
|
int hungup = 0;
|
||||||
@@ -400,7 +428,8 @@ static int app_stasis_exec(struct ast_channel *chan, const char *data)
|
|||||||
|
|
||||||
app = ao2_find(apps, args.app_name, OBJ_KEY);
|
app = ao2_find(apps, args.app_name, OBJ_KEY);
|
||||||
if (!app) {
|
if (!app) {
|
||||||
ast_log(LOG_ERROR, "Stasis app '%s' not registered\n", args.app_name);
|
ast_log(LOG_ERROR,
|
||||||
|
"Stasis app '%s' not registered\n", args.app_name);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -416,30 +445,35 @@ static int app_stasis_exec(struct ast_channel *chan, const char *data)
|
|||||||
ao2_link(controls, control);
|
ao2_link(controls, control);
|
||||||
}
|
}
|
||||||
|
|
||||||
subscription = stasis_subscribe(ast_channel_topic(chan), sub_handler, app);
|
subscription =
|
||||||
|
stasis_subscribe(ast_channel_topic(chan), sub_handler, app);
|
||||||
if (subscription == NULL) {
|
if (subscription == NULL) {
|
||||||
ast_log(LOG_ERROR, "Error subscribing app %s to channel %s\n", args.app_name, ast_channel_name(chan));
|
ast_log(LOG_ERROR, "Error subscribing app %s to channel %s\n",
|
||||||
|
args.app_name, ast_channel_name(chan));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
ao2_ref(app, +1); /* subscription now has a reference */
|
ao2_ref(app, +1); /* subscription now has a reference */
|
||||||
|
|
||||||
res = send_start_msg(app, chan, args.argc - 1, args.app_argv);
|
res = send_start_msg(app, chan, args.argc - 1, args.app_argv);
|
||||||
if (res != 0) {
|
if (res != 0) {
|
||||||
ast_log(LOG_ERROR, "Error sending start message to %s\n", args.app_name);
|
ast_log(LOG_ERROR,
|
||||||
|
"Error sending start message to %s\n", args.app_name);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!hungup && !control_continue_test_and_reset(control) && ast_waitfor(chan, -1) > -1) {
|
while (!hungup && !control_continue_test_and_reset(control) && ast_waitfor(chan, -1) > -1) {
|
||||||
RAII_VAR(struct ast_frame *, f, ast_read(chan), ast_frame_dtor);
|
RAII_VAR(struct ast_frame *, f, ast_read(chan), ast_frame_dtor);
|
||||||
if (!f) {
|
if (!f) {
|
||||||
ast_debug(3, "%s: No more frames. Must be done, I guess.\n", ast_channel_uniqueid(chan));
|
ast_debug(3, "%s: No more frames. Must be done, I guess.\n",
|
||||||
|
ast_channel_uniqueid(chan));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (f->frametype) {
|
switch (f->frametype) {
|
||||||
case AST_FRAME_CONTROL:
|
case AST_FRAME_CONTROL:
|
||||||
if (f->subclass.integer == AST_CONTROL_HANGUP) {
|
if (f->subclass.integer == AST_CONTROL_HANGUP) {
|
||||||
ast_debug(3, "%s: Received hangup\n", ast_channel_uniqueid(chan));
|
ast_debug(3, "%s: Received hangup\n",
|
||||||
|
ast_channel_uniqueid(chan));
|
||||||
hungup = 1;
|
hungup = 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -451,7 +485,8 @@ static int app_stasis_exec(struct ast_channel *chan, const char *data)
|
|||||||
|
|
||||||
res = send_end_msg(app, chan);
|
res = send_end_msg(app, chan);
|
||||||
if (res != 0) {
|
if (res != 0) {
|
||||||
ast_log(LOG_ERROR, "Error sending end message to %s\n", args.app_name);
|
ast_log(LOG_ERROR,
|
||||||
|
"Error sending end message to %s\n", args.app_name);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -466,10 +501,11 @@ int stasis_app_send(const char *app_name, struct ast_json *message)
|
|||||||
app = ao2_find(apps, app_name, OBJ_KEY);
|
app = ao2_find(apps, app_name, OBJ_KEY);
|
||||||
|
|
||||||
if (!app) {
|
if (!app) {
|
||||||
/* XXX We can do a better job handling late binding, queueing up the call for a few seconds
|
/* XXX We can do a better job handling late binding, queueing up
|
||||||
* to wait for the app to register.
|
* the call for a few seconds to wait for the app to register.
|
||||||
*/
|
*/
|
||||||
ast_log(LOG_WARNING, "Stasis app '%s' not registered\n", app_name);
|
ast_log(LOG_WARNING,
|
||||||
|
"Stasis app '%s' not registered\n", app_name);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -523,12 +559,14 @@ static int load_module(void)
|
|||||||
{
|
{
|
||||||
int r = 0;
|
int r = 0;
|
||||||
|
|
||||||
__apps_registry = ao2_container_alloc(APPS_NUM_BUCKETS, app_hash, app_compare);
|
__apps_registry =
|
||||||
|
ao2_container_alloc(APPS_NUM_BUCKETS, app_hash, app_compare);
|
||||||
if (__apps_registry == NULL) {
|
if (__apps_registry == NULL) {
|
||||||
return AST_MODULE_LOAD_FAILURE;
|
return AST_MODULE_LOAD_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
__app_controls = ao2_container_alloc(CONTROLS_NUM_BUCKETS, app_hash, app_compare);
|
__app_controls = ao2_container_alloc(CONTROLS_NUM_BUCKETS,
|
||||||
|
control_hash, control_compare);
|
||||||
if (__app_controls == NULL) {
|
if (__app_controls == NULL) {
|
||||||
return AST_MODULE_LOAD_FAILURE;
|
return AST_MODULE_LOAD_FAILURE;
|
||||||
}
|
}
|
||||||
@@ -551,6 +589,7 @@ static int unload_module(void)
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Stasis dialplan application",
|
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS,
|
||||||
|
"Stasis dialplan application",
|
||||||
.load = load_module,
|
.load = load_module,
|
||||||
.unload = unload_module);
|
.unload = unload_module);
|
||||||
|
Reference in New Issue
Block a user