bdb_res.h

Go to the documentation of this file.
00001 /*
00002  * $Id: bdb_res.h 4518 2008-07-28 15:39:28Z henningw $
00003  *
00004  * sleepycat module, portions of this code were templated using
00005  * the dbtext and postgres modules.
00006 
00007  * Copyright (C) 2007 Cisco Systems
00008  *
00009  * This file is part of Kamailio, a free SIP server.
00010  *
00011  * Kamailio is free software; you can redistribute it and/or modify
00012  * it under the terms of the GNU General Public License as published by
00013  * the Free Software Foundation; either version 2 of the License, or
00014  * (at your option) any later version
00015  *
00016  * Kamailio is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU General Public License 
00022  * along with this program; if not, write to the Free Software 
00023  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00024  * 
00025  * History:
00026  * --------
00027  * 2007-09-19  genesis (wiquan)
00028  */
00029 
00030 
00031 #ifndef _BDB_RES_H_
00032 #define _BDB_RES_H_
00033 
00034 #include "../../db/db_op.h"
00035 #include "../../db/db_res.h"
00036 #include "../../db/db_con.h"
00037 #include "bdb_lib.h"
00038 #include "bdb_val.h"
00039 
00040 typedef struct _con
00041 {
00042    database_p con;
00043    db_res_t*  res;
00044    row_p row;
00045 } bdb_con_t, *bdb_con_p;
00046 
00047 #define BDB_CON_CONNECTION(db_con) (((bdb_con_p)((db_con)->tail))->con)
00048 #define BDB_CON_RESULT(db_con)     (((bdb_con_p)((db_con)->tail))->res)
00049 #define BDB_CON_ROW(db_con)        (((bdb_con_p)((db_con)->tail))->row)
00050 
00051 int bdb_get_columns(table_p _tp, db_res_t* _res, int* _lres, int _nc);
00052 int bdb_convert_row( db_res_t* _res, char *bdb_result, int* _lres);
00053 int bdb_append_row(db_res_t* _res, char *bdb_result, int* _lres, int _rx);
00054 int* bdb_get_colmap(table_p _tp, db_key_t* _k, int _n);
00055 
00056 int bdb_is_neq_type(db_type_t _t0, db_type_t _t1);
00057 int bdb_row_match(db_key_t* _k, db_op_t* _op, db_val_t* _v, int _n, db_res_t* _r, int* lkey );
00058 int bdb_cmp_val(db_val_t* _vp, db_val_t* _v);
00059 
00060 #endif
00061 

Generated on Thu May 17 12:00:25 2012 for Kamailio - The Open Source SIP Server by  doxygen 1.5.6