aboutsummaryrefslogtreecommitdiff
path: root/src/pgsql.c
blob: 011a4b7322eafada4a1c7ac9c96687955c58da6d (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* This file is part of guile-sql.
   Copyright (C) 2002 Sergey Poznyakoff

   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/>. */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <string.h>
#include <guile-sql.h>
#include <libpq-fe.h>

static SCM
s_pgsql_mark(struct sql_connect *conn)
{
	return SCM_BOOL_F;
}

static scm_sizet
s_pgsql_free(struct sql_connect *conn)
{
	PGconn *pgconn = (PGconn*) conn->data;
	if (!pgconn)
		return 0;
	PQfinish(pgconn);
	return sizeof(pgconn);
}

static SCM
s_pgsql_connect (const char *hostname, int port,
		 const char *dbname, const char *user, const char *pass,
		 const char *why)
{
	PGconn *pgconn;
	char buf[24];
	SCM smob;
	struct sql_connect *conn;
	
	snprintf(buf, sizeof buf, "%d", port);
	pgconn = PQsetdbLogin(hostname, buf, NULL, NULL, dbname, user, pass);
	if (PQstatus(pgconn) == CONNECTION_BAD) {
		SCM args = scm_list_2(scm_makfrom0str("Cannot connect to the database"),
				      scm_makfrom0str(PQerrorMessage(pgconn)));
		PQfinish(pgconn);
		scm_throw(gsql_error, args);
	}

	smob = sql_connect_create("pgsql");
	conn = (struct sql_connect *)SCM_CDR(smob);
	conn->data = pgconn;
	return smob;
}

static SCM
result_to_list(PGresult *res)
{
	int i, j;
	int ntuples = PQntuples(res);
	int nfields = PQnfields(res);
	SCM row_head = SCM_EOL, row_tail;

	for (i = 0; i < ntuples; i++) {
		SCM new_row;
		SCM head = SCM_EOL, tail;

		for (j = 0; j < nfields; j++) {
			char *val = PQgetvalue(res, i, j);
			SCM new_elt = scm_cons(scm_makfrom0str(val), SCM_EOL);
			if (head == SCM_EOL)
				head = new_elt;
			else
				SCM_SETCDR(tail, new_elt);
			tail = new_elt;
		}

		new_row = scm_cons(head, SCM_EOL);
			
		if (row_head == SCM_EOL) 
			row_head = new_row;
		else 
			SCM_SETCDR(row_tail, new_row);
		row_tail = new_row;
	}
	return row_head;
}

static SCM
s_pgsql_query(struct sql_connect *conn, const char *query)
{
	PGconn *pgconn = (PGconn*) conn->data;
	PGresult       *res;
	SCM cell;
	ExecStatusType stat;
	
	res = PQexec(pgconn, query);
	if (!res)
		scm_throw(gsql_error,
			  scm_list_2(scm_makfrom0str("Error executing PostgreSQL query"),
				     scm_makfrom0str(PQerrorMessage(pgconn))));

	stat = PQresultStatus(res);

	switch (stat) {
	case PGRES_COMMAND_OK:
		/* Successful completion of a command returning no data */
		cell = scm_makenum(strtoul(PQcmdTuples(res), NULL, 0));
		break;
	case PGRES_TUPLES_OK:
		/* The query successfully executed */
		cell = result_to_list(res);
		PQclear(res);
		break;
	default:
		scm_throw(gsql_error, scm_list_2(scm_makfrom0str("PostgreSQL error"),
						 scm_makfrom0str(PQresStatus(stat))));
	}

	return cell;
}

static void
s_pgsql_close(struct sql_connect *conn)
{
	PGconn *pgconn = (PGconn*) conn->data;
	if (!pgconn)
		return;
	PQfinish(pgconn);
	conn->data = NULL;
}

struct sql_iface pgsql_iface = {
	"pgsql",
	s_pgsql_mark,
	s_pgsql_free,
	s_pgsql_connect,
	s_pgsql_close,
	s_pgsql_query,
};


	

Return to:

Send suggestions and report system problems to the System administrator.