generated from tpl/purs
82 lines
3.0 KiB
Raku
82 lines
3.0 KiB
Raku
#!/usr/bin/env perl6
|
||
use v6;
|
||
use NativeCall;
|
||
|
||
module libpq {
|
||
sub PQconnectdb(Str --> Pointer[void]) is native("libpq") {*}
|
||
|
||
sub PQstatus(Pointer[void] --> int32) is native("libpq") {*}
|
||
sub PQerrorMessage(Pointer[void] --> Str) is native("libpq") {*}
|
||
sub PQresultStatus(Pointer[void] --> int32) is native("libpq") {*}
|
||
sub PQresultErrorMessage(Pointer[void] --> Str) is native("libpq") {*}
|
||
|
||
sub PQprepare(Pointer[void], Str, Str, int32, Pointer[void] --> Pointer[void]) is native("libpq") {*}
|
||
sub PQdescribePrepared(Pointer[void], Str --> Pointer[void]) is native("libpq") {*}
|
||
sub PQnparams(Pointer[void] --> int32) is native("libpq") {*}
|
||
sub PQparamtype(Pointer[void], int32 --> uint32) is native("libpq") {*}
|
||
sub PQnfields(Pointer[void] --> int32) is native("libpq") {*}
|
||
sub PQftype(Pointer[void], int32 --> uint32) is native("libpq") {*}
|
||
|
||
our class Description {
|
||
has Int:D @.parameters;
|
||
has Int:D @.fields;
|
||
}
|
||
|
||
our class Connection {
|
||
has Pointer[void] $!handle;
|
||
|
||
method new(Str:D $connection-string) {
|
||
self.bless(:$connection-string);
|
||
}
|
||
|
||
submethod BUILD(Str:D :$connection-string) {
|
||
my $handle = PQconnectdb($connection-string);
|
||
die PQerrorMessage($handle) unless PQstatus($handle) == 0;
|
||
$!handle = $handle;
|
||
}
|
||
|
||
method prepare(Str:D $name, Str:D $source) {
|
||
my $result = PQprepare($!handle, $name, $source, 0, Nil);
|
||
die PQerrorMessage($!handle) unless $result.defined;
|
||
die PQresultErrorMessage($result) unless PQresultStatus($result) == 1;
|
||
}
|
||
|
||
method describe-prepared(Str:D $name) {
|
||
my $result = PQdescribePrepared($!handle, $name);
|
||
die PQerrorMessage($!handle) unless $result.defined;
|
||
die PQresultErrorMessage($result) unless PQresultStatus($result) == 1;
|
||
my @parameters = (0 ..^ PQnparams($result)).map({PQparamtype($result, $_)});
|
||
my @fields = (0 ..^ PQnfields($result)).map({PQftype($result, $_)});
|
||
Description.new(:@parameters, :@fields);
|
||
}
|
||
}
|
||
}
|
||
|
||
my Str:D %types{Int:D} =
|
||
16 => 'Boolean',
|
||
17 => 'ByteString',
|
||
18 => 'Char',
|
||
23 => 'Int',
|
||
25 => 'String',
|
||
701 => 'Number',
|
||
2950 => 'UUID',
|
||
;
|
||
|
||
sub process-module(libpq::Connection:D $conn, Str:D $segment --> Str:D) {
|
||
S:g/'[query|' (.*?) '|]'/&process-query($conn, ~$0)/ given $segment;
|
||
}
|
||
|
||
sub process-query(libpq::Connection:D $conn, Str:D $source --> Str:D) {
|
||
$conn.prepare('', $source);
|
||
my $description = $conn.describe-prepared('');
|
||
my &convert-types = { ($_.map({%types{$_}}), "Unit").flat.join(" × "); };
|
||
my $parameters = &convert-types($description.parameters);
|
||
my $fields = &convert-types($description.fields);
|
||
"(Query \"\"\"$source\"\"\" :: Query ($parameters) ($fields))";
|
||
}
|
||
|
||
sub MAIN(Str $connection-string, IO(Cool) $filename) {
|
||
my $conn = libpq::Connection.new($connection-string);
|
||
print process-module($conn, $filename.slurp);
|
||
}
|