80 const char *cmd,
char *data,
struct ast_str **
buf, ssize_t
len)
87 int found, field_number = 1, ix,
method;
88 char *separator =
",";
135 if (strcmp(
args.method,
"concat") == 0) {
140 separator =
args.method_arg;
143 }
else if (strcmp(
args.method,
"single") == 0) {
146 if (sscanf(
args.method_arg,
"%30d", &field_number) <= 0 || field_number <= 0 ) {
175 for (it_change_set = change_set; it_change_set; it_change_set = it_change_set->
next) {
177 if (method == CONCAT && strcmp(it_change_set->
name,
args.field_name) == 0) {
183 if (method == SINGLE && strcmp(it_change_set->
name,
args.field_name) == 0 && ix++ == field_number) {
196 if (method == CONCAT) {
204 .
name =
"AST_SORCERY",
struct ast_variable * next
Main Channel structure associated with a channel.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Asterisk main include file. File version handling, generic pbx functions.
void ast_variables_destroy(struct ast_variable *var)
Free variable list.
static int load_module(void)
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
Structure for variables, used for configurations and for channel variables.
Full structure for sorcery.
int ast_str_append(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Append to a thread local dynamic string.
static struct @481 methods[]
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.
static struct ast_custom_function sorcery_function
char * ast_str_truncate(struct ast_str *buf, ssize_t len)
Truncates the enclosed string to the given length.
#define ast_strlen_zero(foo)
void * ast_sorcery_retrieve_by_id(const struct ast_sorcery *sorcery, const char *type, const char *id)
Retrieve an object using its unique identifier.
#define ast_sorcery_unref(sorcery)
Decrease the reference count of a sorcery structure.
int ast_str_set(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Set a dynamic string using variable arguments.
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
Data structure associated with a custom dialplan function.
#define ast_strdupa(s)
duplicate a string in memory from the stack
Core PBX routines and definitions.
static int sorcery_function_read(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len)
The descriptor of a dynamic string XXX storage will be optimized later if needed We use the ts field ...
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
#define ast_sorcery_objectset_create(sorcery, object)
Create an object set (KVP list) for an object.
static int unload_module(void)
static struct ast_sorcery * sorcery
#define ASTERISK_GPL_KEY
The text the key() function should return.
Asterisk module definitions.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
Application convenience functions, designed to give consistent look and feel to Asterisk apps...
#define ast_custom_function_register(acf)
Register a custom function.
struct ast_sorcery * ast_sorcery_retrieve_by_module_name(const char *module)
Retrieves an existing sorcery instance by module name.
Sorcery Data Access Layer API.
#define AST_APP_ARG(name)
Define an application argument.