2019-08-03 21:26:12 +02:00
|
|
|
module pg
|
|
|
|
|
|
|
|
#flag -lpq
|
|
|
|
#flag linux -I/usr/include/postgresql
|
|
|
|
#flag darwin -I/opt/local/include/postgresql11
|
2020-03-26 14:17:13 +01:00
|
|
|
#flag windows -I @VROOT/thirdparty/pg/include
|
|
|
|
#flag windows -L @VROOT/thirdparty/pg/win64
|
2019-08-03 21:26:12 +02:00
|
|
|
#include <libpq-fe.h>
|
2019-11-23 17:45:35 +01:00
|
|
|
pub struct DB {
|
2019-08-03 21:26:12 +02:00
|
|
|
mut:
|
2019-09-12 03:53:14 +02:00
|
|
|
conn &C.PGconn
|
2019-08-03 21:26:12 +02:00
|
|
|
}
|
|
|
|
|
2019-11-23 17:45:35 +01:00
|
|
|
pub struct Row {
|
2019-09-12 03:53:14 +02:00
|
|
|
pub mut:
|
2019-08-03 21:26:12 +02:00
|
|
|
vals []string
|
|
|
|
}
|
|
|
|
|
2020-10-03 07:03:11 +02:00
|
|
|
struct C.PGResult {
|
|
|
|
}
|
2019-08-03 21:26:12 +02:00
|
|
|
|
2019-11-23 17:45:35 +01:00
|
|
|
pub struct Config {
|
2019-08-20 10:08:06 +02:00
|
|
|
pub:
|
2020-10-03 07:03:11 +02:00
|
|
|
host string
|
|
|
|
port int = 5432
|
|
|
|
user string
|
2019-12-05 20:31:56 +01:00
|
|
|
password string
|
2020-10-03 07:03:11 +02:00
|
|
|
dbname string
|
2019-08-20 10:08:06 +02:00
|
|
|
}
|
|
|
|
|
2019-09-12 03:53:14 +02:00
|
|
|
fn C.PQconnectdb(a byteptr) &C.PGconn
|
2019-08-03 21:26:12 +02:00
|
|
|
|
2020-10-03 07:03:11 +02:00
|
|
|
fn C.PQerrorMessage(arg_1 voidptr) byteptr
|
|
|
|
|
|
|
|
fn C.PQgetvalue(arg_1 voidptr, arg_2, arg_3 int) byteptr
|
|
|
|
|
|
|
|
fn C.PQstatus(arg_1 voidptr) int
|
|
|
|
|
|
|
|
fn C.PQntuples(arg_1 voidptr) int
|
|
|
|
|
|
|
|
fn C.PQnfields(arg_1 voidptr) int
|
|
|
|
|
|
|
|
fn C.PQexec(arg_1 voidptr) voidptr
|
|
|
|
|
|
|
|
fn C.PQexecParams(arg_1 voidptr) voidptr
|
|
|
|
|
|
|
|
fn C.PQclear(arg_1 voidptr) voidptr
|
|
|
|
|
|
|
|
fn C.PQfinish(arg_1 voidptr)
|
|
|
|
|
|
|
|
// Makes a new connection to the database server using
|
|
|
|
// the parameters from the `Config` structure, returning
|
|
|
|
// a connection error when something goes wrong
|
2020-05-10 21:16:03 +02:00
|
|
|
pub fn connect(config Config) ?DB {
|
2020-03-06 02:01:53 +01:00
|
|
|
conninfo := 'host=$config.host port=$config.port user=$config.user dbname=$config.dbname password=$config.password'
|
2019-12-05 20:31:56 +01:00
|
|
|
conn := C.PQconnectdb(conninfo.str)
|
2020-10-03 07:03:11 +02:00
|
|
|
if conn == 0 {
|
|
|
|
return error('libpq memory allocation error')
|
|
|
|
}
|
2019-08-03 21:26:12 +02:00
|
|
|
status := C.PQstatus(conn)
|
2019-11-23 17:45:35 +01:00
|
|
|
if status != C.CONNECTION_OK {
|
2020-10-03 07:03:11 +02:00
|
|
|
// We force the construction of a new string as the
|
|
|
|
// error message will be freed by the next `PQfinish`
|
|
|
|
// call
|
|
|
|
c_error_msg := unsafe {C.PQerrorMessage(conn).vstring()}
|
|
|
|
error_msg := '$c_error_msg'
|
|
|
|
C.PQfinish(conn)
|
|
|
|
return error('Connection to a PG database failed: $error_msg')
|
|
|
|
}
|
|
|
|
return DB{
|
|
|
|
conn: conn
|
2019-08-03 21:26:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:16:03 +02:00
|
|
|
fn res_to_rows(res voidptr) []Row {
|
2019-11-23 17:45:35 +01:00
|
|
|
nr_rows := C.PQntuples(res)
|
|
|
|
nr_cols := C.PQnfields(res)
|
2020-05-10 21:16:03 +02:00
|
|
|
mut rows := []Row{}
|
2020-10-03 07:03:11 +02:00
|
|
|
for i in 0 .. nr_rows {
|
2019-08-03 21:26:12 +02:00
|
|
|
mut row := Row{}
|
2020-10-03 07:03:11 +02:00
|
|
|
for j in 0 .. nr_cols {
|
2019-11-23 17:45:35 +01:00
|
|
|
val := C.PQgetvalue(res, i, j)
|
2020-10-03 07:03:11 +02:00
|
|
|
sval := unsafe {val.vstring()}
|
2020-08-10 18:05:26 +02:00
|
|
|
row.vals << sval
|
2019-08-03 21:26:12 +02:00
|
|
|
}
|
|
|
|
rows << row
|
|
|
|
}
|
2020-06-26 11:55:59 +02:00
|
|
|
C.PQclear(res)
|
2019-08-03 21:26:12 +02:00
|
|
|
return rows
|
|
|
|
}
|
|
|
|
|
2020-09-21 01:47:37 +02:00
|
|
|
// close frees the underlaying resource allocated by the database connection
|
|
|
|
pub fn (db DB) close() {
|
|
|
|
C.PQfinish(db.conn)
|
|
|
|
}
|
|
|
|
|
2019-08-03 21:26:12 +02:00
|
|
|
pub fn (db DB) q_int(query string) int {
|
|
|
|
rows := db.exec(query)
|
|
|
|
if rows.len == 0 {
|
|
|
|
println('q_int "$query" not found')
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
row := rows[0]
|
|
|
|
if row.vals.len == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
val := row.vals[0]
|
2019-11-23 17:45:35 +01:00
|
|
|
return val.int()
|
2019-08-03 21:26:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (db DB) q_string(query string) string {
|
|
|
|
rows := db.exec(query)
|
|
|
|
if rows.len == 0 {
|
|
|
|
println('q_string "$query" not found')
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
row := rows[0]
|
|
|
|
if row.vals.len == 0 {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
val := row.vals[0]
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:16:03 +02:00
|
|
|
pub fn (db DB) q_strings(query string) []Row {
|
2019-08-03 21:26:12 +02:00
|
|
|
return db.exec(query)
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:16:03 +02:00
|
|
|
pub fn (db DB) exec(query string) []Row {
|
2019-08-03 21:26:12 +02:00
|
|
|
res := C.PQexec(db.conn, query.str)
|
2020-10-03 07:03:11 +02:00
|
|
|
e := unsafe {C.PQerrorMessage(db.conn).vstring()}
|
2019-08-03 21:26:12 +02:00
|
|
|
if e != '' {
|
|
|
|
println('pg exec error:')
|
|
|
|
println(e)
|
|
|
|
return res_to_rows(res)
|
|
|
|
}
|
|
|
|
return res_to_rows(res)
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:16:03 +02:00
|
|
|
fn rows_first_or_empty(rows []Row) ?Row {
|
2019-08-20 14:34:34 +02:00
|
|
|
if rows.len == 0 {
|
|
|
|
return error('no row')
|
2019-11-23 17:45:35 +01:00
|
|
|
}
|
2019-08-20 14:34:34 +02:00
|
|
|
return rows[0]
|
|
|
|
}
|
2019-11-23 17:45:35 +01:00
|
|
|
|
2020-05-10 21:16:03 +02:00
|
|
|
pub fn (db DB) exec_one(query string) ?Row {
|
2019-08-09 18:10:59 +02:00
|
|
|
res := C.PQexec(db.conn, query.str)
|
2020-10-03 07:03:11 +02:00
|
|
|
e := unsafe {C.PQerrorMessage(db.conn).vstring()}
|
2019-08-09 18:10:59 +02:00
|
|
|
if e != '' {
|
2019-08-20 14:34:34 +02:00
|
|
|
return error('pg exec error: "$e"')
|
2019-08-09 18:10:59 +02:00
|
|
|
}
|
2020-10-03 07:03:11 +02:00
|
|
|
row := rows_first_or_empty(res_to_rows(res)) ?
|
2019-08-20 14:34:34 +02:00
|
|
|
return row
|
2019-08-09 18:10:59 +02:00
|
|
|
}
|
|
|
|
|
2020-02-26 23:17:56 +01:00
|
|
|
// The entire function can be considered unsafe because of the malloc and the
|
|
|
|
// free. This prevents warnings and doesn't seem to affect behavior.
|
2020-05-10 21:16:03 +02:00
|
|
|
pub fn (db DB) exec_param_many(query string, params []string) []Row {
|
2020-02-26 23:17:56 +01:00
|
|
|
unsafe {
|
2020-06-07 16:05:44 +02:00
|
|
|
mut param_vals := &byteptr(malloc(params.len * 8))
|
2020-10-03 07:03:11 +02:00
|
|
|
for i in 0 .. params.len {
|
2020-02-26 23:17:56 +01:00
|
|
|
param_vals[i] = params[i].str
|
|
|
|
}
|
|
|
|
res := C.PQexecParams(db.conn, query.str, params.len, 0, param_vals, 0, 0, 0)
|
|
|
|
free(param_vals)
|
|
|
|
return db.handle_error_or_result(res, 'exec_param_many')
|
2020-01-03 22:07:28 +01:00
|
|
|
}
|
2020-02-26 23:17:56 +01:00
|
|
|
}
|
2020-01-03 22:07:28 +01:00
|
|
|
|
2020-10-03 07:03:11 +02:00
|
|
|
pub fn (db DB) exec_param2(query, param, param2 string) []Row {
|
2020-08-19 07:10:09 +02:00
|
|
|
mut param_vals := [2]byteptr{}
|
2019-11-23 17:45:35 +01:00
|
|
|
param_vals[0] = param.str
|
|
|
|
param_vals[1] = param2.str
|
|
|
|
res := C.PQexecParams(db.conn, query.str, 2, 0, param_vals, 0, 0, 0)
|
2020-01-03 22:07:28 +01:00
|
|
|
return db.handle_error_or_result(res, 'exec_param2')
|
2019-08-03 21:26:12 +02:00
|
|
|
}
|
|
|
|
|
2020-10-03 07:03:11 +02:00
|
|
|
pub fn (db DB) exec_param(query, param string) []Row {
|
2020-08-19 07:10:09 +02:00
|
|
|
mut param_vals := [1]byteptr{}
|
2019-11-23 17:45:35 +01:00
|
|
|
param_vals[0] = param.str
|
|
|
|
res := C.PQexecParams(db.conn, query.str, 1, 0, param_vals, 0, 0, 0)
|
2020-01-03 22:07:28 +01:00
|
|
|
return db.handle_error_or_result(res, 'exec_param')
|
2019-08-03 21:26:12 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 21:16:03 +02:00
|
|
|
fn (db DB) handle_error_or_result(res voidptr, elabel string) []Row {
|
2020-10-03 07:03:11 +02:00
|
|
|
e := unsafe {C.PQerrorMessage(db.conn).vstring()}
|
2020-01-03 22:07:28 +01:00
|
|
|
if e != '' {
|
|
|
|
println('pg $elabel error:')
|
|
|
|
println(e)
|
|
|
|
return res_to_rows(res)
|
|
|
|
}
|
|
|
|
return res_to_rows(res)
|
|
|
|
}
|