2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
5 * Copyright (C) 2003, Jefferson Noxon
7 * Mark Spencer <markster@digium.com>
8 * 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 Database access functions
25 * \author Mark Spencer <markster@digium.com>
26 * \author Jefferson Noxon <jeff@debian.org>
28 * \ingroup applications
32 <support_level>core</support_level>
37 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
39 #include "asterisk/file.h"
40 #include "asterisk/channel.h"
41 #include "asterisk/pbx.h"
42 #include "asterisk/module.h"
43 #include "asterisk/astdb.h"
44 #include "asterisk/lock.h"
47 <application name="DBdel" language="en_US">
49 Delete a key from the asterisk database.
52 <parameter name="family" required="true" />
53 <parameter name="key" required="true" />
56 <para>This application will delete a <replaceable>key</replaceable> from the Asterisk
58 <note><para>This application has been DEPRECATED in favor of the DB_DELETE function.</para></note>
61 <ref type="function">DB_DELETE</ref>
62 <ref type="application">DBdeltree</ref>
63 <ref type="function">DB</ref>
66 <application name="DBdeltree" language="en_US">
68 Delete a family or keytree from the asterisk database.
71 <parameter name="family" required="true" />
72 <parameter name="keytree" />
75 <para>This application will delete a <replaceable>family</replaceable> or <replaceable>keytree</replaceable>
76 from the Asterisk database.</para>
79 <ref type="function">DB_DELETE</ref>
80 <ref type="application">DBdel</ref>
81 <ref type="function">DB</ref>
86 static const char d_app[] = "DBdel";
87 static const char dt_app[] = "DBdeltree";
89 static int deltree_exec(struct ast_channel *chan, const char *data)
91 char *argv, *family, *keytree;
93 argv = ast_strdupa(data);
95 if (strchr(argv, '/')) {
96 family = strsep(&argv, "/");
97 keytree = strsep(&argv, "\0");
98 if (!family || !keytree) {
99 ast_debug(1, "Ignoring; Syntax error in argument\n");
102 if (ast_strlen_zero(keytree))
110 ast_verb(3, "DBdeltree: family=%s, keytree=%s\n", family, keytree);
112 ast_verb(3, "DBdeltree: family=%s\n", family);
115 if (ast_db_deltree(family, keytree) < 0) {
116 ast_verb(3, "DBdeltree: Error deleting key from database.\n");
122 static int del_exec(struct ast_channel *chan, const char *data)
124 char *argv, *family, *key;
125 static int deprecation_warning = 0;
127 if (!deprecation_warning) {
128 deprecation_warning = 1;
129 ast_log(LOG_WARNING, "The DBdel application has been deprecated in favor of the DB_DELETE dialplan function!\n");
132 argv = ast_strdupa(data);
134 if (strchr(argv, '/')) {
135 family = strsep(&argv, "/");
136 key = strsep(&argv, "\0");
137 if (!family || !key) {
138 ast_debug(1, "Ignoring; Syntax error in argument\n");
141 ast_verb(3, "DBdel: family=%s, key=%s\n", family, key);
142 if (ast_db_del(family, key))
143 ast_verb(3, "DBdel: Error deleting key from database.\n");
145 ast_debug(1, "Ignoring, no parameters\n");
151 static int unload_module(void)
155 retval = ast_unregister_application(dt_app);
156 retval |= ast_unregister_application(d_app);
161 static int load_module(void)
165 retval = ast_register_application_xml(d_app, del_exec);
166 retval |= ast_register_application_xml(dt_app, deltree_exec);
171 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Database Access Functions");