123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /*
- * $Id$
- *
- * Flatstore module connection pool
- *
- * Copyright (C) 2004 FhG Fokus
- *
- * This file is part of Kamailio, a free SIP server.
- *
- * Kamailio 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
- *
- * Kamailio 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
- */
- #include <unistd.h>
- #include "../../dprint.h"
- #include "km_flat_pool.h"
- #include "km_flat_id.h"
- /* The head of the pool */
- static struct flat_con* pool = 0;
- /*
- * Pid of the process that added the last
- * connection to the pool. This is used to
- * check for inherited database connections.
- */
- static int pool_pid;
- /*
- * Get a connection from the pool, reuse existing
- * if possible, otherwise create a new one
- */
- struct flat_con* flat_get_connection(char* dir, char* table)
- {
- struct flat_id* id;
- struct flat_con* ptr;
- int pid;
- if (!dir || !table) {
- LM_ERR("invalid parameter value\n");
- return 0;
- }
- pid = getpid();
- if (pool && (pool_pid != pid)) {
- LM_ERR("inherited open database connections, "
- "this is not a good idea\n");
- return 0;
- }
- pool_pid = pid;
- id = new_flat_id(dir, table);
- if (!id) return 0;
- ptr = pool;
- while (ptr) {
- if (cmp_flat_id(id, ptr->id)) {
- LM_DBG("connection found in the pool\n");
- ptr->ref++;
- free_flat_id(id);
- return ptr;
- }
- ptr = ptr->next;
- }
- LM_DBG("connection not found in the pool\n");
- ptr = flat_new_connection(id);
- if (!ptr) {
- free_flat_id(id);
- return 0;
- }
- ptr->next = pool;
- pool = ptr;
- return ptr;
- }
- /*
- * Release a connection, the connection will be left
- * in the pool if ref count != 0, otherwise it
- * will be delete completely
- */
- void flat_release_connection(struct flat_con* con)
- {
- struct flat_con* ptr;
- if (!con) return;
- if (con->ref > 1) {
- /* There are still other users, just
- * decrease the reference count and return
- */
- LM_DBG("connection still kept in the pool\n");
- con->ref--;
- return;
- }
- LM_DBG("removing connection from the pool\n");
- if (pool == con) {
- pool = pool->next;
- } else {
- ptr = pool;
- while(ptr) {
- if (ptr->next == con) break;
- ptr = ptr->next;
- }
- if (!ptr) {
- LM_ERR("weird, connection not found in the pool\n");
- } else {
- /* Remove the connection from the pool */
- ptr->next = con->next;
- }
- }
- flat_free_connection(con);
- }
- /*
- * Close and reopen all opened connections
- */
- int flat_rotate_logs(void)
- {
- struct flat_con* ptr;
- ptr = pool;
- while(ptr) {
- if (flat_reopen_connection(ptr)) {
- return -1;
- }
- ptr = ptr->next;
- }
- return 0;
- }
|