mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
2.4 KiB
108 lines
2.4 KiB
/*
|
|
* $Id$
|
|
*
|
|
* db_berkeley module, portions of this code were templated using
|
|
* the dbtext and postgres modules.
|
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* History:
|
|
* --------
|
|
* 2007-09-19 genesis (wiquan)
|
|
*/
|
|
|
|
/*! \file
|
|
* Berkeley DB :
|
|
*
|
|
* \ingroup database
|
|
*/
|
|
|
|
#ifndef _KM_BDB_H_
|
|
#define _KM_BDB_H_
|
|
|
|
#include "../../lib/srdb1/db_con.h"
|
|
#include "../../lib/srdb1/db_res.h"
|
|
#include "../../lib/srdb1/db_key.h"
|
|
#include "../../lib/srdb1/db_op.h"
|
|
#include "../../lib/srdb1/db_val.h"
|
|
#include "../../lib/srdb1/db.h"
|
|
|
|
/* reloads the berkeley db */
|
|
int bdb_reload(char* _n);
|
|
|
|
void bdb_check_reload(db1_con_t* _con);
|
|
int bdb_use_table(db1_con_t* _h, const str* _t);
|
|
|
|
/*
|
|
* Initialize database connection
|
|
*/
|
|
db1_con_t* bdb_init(const str* _sqlurl);
|
|
|
|
|
|
/*
|
|
* Close a database connection
|
|
*/
|
|
void bdb_close(db1_con_t* _h);
|
|
|
|
|
|
/*
|
|
* Free all memory allocated by get_result
|
|
*/
|
|
int bdb_free_query(db1_con_t* _h, db1_res_t* _r);
|
|
|
|
|
|
/*
|
|
* Do a query
|
|
*/
|
|
int km_bdb_query(db1_con_t* _h, db_key_t* _k, db_op_t* _op, db_val_t* _v,
|
|
db_key_t* _c, int _n, int _nc, db_key_t _o, db1_res_t** _r);
|
|
|
|
|
|
/*
|
|
* Raw SQL query
|
|
*/
|
|
int bdb_raw_query(db1_con_t* _h, char* _s, db1_res_t** _r);
|
|
|
|
|
|
/*
|
|
* Insert a row into table
|
|
*/
|
|
int bdb_insert(db1_con_t* _h, db_key_t* _k, db_val_t* _v, int _n);
|
|
|
|
|
|
/*
|
|
* Delete a row from table
|
|
*/
|
|
int bdb_delete(db1_con_t* _h, db_key_t* _k, db_op_t* _o, db_val_t* _v, int _n);
|
|
int _bdb_delete_cursor(db1_con_t* _h, db_key_t* _k, db_op_t* _op, db_val_t* _v, int _n);
|
|
|
|
/*
|
|
* Update a row in table
|
|
*/
|
|
int bdb_update(db1_con_t* _h, db_key_t* _k, db_op_t* _o, db_val_t* _v,
|
|
db_key_t* _uk, db_val_t* _uv, int _n, int _un);
|
|
|
|
int bdb_bind_api(db_func_t *dbb);
|
|
|
|
int km_mod_init(void);
|
|
void km_destroy(void);
|
|
|
|
#endif
|
|
|