12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- * $Id: $
- *
- * db_berkeley MI functions
- *
- * Copyright (C) 2007 Cisco Systems
- *
- * This file is part of SIP-router, a free SIP server.
- *
- * SIP-router is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * SIP-router is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * History:
- * --------
- * 2007-11-05 created (wiquan)
- */
- /*! \file
- * Berkeley DB : Management interface
- *
- * \ingroup database
- */
- #include "../../dprint.h"
- #include "../../lib/srdb1/db.h"
- #include "km_db_berkeley.h"
- #include "km_bdb_mi.h"
- /*
- * MI function to reload db table or env
- * expects 1 node: the tablename or dbenv name to reload
- */
- struct mi_root* mi_bdb_reload(struct mi_root *cmd, void *param)
- {
- struct mi_node *node;
- str *db_path;
-
- node = cmd->node.kids;
- if (node && node->next)
- return init_mi_tree( 400, MI_MISSING_PARM_S, MI_MISSING_PARM_LEN);
-
- db_path = &node->value;
-
- if (!db_path || db_path->len == 0)
- return init_mi_tree( 400, "bdb_reload missing db arg", 21);
- if (bdb_reload(db_path->s) == 0)
- {
- return init_mi_tree( 200, MI_OK_S, MI_OK_LEN);
- }
- else
- {
- return init_mi_tree( 500, "db_berkeley Reload Failed", 26);
- }
- }
|