2016-12-22 19:22:18 +00:00
|
|
|
|
#!/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',
|
2016-12-22 22:22:00 +00:00
|
|
|
|
2951 => 'List String',
|
2016-12-22 19:22:18 +00:00
|
|
|
|
;
|
|
|
|
|
|
2016-12-22 19:32:52 +00:00
|
|
|
|
sub process-module(libpq::Connection:D $conn, Str:D $segment --> Str:D) {
|
2016-12-22 19:22:18 +00:00
|
|
|
|
S:g/'[query|' (.*?) '|]'/&process-query($conn, ~$0)/ given $segment;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-22 19:32:52 +00:00
|
|
|
|
sub process-query(libpq::Connection:D $conn, Str:D $source --> Str:D) {
|
2016-12-22 19:22:18 +00:00
|
|
|
|
$conn.prepare('', $source);
|
|
|
|
|
my $description = $conn.describe-prepared('');
|
2016-12-22 22:22:00 +00:00
|
|
|
|
my &convert-types = {
|
|
|
|
|
die "unknown oid: $_" unless %types{$_}:exists for $_;
|
|
|
|
|
($_.map({%types{$_}}), "Unit").flat.join(" × ");
|
|
|
|
|
};
|
2016-12-22 19:22:18 +00:00
|
|
|
|
my $parameters = &convert-types($description.parameters);
|
|
|
|
|
my $fields = &convert-types($description.fields);
|
|
|
|
|
"(Query \"\"\"$source\"\"\" :: Query ($parameters) ($fields))";
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-22 22:02:02 +00:00
|
|
|
|
sub MAIN(Str $connection-string, IO(Cool) $in-file, IO(Cool) $out-file) {
|
2016-12-22 19:31:30 +00:00
|
|
|
|
my $conn = libpq::Connection.new($connection-string);
|
2016-12-22 22:02:02 +00:00
|
|
|
|
$out-file.spurt(process-module($conn, $in-file.slurp));
|
2016-12-22 19:22:18 +00:00
|
|
|
|
}
|