📄 cpl_db.c
字号:
/* * $Id: cpl_db.c,v 1.4 2006/02/09 17:28:25 bogdan_iancu Exp $ * * Copyright (C) 2001-2003 FhG Fokus * * This file is part of openser, a free SIP server. * * openser 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 * * openser 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 updated to the new DB api (andrei) */#include "../../mem/shm_mem.h"#include "../../db/db.h"#include "../../dprint.h"#include "cpl_db.h"static db_con_t* db_hdl=0;static db_func_t cpl_dbf;char *cpl_username_col = "username";char *cpl_domain_col = "domain";char *cpl_xml_col = "cpl_xml";char *cpl_bin_col = "cpl_bin";int cpl_db_bind(char* db_url){ if (bind_dbmod(db_url, &cpl_dbf )) { LOG(L_CRIT, "ERROR:cpl_db_bind: cannot bind to database module! " "Did you forget to load a database module ?\n"); return -1; } /* CPL module uses all database functions */ if (!DB_CAPABILITY(cpl_dbf, DB_CAP_ALL)) { LOG(L_CRIT, "ERROR:cpl_db_bind: Database modules does not " "provide all functions needed by cpl-c module\n"); return -1; } return 0;}int cpl_db_init(char* db_url, char* db_table){ if (cpl_dbf.init==0){ LOG(L_CRIT, "BUG: cpl_db_init: unbound database module\n"); return -1; } db_hdl=cpl_dbf.init(db_url); if (db_hdl==0){ LOG(L_CRIT,"ERROR:cpl_db_init: cannot initialize database " "connection\n"); goto error; } if (cpl_dbf.use_table(db_hdl, db_table)<0) { LOG(L_CRIT,"ERROR:cpl_db_init: cannot select table \"%s\"\n",db_table); goto error; } return 0;error: if (db_hdl){ cpl_dbf.close(db_hdl); db_hdl=0; } return -1;}void cpl_db_close(){ if (db_hdl && cpl_dbf.close){ cpl_dbf.close(db_hdl); db_hdl=0; }}/* gets from database the cpl script in binary format; the returned script is * allocated in shared memory * Returns: 1 - success * -1 - error */int get_user_script(str *username, str *domain, str *script, const char* key){ db_key_t keys_cmp[2]; db_key_t keys_ret[1]; db_val_t vals[2]; db_res_t *res = 0 ; int n; keys_cmp[0] = cpl_username_col; keys_cmp[1] = cpl_domain_col; keys_ret[0] = key; DBG("DEBUG:get_user_script: fetching script for user <%.*s>\n", username->len,username->s); vals[0].type = DB_STR; vals[0].nul = 0; vals[0].val.str_val = *username; n = 1; if (domain) { vals[1].type = DB_STR; vals[1].nul = 0; vals[1].val.str_val = *domain; n++; } if (cpl_dbf.query(db_hdl, keys_cmp, 0, vals, keys_ret, n, 1, NULL, &res) < 0){ LOG(L_ERR,"ERROR:cpl-c:get_user_script: db_query failed\n"); goto error; } if (res->n==0) { DBG("DEBUG:get_user_script: user <%.*s> not found in db -> probably " "he has no script\n",username->len, username->s); script->s = 0; script->len = 0; } else { if (res->rows[0].values[0].nul) { DBG("DEBUG:get_user_script: user <%.*s> has a NULL script\n", username->len, username->s); script->s = 0; script->len = 0; } else { DBG("DEBUG:get_user_script: we got the script len=%d\n", res->rows[0].values[0].val.blob_val.len); script->len = res->rows[0].values[0].val.blob_val.len; script->s = shm_malloc( script->len ); if (!script->s) { LOG(L_ERR,"ERROR:cpl-c:get_user_script: no free sh_mem\n"); goto error; } memcpy( script->s, res->rows[0].values[0].val.blob_val.s, script->len); } } cpl_dbf.free_result( db_hdl, res); return 1;error: if (res) cpl_dbf.free_result( db_hdl, res); script->s = 0; script->len = 0; return -1;}/* inserts into database a cpl script in XML format(xml) along with its binary * format (bin) * Returns: 1 - success * -1 - error */int write_to_db(str *username, str *domain, str *xml, str *bin){ db_key_t keys[4]; db_val_t vals[4]; db_res_t *res; int n; /* lets see if the user is already in database */ keys[2] = cpl_username_col; vals[2].type = DB_STR; vals[2].nul = 0; vals[2].val.str_val = *username; n = 1; if (domain) { keys[3] = cpl_domain_col; vals[3].type = DB_STR; vals[3].nul = 0; vals[3].val.str_val = *domain; n++; } if (cpl_dbf.query(db_hdl, keys+2, 0, vals+2, keys+2, n, 1, NULL, &res)<0) { LOG(L_ERR,"ERROR:cpl:write_to_db: db_query failed\n"); goto error; } if (res->n>1) { LOG(L_ERR,"ERROR:cpl:write_to_db: Inconsistent CPL database:" " %d records for user %.*s\n",res->n,username->len,username->s); goto error; } /* cpl text */ keys[0] = cpl_xml_col; vals[0].type = DB_BLOB; vals[0].nul = 0; vals[0].val.blob_val.s = xml->s; vals[0].val.blob_val.len = xml->len; n++; /* cpl bin */ keys[1] = cpl_bin_col; vals[1].type = DB_BLOB; vals[1].nul = 0; vals[1].val.blob_val.s = bin->s; vals[1].val.blob_val.len = bin->len; n++; /* insert or update ? */ if (res->n==0) { DBG("DEBUG:cpl:write_to_db:No user %.*s in CPL database->insert\n", username->len,username->s); if (cpl_dbf.insert(db_hdl, keys, vals, n) < 0) { LOG(L_ERR,"ERROR:cpl:write_to_db: insert failed !\n"); goto error; } } else { DBG("DEBUG:cpl:write_to_db:User %.*s already in CPL database ->" " update\n",username->len,username->s); if (cpl_dbf.update(db_hdl, keys+2, 0, vals+2, keys, vals, n-2, 2) < 0) { LOG(L_ERR,"ERROR:cpl:write_to_db: update failed !\n"); goto error; } } return 1;error: return -1;}/* delete from database the entity record for a given user - if a user has no * script, he will be removed completely from db; users without script are not * allowed into db ;-) * Returns: 1 - success * -1 - error */int rmv_from_db(str *username, str *domain){ db_key_t keys[2]; db_val_t vals[2]; int n; /* username */ keys[0] = cpl_username_col; vals[0].type = DB_STR; vals[0].nul = 0; vals[0].val.str_val = *username; n = 1; if (domain) { keys[1] = cpl_domain_col; vals[1].type = DB_STR; vals[1].nul = 0; vals[1].val.str_val = *domain; n++; } if (cpl_dbf.delete(db_hdl, keys, NULL, vals, n) < 0) { LOG(L_ERR,"ERROR:cpl-c:rmv_from_db: error when deleting script for " "user \"%.*s\"\n",username->len,username->s); return -1; } return 1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -