2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2005-2006, Russell Bryant <russelb@clemson.edu>
6 * func_db.c adapted from the old app_db.c, copyright by the following people
7 * Copyright (C) 2005, Mark Spencer <markster@digium.com>
8 * Copyright (C) 2003, Jefferson Noxon <jeff@debian.org>
10 * See http://www.asterisk.org for more information about
11 * the Asterisk project. Please do not directly contact
12 * any of the maintainers of this project for assistance;
13 * the project provides a web site, mailing lists and IRC
14 * channels for your use.
16 * This program is free software, distributed under the terms of
17 * the GNU General Public License Version 2. See the LICENSE file
18 * at the top of the source tree.
23 * \brief Functions for interaction with the Asterisk database
25 * \author Russell Bryant <russelb@clemson.edu>
30 ASTERISK_FILE_VERSION(__FILE__
, "$Revision$")
35 #include <sys/types.h>
38 #include "asterisk/module.h"
39 #include "asterisk/channel.h"
40 #include "asterisk/pbx.h"
41 #include "asterisk/logger.h"
42 #include "asterisk/options.h"
43 #include "asterisk/utils.h"
44 #include "asterisk/app.h"
45 #include "asterisk/astdb.h"
47 static int function_db_read(struct ast_channel
*chan
, char *cmd
,
48 char *parse
, char *buf
, size_t len
)
50 AST_DECLARE_APP_ARGS(args
,
57 if (ast_strlen_zero(parse
)) {
58 ast_log(LOG_WARNING
, "DB requires an argument, DB(<family>/<key>)\n");
62 AST_NONSTANDARD_APP_ARGS(args
, parse
, '/');
65 ast_log(LOG_WARNING
, "DB requires an argument, DB(<family>/<key>)\n");
69 if (ast_db_get(args
.family
, args
.key
, buf
, len
- 1)) {
70 ast_log(LOG_DEBUG
, "DB: %s/%s not found in database.\n", args
.family
,
73 pbx_builtin_setvar_helper(chan
, "DB_RESULT", buf
);
78 static int function_db_write(struct ast_channel
*chan
, char *cmd
, char *parse
,
81 AST_DECLARE_APP_ARGS(args
,
86 if (ast_strlen_zero(parse
)) {
87 ast_log(LOG_WARNING
, "DB requires an argument, DB(<family>/<key>)=<value>\n");
91 AST_NONSTANDARD_APP_ARGS(args
, parse
, '/');
94 ast_log(LOG_WARNING
, "DB requires an argument, DB(<family>/<key>)=value\n");
98 if (ast_db_put(args
.family
, args
.key
, (char *) value
))
99 ast_log(LOG_WARNING
, "DB: Error writing value to database.\n");
104 static struct ast_custom_function db_function
= {
106 .synopsis
= "Read from or write to the Asterisk database",
107 .syntax
= "DB(<family>/<key>)",
109 "This function will read from or write a value to the Asterisk database. On a\n"
110 "read, this function returns the corresponding value from the database, or blank\n"
111 "if it does not exist. Reading a database value will also set the variable\n"
112 "DB_RESULT. If you wish to find out if an entry exists, use the DB_EXISTS\n"
114 .read
= function_db_read
,
115 .write
= function_db_write
,
118 static int function_db_exists(struct ast_channel
*chan
, char *cmd
,
119 char *parse
, char *buf
, size_t len
)
121 AST_DECLARE_APP_ARGS(args
,
128 if (ast_strlen_zero(parse
)) {
129 ast_log(LOG_WARNING
, "DB_EXISTS requires an argument, DB(<family>/<key>)\n");
133 AST_NONSTANDARD_APP_ARGS(args
, parse
, '/');
136 ast_log(LOG_WARNING
, "DB_EXISTS requires an argument, DB(<family>/<key>)\n");
140 if (ast_db_get(args
.family
, args
.key
, buf
, len
- 1))
143 pbx_builtin_setvar_helper(chan
, "DB_RESULT", buf
);
150 static struct ast_custom_function db_exists_function
= {
152 .synopsis
= "Check to see if a key exists in the Asterisk database",
153 .syntax
= "DB_EXISTS(<family>/<key>)",
155 "This function will check to see if a key exists in the Asterisk\n"
156 "database. If it exists, the function will return \"1\". If not,\n"
157 "it will return \"0\". Checking for existence of a database key will\n"
158 "also set the variable DB_RESULT to the key's value if it exists.\n",
159 .read
= function_db_exists
,
162 static int function_db_delete(struct ast_channel
*chan
, char* cmd
,
163 char *parse
, char *buf
, size_t len
)
165 AST_DECLARE_APP_ARGS(args
,
172 if (ast_strlen_zero(parse
)) {
173 ast_log(LOG_WARNING
, "DB_DELETE requires an argument, DB_DELETE(<family>/<key>)\n");
177 AST_NONSTANDARD_APP_ARGS(args
, parse
, '/');
180 ast_log(LOG_WARNING
, "DB_DELETE requires an argument, DB_DELETE(<family>/<key>)\n");
184 if (ast_db_get(args
.family
, args
.key
, buf
, len
- 1)) {
185 ast_log(LOG_DEBUG
, "DB_DELETE: %s/%s not found in database.\n", args
.family
, args
.key
);
187 if (ast_db_del(args
.family
, args
.key
)) {
188 ast_log(LOG_DEBUG
, "DB_DELETE: %s/%s could not be deleted from the database\n",
189 args
.family
, args
.key
);
192 pbx_builtin_setvar_helper(chan
, "DB_RESULT", buf
);
198 static struct ast_custom_function db_delete_function
= {
200 .synopsis
= "Return a value from the database and delete it",
201 .syntax
= "DB_DELETE(<family>/<key>)",
203 "This function will retrieve a value from the Asterisk database\n"
204 " and then remove that key from the database. DB_RESULT\n"
205 "will be set to the key's value if it exists.\n",
206 .read
= function_db_delete
,
209 static int unload_module(void)
213 res
|= ast_custom_function_unregister(&db_function
);
214 res
|= ast_custom_function_unregister(&db_exists_function
);
215 res
|= ast_custom_function_unregister(&db_delete_function
);
220 static int load_module(void)
224 res
|= ast_custom_function_register(&db_function
);
225 res
|= ast_custom_function_register(&db_exists_function
);
226 res
|= ast_custom_function_register(&db_delete_function
);
231 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY
, "Database (astdb) related dialplan functions");