2014-03-30 23:54:35 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Joris Vink <joris@coders.se>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _H_KORE_PGSQL
|
|
|
|
#define _H_KORE_PGSQL
|
|
|
|
|
|
|
|
#include <libpq-fe.h>
|
|
|
|
|
2014-09-28 21:39:16 +02:00
|
|
|
#define KORE_PGSQL_FORMAT_TEXT 0
|
|
|
|
#define KORE_PGSQL_FORMAT_BINARY 1
|
|
|
|
|
2015-04-01 07:25:10 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-08-14 14:34:23 +02:00
|
|
|
struct pgsql_conn {
|
|
|
|
u_int8_t type;
|
|
|
|
u_int8_t flags;
|
|
|
|
|
|
|
|
PGconn *db;
|
|
|
|
struct pgsql_job *job;
|
|
|
|
TAILQ_ENTRY(pgsql_conn) list;
|
|
|
|
};
|
|
|
|
|
2014-03-30 23:54:35 +02:00
|
|
|
struct kore_pgsql {
|
|
|
|
u_int8_t state;
|
|
|
|
char *error;
|
|
|
|
PGresult *result;
|
2014-08-14 14:34:23 +02:00
|
|
|
struct pgsql_conn *conn;
|
2014-08-14 22:05:34 +02:00
|
|
|
|
|
|
|
LIST_ENTRY(kore_pgsql) rlist;
|
2014-03-30 23:54:35 +02:00
|
|
|
};
|
|
|
|
|
2014-07-04 09:14:05 +02:00
|
|
|
extern u_int16_t pgsql_conn_max;
|
|
|
|
extern char *pgsql_conn_string;
|
2014-04-14 08:41:41 +02:00
|
|
|
|
2014-09-19 12:32:49 +02:00
|
|
|
void kore_pgsql_init(void);
|
|
|
|
void kore_pgsql_handle(void *, int);
|
|
|
|
void kore_pgsql_cleanup(struct kore_pgsql *);
|
|
|
|
void kore_pgsql_continue(struct http_request *, struct kore_pgsql *);
|
2014-09-28 21:39:16 +02:00
|
|
|
int kore_pgsql_query(struct kore_pgsql *, struct http_request *,
|
|
|
|
const char *);
|
|
|
|
int kore_pgsql_query_params(struct kore_pgsql *, struct http_request *,
|
|
|
|
const char *, int, u_int8_t, ...);
|
2014-09-19 12:32:49 +02:00
|
|
|
|
|
|
|
int kore_pgsql_ntuples(struct kore_pgsql *);
|
|
|
|
void kore_pgsql_logerror(struct kore_pgsql *);
|
|
|
|
void kore_pgsql_queue_remove(struct http_request *);
|
|
|
|
char *kore_pgsql_getvalue(struct kore_pgsql *, int, int);
|
2014-09-28 23:03:49 +02:00
|
|
|
int kore_pgsql_getlength(struct kore_pgsql *, int, int);
|
2014-04-01 21:44:22 +02:00
|
|
|
|
2015-04-01 07:25:10 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-03-30 23:54:35 +02:00
|
|
|
#define KORE_PGSQL_STATE_INIT 1
|
|
|
|
#define KORE_PGSQL_STATE_WAIT 2
|
|
|
|
#define KORE_PGSQL_STATE_RESULT 3
|
|
|
|
#define KORE_PGSQL_STATE_ERROR 4
|
|
|
|
#define KORE_PGSQL_STATE_DONE 5
|
|
|
|
#define KORE_PGSQL_STATE_COMPLETE 6
|
|
|
|
|
|
|
|
#endif
|