1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/pg/pg.v

206 lines
5.0 KiB
V
Raw Normal View History

module pg
#flag -lpq
#flag linux -I/usr/include/postgresql
#flag darwin -I/opt/local/include/postgresql11
2020-03-26 16:17:13 +03:00
#flag windows -I @VROOT/thirdparty/pg/include
#flag windows -L @VROOT/thirdparty/pg/win64
#include <libpq-fe.h>
2019-11-23 19:45:35 +03:00
pub struct DB {
mut:
conn &C.PGconn
}
2019-11-23 19:45:35 +03:00
pub struct Row {
pub mut:
vals []string
}
struct C.PGResult {
}
2019-11-23 19:45:35 +03:00
pub struct Config {
2019-08-20 11:08:06 +03:00
pub:
host string
port int = 5432
user string
2019-12-05 22:31:56 +03:00
password string
dbname string
2019-08-20 11:08:06 +03:00
}
fn C.PQconnectdb(a byteptr) &C.PGconn
fn C.PQerrorMessage(voidptr) byteptr
fn C.PQgetvalue(voidptr, int, int) byteptr
fn C.PQstatus(voidptr) int
fn C.PQntuples(voidptr) int
fn C.PQnfields(voidptr) int
fn C.PQexec(voidptr) voidptr
fn C.PQexecParams(voidptr) voidptr
fn C.PQclear(voidptr) voidptr
fn C.PQfinish(voidptr)
// connect 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 22:16:03 +03:00
pub fn connect(config Config) ?DB {
2020-03-06 04:01:53 +03:00
conninfo := 'host=$config.host port=$config.port user=$config.user dbname=$config.dbname password=$config.password'
2019-12-05 22:31:56 +03:00
conn := C.PQconnectdb(conninfo.str)
if conn == 0 {
return error('libpq memory allocation error')
}
status := C.PQstatus(conn)
2019-11-23 19:45:35 +03:00
if status != C.CONNECTION_OK {
// 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
}
}
2020-05-10 22:16:03 +03:00
fn res_to_rows(res voidptr) []Row {
2019-11-23 19:45:35 +03:00
nr_rows := C.PQntuples(res)
nr_cols := C.PQnfields(res)
2020-05-10 22:16:03 +03:00
mut rows := []Row{}
for i in 0 .. nr_rows {
mut row := Row{}
for j in 0 .. nr_cols {
2019-11-23 19:45:35 +03:00
val := C.PQgetvalue(res, i, j)
sval := unsafe {val.vstring()}
row.vals << sval
}
rows << row
}
2020-06-26 12:55:59 +03:00
C.PQclear(res)
return rows
}
// close frees the underlaying resource allocated by the database connection
pub fn (db DB) close() {
C.PQfinish(db.conn)
}
// q_int submit a command to the database server and
// returns an the first field in the first tuple
// converted to an int. If no row is found or on
// command failure, an error is returned
pub fn (db DB) q_int(query string) ?int {
rows := db.exec(query) ?
if rows.len == 0 {
return error('q_int "$query" not found')
}
row := rows[0]
if row.vals.len == 0 {
return 0
}
val := row.vals[0]
2019-11-23 19:45:35 +03:00
return val.int()
}
// q_int submit a command to the database server and
// returns an the first field in the first tuple
// as a string. If no row is found or on
// command failure, an error is returned
pub fn (db DB) q_string(query string) ?string {
rows := db.exec(query) ?
if rows.len == 0 {
return error('q_string "$query" not found')
}
row := rows[0]
if row.vals.len == 0 {
return ''
}
val := row.vals[0]
return val
}
// q_strings submit a command to the database server and
// returns the resulting row set. Alias of `exec`
pub fn (db DB) q_strings(query string) ?[]Row {
return db.exec(query)
}
// exec submit a command to the database server and wait
// for the result, returning an error on failure and a
// row set on success
pub fn (db DB) exec(query string) ?[]Row {
res := C.PQexec(db.conn, query.str)
e := unsafe {C.PQerrorMessage(db.conn).vstring()}
if e != '' {
error_msg := '$e'
C.PQclear(res)
return error(error_msg)
}
return res_to_rows(res)
}
2020-05-10 22:16:03 +03:00
fn rows_first_or_empty(rows []Row) ?Row {
if rows.len == 0 {
return error('no row')
2019-11-23 19:45:35 +03:00
}
return rows[0]
}
2019-11-23 19:45:35 +03:00
2020-05-10 22:16:03 +03:00
pub fn (db DB) exec_one(query string) ?Row {
2019-08-09 19:10:59 +03:00
res := C.PQexec(db.conn, query.str)
e := unsafe {C.PQerrorMessage(db.conn).vstring()}
2019-08-09 19:10:59 +03:00
if e != '' {
return error('pg exec error: "$e"')
2019-08-09 19:10:59 +03:00
}
row := rows_first_or_empty(res_to_rows(res)) ?
return row
2019-08-09 19:10:59 +03:00
}
2020-02-27 01:17:56 +03: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 22:16:03 +03:00
pub fn (db DB) exec_param_many(query string, params []string) []Row {
2020-02-27 01:17:56 +03:00
unsafe {
2020-06-07 17:05:44 +03:00
mut param_vals := &byteptr(malloc(params.len * 8))
for i in 0 .. params.len {
2020-02-27 01:17:56 +03: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-04 00:07:28 +03:00
}
2020-02-27 01:17:56 +03:00
}
2020-01-04 00:07:28 +03:00
2020-10-19 21:11:04 +03:00
pub fn (db DB) exec_param2(query string, param string, param2 string) []Row {
2020-08-19 08:10:09 +03:00
mut param_vals := [2]byteptr{}
2019-11-23 19:45:35 +03: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-04 00:07:28 +03:00
return db.handle_error_or_result(res, 'exec_param2')
}
2020-10-19 21:11:04 +03:00
pub fn (db DB) exec_param(query string, param string) []Row {
2020-08-19 08:10:09 +03:00
mut param_vals := [1]byteptr{}
2019-11-23 19:45:35 +03:00
param_vals[0] = param.str
res := C.PQexecParams(db.conn, query.str, 1, 0, param_vals, 0, 0, 0)
2020-01-04 00:07:28 +03:00
return db.handle_error_or_result(res, 'exec_param')
}
2020-05-10 22:16:03 +03:00
fn (db DB) handle_error_or_result(res voidptr, elabel string) []Row {
e := unsafe {C.PQerrorMessage(db.conn).vstring()}
2020-01-04 00:07:28 +03:00
if e != '' {
println('pg $elabel error:')
println(e)
return res_to_rows(res)
}
return res_to_rows(res)
}