/* * $Id: db.h 1687 2007-02-22 15:16:38Z bogdan_iancu $ * * Copyright (C) 2001-2003 FhG Fokus * * This file is part of ser, a free SIP server. * * ser 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 * * For a license to use the ser software under conditions * other than those described here, or to purchase support for this * software, please contact iptel.org by e-mail at the following addresses: * info@iptel.org * * ser 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: * -------- * 2004-06-06 removed db_* macros and global dbf (andrei) */ #ifndef DB_H #define DB_H #include "db_key.h" #include "db_op.h" #include "db_val.h" #include "db_con.h" #include "db_row.h" #include "db_res.h" #include "db_cap.h" /* * Specify table name that will be used for * subsequent operations */ typedef int (*db_use_table_f)(db_con_t* _h, const char* _t); /* * Initialize database connection and * obtain the connection handle */ typedef db_con_t* (*db_init_f) (const char* _sqlurl); /* * Close a database connection and free * all memory used */ typedef void (*db_close_f) (db_con_t* _h); /* * Query table for specified rows * _h: structure representing database connection * _k: key names * _op: conditions * _v: values of the keys that must match * _c: column names to return * _n: nmber of key=values pairs to compare * _nc: number of columns to return * _o: order by the specified column * _r: Result will be stored in this variable * NULL if there is no result */ typedef int (*db_query_f) (db_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, db_res_t** _r); /* * Fetch number of rows from result ! */ typedef int (*db_fetch_result_f) (db_con_t* _h, db_res_t** _r, int _n); /* * Raw SQL query, database specific ! */ typedef int (*db_raw_query_f) (db_con_t* _h, char* _s, db_res_t** _r); /* * Free a result allocated by db_query * _h: structure representing database connection * _r: db_res structure */ typedef int (*db_free_result_f) (db_con_t* _h, db_res_t* _r); /* * Insert a row into specified table * _h: structure representing database connection * _k: key names * _v: values of the keys * _n: number of key=value pairs */ typedef int (*db_insert_f) (db_con_t* _h, db_key_t* _k, db_val_t* _v, int _n); /* * Delete a row from the specified table * _h: structure representing database connection * _k: key names * _o: operators * _v: values of the keys that must match * _n: number of key=value pairs */ typedef int (*db_delete_f) (db_con_t* _h, db_key_t* _k, db_op_t* _o, db_val_t* _v, int _n); /* * Update some rows in the specified table * _h: structure representing database connection * _k: key names * _o: operators * _v: values of the keys that must match * _uk: updated columns * _uv: updated values of the columns * _n: number of key=value pairs * _un: number of columns to update */ typedef int (*db_update_f) (db_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); /* * Insert a row and replace if one already exists. * handle: structure representing database connection * keys: key names * vals: values of the keys * n: number of key=value pairs */ typedef int (*db_replace_f) (db_con_t* handle, db_key_t* keys, db_val_t* vals, int n); typedef struct db_func { unsigned int cap; /* Capability vector of the database transport */ db_use_table_f use_table; /* Specify table name */ db_init_f init; /* Initialize database connection */ db_close_f close; /* Close database connection */ db_query_f query; /* query a table */ db_fetch_result_f fetch_result; /* fetch result */ db_raw_query_f raw_query; /* Raw query - SQL */ db_free_result_f free_result; /* Free a query result */ db_insert_f insert; /* Insert into table */ db_delete_f delete; /* Delete from table */ db_update_f update; /* Update table */ db_replace_f replace; /* Replace row in a table */ } db_func_t; /* * Bind database module functions * returns TRUE if everything went OK * FALSE otherwise */ int bind_dbmod(char* mod, db_func_t* dbf); /* * Get the version of the given table. If there is * no row for the table then the function returns * version 0. -1 is returned on error. */ int table_version(db_func_t* dbf, db_con_t* con, const str* table); #endif /* DB_H */