Add '+=' append operator to configuration files.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@135717 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2008-08-05 18:25:16 +00:00
parent f24d7a89f5
commit ff101d0b07
4 changed files with 101 additions and 49 deletions

View File

@@ -199,6 +199,10 @@ Miscellaneous
Skinny channels only.
* You can now compile Asterisk against the Hoard Memory Allocator, see doc/hoard.txt
for more information.
* Config file variables may now be appended to, by using the '+=' append
operator. This is most helpful when working with long SQL queries in
func_odbc.conf, as the queries no longer need to be specified on a single
line.
------------------------------------------------------------------------------
--- Functionality changes from Asterisk 1.4.X to Asterisk 1.6.0 -------------

View File

@@ -226,6 +226,13 @@ Configuration:
* queues.conf: the queue-lessthan sound file option is no longer available, and the
queue-round-seconds option no longer takes '1' as a valid parameter.
* If you have any third party modules which use a config file variable whose
name ends in a '+', please note that the append capability added to this
version may now conflict with that variable naming scheme. An easy
workaround is to ensure that a space occurs between the '+' and the '=',
to differentiate your variable from the append operator. This potential
conflict is unlikely, but is documented here to be thorough.
Manager:
* Manager has been upgraded to version 1.1 with a lot of changes.

View File

@@ -339,6 +339,15 @@ void ast_include_rename(struct ast_config *conf, const char *from_file, const ch
void ast_variable_append(struct ast_category *category, struct ast_variable *variable);
void ast_variable_insert(struct ast_category *category, struct ast_variable *variable, const char *line);
int ast_variable_delete(struct ast_category *category, const char *variable, const char *match, const char *line);
/*! \brief Update variable value within a config
* \param category Category element within the config
* \param variable Name of the variable to change
* \param value New value of the variable
* \param match If set, previous value of the variable (if NULL or zero-length, no matching will be done)
* \param object Boolean of whether to make the new variable an object
* \return 0 on success or -1 on failure.
*/
int ast_variable_update(struct ast_category *category, const char *variable,
const char *value, const char *match, unsigned int object);

View File

@@ -98,6 +98,14 @@ struct cache_file_mtime {
static AST_LIST_HEAD_STATIC(cfmtime_head, cache_file_mtime);
static int init_appendbuf(void *data)
{
struct ast_str **str = data;
*str = ast_str_create(16);
return *str ? 0 : -1;
}
AST_THREADSTORAGE_CUSTOM(appendbuf, init_appendbuf, ast_free_ptr);
/* comment buffers are better implemented using the ast_str_*() API */
#define CB_SIZE 250 /* initial size of comment buffers */
@@ -752,12 +760,8 @@ int ast_variable_update(struct ast_category *category, const char *variable,
return 0;
}
if (prev)
prev->next = newer;
else
category->root = newer;
return 0;
/* Could not find variable to update */
return -1;
}
int ast_category_delete(struct ast_config *cfg, const char *category)
@@ -1083,23 +1087,51 @@ static int process_text_line(struct ast_config *cfg, struct ast_category **cat,
} else {
/* Just a line (variable = value) */
int object = 0;
if (!(*cat)) {
ast_log(LOG_WARNING,
"parse error: No category context for line %d of %s\n", lineno, configfile);
return -1;
}
c = strchr(cur, '=');
if (c) {
int object;
if (c && c > cur && (*(c - 1) == '+')) {
struct ast_variable *var, *replace = NULL;
struct ast_str **str = ast_threadstorage_get(&appendbuf, sizeof(*str));
if (!str || !*str) {
return -1;
}
*(c - 1) = '\0';
c++;
cur = ast_strip(cur);
/* Must iterate through category until we find last variable of same name (since there could be multiple) */
for (var = ast_category_first(*cat); var; var = var->next) {
if (!strcmp(var->name, cur)) {
replace = var;
}
}
if (!replace) {
/* Nothing to replace; just set a variable normally. */
goto set_new_variable;
}
ast_str_set(str, 0, "%s", replace->value);
ast_str_append(str, 0, "%s", c);
ast_variable_update(*cat, replace->name, ast_strip((*str)->str), replace->value, object);
} else if (c) {
*c = 0;
c++;
/* Ignore > in => */
if (*c== '>') {
object = 1;
c++;
} else
object = 0;
if ((v = ast_variable_new(ast_strip(cur), ast_strip(c), *suggested_include_file ? suggested_include_file : configfile))) {
}
set_new_variable:
if ((v = ast_variable_new(ast_strip(cur), ast_strip(c), S_OR(suggested_include_file, configfile)))) {
v->lineno = lineno;
v->object = object;
*last_cat = 0;