Stasis: Allow message types to be blocked

This introduces stasis.conf and a mechanism to prevent certain message
types from being published. Internally, this works by preventing the
chosen message types from being created which ensures that those
message types can never be published. This patch also adjusts message
publishers such that message payloads are not created if the related
message type is not available.

ASTERISK-23943 #close
Review: https://reviewboard.asterisk.org/r/3823/


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@420124 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kinsey Moore
2014-08-06 12:55:28 +00:00
parent ac5c75b45d
commit f1036f40dc
39 changed files with 708 additions and 73 deletions

View File

@@ -50,14 +50,20 @@ static void message_type_dtor(void *obj)
type->name = NULL;
}
struct stasis_message_type *stasis_message_type_create(const char *name,
struct stasis_message_vtable *vtable)
int stasis_message_type_create(const char *name,
struct stasis_message_vtable *vtable,
struct stasis_message_type **result)
{
struct stasis_message_type *type;
/* Check for declination */
if (name && stasis_message_type_declined(name)) {
return STASIS_MESSAGE_TYPE_DECLINED;
}
type = ao2_t_alloc(sizeof(*type), message_type_dtor, name);
if (!type) {
return NULL;
return STASIS_MESSAGE_TYPE_ERROR;
}
if (!vtable) {
/* Null object pattern, FTW! */
@@ -67,11 +73,12 @@ struct stasis_message_type *stasis_message_type_create(const char *name,
type->name = ast_strdup(name);
if (!type->name) {
ao2_cleanup(type);
return NULL;
return STASIS_MESSAGE_TYPE_ERROR;
}
type->vtable = vtable;
*result = type;
return type;
return STASIS_MESSAGE_TYPE_SUCCESS;
}
const char *stasis_message_type_name(const struct stasis_message_type *type)