summaryrefslogtreecommitdiff
path: root/pool.h
blob: 3dbc7f79532c88f1e887c9ab6a24e9baeecbe0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
    Copyright (C) 2012 - 2015 Andreas Baumann <mail@andreasbaumann.cc>

    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 <http://www.gnu.org/licenses/>.
*/

#ifndef POOL_H
#define POOL_H

#include <sys/types.h>		/* size_t */

#include <libpq-fe.h>		/* for Postgresql database access */

#include <pthread.h>		/* for mutex and conditionals */

typedef struct PgConnPool {
	PGconn **conns;		/* array of connections */
	size_t size;		/* max number of connections */
	unsigned int *avail;	/* status of slots */
	pthread_t *thread;	/* 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 );

int psql_pool_release( PgConnPool *pool, PGconn *conn );

#endif