From 018784958ae6a4e77b23a5ddfe7959123afcadff Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 19 Apr 2012 15:17:58 +0200 Subject: added a first multi-threaded version with a databse pool --- pool.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pool.h (limited to 'pool.h') diff --git a/pool.h b/pool.h new file mode 100644 index 0000000..696fcd1 --- /dev/null +++ b/pool.h @@ -0,0 +1,43 @@ +/* + Copyright (C) 2012 Andreas Baumann + + This program 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 3 of the License, or + (at your option) any later version. + + This program 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, see . +*/ + +#ifndef POOL_H +#define POOL_H + +#include /* size_t */ + +#include /* for Postgresql database access */ + +#include /* for mutex and conditionals */ + +typedef struct PgConnPool { + PGconn **conns; /* array of connections */ + size_t size; /* max number of connections */ + pid_t *avail; /* slots of allocated/available connections per thread */ + pthread_mutex_t lock; /* monitor lock */ + pthread_cond_t cond; /* condition signalling a free connection */ +} PgConnPool; + +int psql_pool_init( PgConnPool *pool, const char *conninfo, const size_t max_connections ); + +int psql_pool_destroy( PgConnPool *pool ); + +PGconn *psql_pool_acquire( PgConnPool *pool, pid_t pid ); + +int psql_pool_release( PgConnPool *pool, pid_t pid ); + +#endif -- cgit v1.2.3-54-g00ecf