/usr/share/perl5/Alzabo/Driver/PostgreSQL.pm is in libalzabo-perl 0.92-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | package Alzabo::Driver::PostgreSQL;
use strict;
use vars qw($VERSION);
use Alzabo::Driver;
use DBD::Pg;
use DBI;
use Params::Validate qw( :all );
Params::Validate::validation_options( on_fail => sub { Alzabo::Exception::Params->throw( error => join '', @_ ) } );
$VERSION = 2.0;
use base qw(Alzabo::Driver);
sub new
{
my $proto = shift;
my $class = ref $proto || $proto;
return bless {}, $class;
}
sub connect
{
my $self = shift;
$self->{tran_count} = undef;
# This database handle is stale or nonexistent, so we need to (re)connect
$self->disconnect if $self->{dbh};
$self->{dbh} = $self->_make_dbh( @_,
name => $self->{schema}->db_schema_name
);
}
sub supports_referential_integrity { 1 }
sub schemas
{
my $self = shift;
my %p = validate( @_, { user => { type => SCALAR | UNDEF,
optional => 1 },
password => { type => SCALAR | UNDEF,
optional => 1 },
host => { type => SCALAR | UNDEF,
optional => 1 },
port => { type => SCALAR | UNDEF,
optional => 1 },
options => { type => SCALAR | UNDEF,
optional => 1 },
tty => { type => SCALAR | UNDEF,
optional => 1 },
} );
local %ENV;
foreach ( grep { defined $p{$_} && length $p{$_} } keys %p )
{
my $key = uc "pg$_";
$ENV{$key} = $p{$_};
}
my @schemas = ( map { if ( defined )
{
/dbi:\w+:dbname="?(\w+)"?/i;
$1 ? $1 : ();
}
else
{
();
}
}
DBI->data_sources( $self->dbi_driver_name ) );
return @schemas;
}
sub tables
{
my $self = shift;
# It seems that with DBD::Pg 1.31 & 1.32 you can't just the
# database's table, you also get the system tables back
return grep { ! /^(?:pg_catalog|information_schema)\./ } $self->SUPER::tables( @_ );
}
sub create_database
{
my $self = shift;
# Obviously we can't connect to the main database if it doesn't
# exist yet, but postgres doesn't let us be databaseless, so we
# connect to something else. "template1" should always be there.
my $dbh = $self->_make_dbh( @_, name => 'template1' );
eval { $dbh->do( "CREATE DATABASE " . $dbh->quote_identifier( $self->{schema}->db_schema_name ) ); };
my $e = $@;
eval { $dbh->disconnect; };
Alzabo::Exception::Driver->throw( error => $e ) if $e;
Alzabo::Exception::Driver->throw( error => $@ ) if $@;
}
sub drop_database
{
my $self = shift;
# We can't drop the current database, so we have to connect to
# something else. "template1" should always be there.
$self->disconnect;
my $dbh = $self->_make_dbh( @_, name => 'template1' );
eval { $dbh->do( "DROP DATABASE " . $dbh->quote_identifier( $self->{schema}->db_schema_name ) ); };
my $e = $@;
eval { $dbh->disconnect; };
$e ||= $@;
Alzabo::Exception::Driver->throw( error => $e ) if $e;
}
sub _connect_params
{
my $self = shift;
my %p = @_;
%p = validate( @_, { name => { type => SCALAR },
user => { type => SCALAR | UNDEF,
optional => 1 },
password => { type => SCALAR | UNDEF,
optional => 1 },
host => { type => SCALAR | UNDEF,
optional => 1 },
port => { type => SCALAR | UNDEF,
optional => 1 },
options => { type => SCALAR | UNDEF,
optional => 1 },
tty => { type => SCALAR | UNDEF,
optional => 1 },
service => { type => SCALAR | UNDEF,
optional => 1 },
sslmode => { type => SCALAR | UNDEF,
optional => 1 },
map { $_ => 0 } grep { /^pg_/ } keys %p,
} );
my $dsn = "dbi:Pg:dbname=$p{name}";
foreach ( qw( host port options tty service sslmode ) )
{
$dsn .= ";$_=$p{$_}" if grep { defined && length } $p{$_};
}
my %pg_keys = map { $_ => $p{$_} } grep { /^pg_/ } keys %p;
return [ $dsn, $p{user}, $p{password},
{ RaiseError => 1,
AutoCommit => 1,
PrintError => 0,
%pg_keys,
},
];
}
sub next_sequence_number
{
my $self = shift;
my $col = shift;
$self->_ensure_valid_dbh;
Alzabo::Exception::Params->throw
( error => "This column (" . $col->name . ") is not sequenced" )
unless $col->sequenced;
my $seq_name;
if ( $col->type =~ /SERIAL/ )
{
$seq_name = join '_', $col->table->name, $col->name;
my $maxlen = $self->identifier_length;
$seq_name = substr( $seq_name, 0, $maxlen - 4 ) if length $seq_name > ($maxlen - 4);
$seq_name .= '_seq';
}
else
{
$seq_name = join '___', $col->table->name, $col->name;
}
$seq_name = $self->{dbh}->quote_identifier($seq_name)
if $self->{schema}->quote_identifiers;
$self->{last_id} = $self->one_row( sql => "SELECT NEXTVAL('$seq_name')" );
return $self->{last_id};
}
sub get_last_id
{
my $self = shift;
return $self->{last_id};
}
sub driver_id
{
return 'PostgreSQL';
}
sub dbi_driver_name
{
return 'Pg';
}
sub rdbms_version
{
my $self = shift;
my $version_string = $self->one_row( sql => 'SELECT version()' );
my ($version) = $version_string =~ /^PostgreSQL ([\d.]+)/
or die "Couldn't determine version number from version string '$version_string'";
return $version;
}
sub identifier_length
{
my $self = shift;
return $self->{identifier_length} if $self->{identifier_length};
return
$self->{identifier_length} = $self->rdbms_version ge '7.3' ? 63 : 31;
}
1;
__END__
=head1 NAME
Alzabo::Driver::PostgreSQL - PostgreSQL specific Alzabo driver subclass
=head1 SYNOPSIS
use Alzabo::Driver::PostgreSQL;
=head1 DESCRIPTION
This provides some PostgreSQL specific implementations for the virtual
methods in Alzabo::Driver.
=head1 METHODS
=head2 connect, create_database, drop_database
Besides the parameters listed in L<the Alzabo::Driver
docs|Alzabo::Driver/Parameters for connect(),
create_database(), and drop_database()>, the following parameters
are accepted:
=over 4
=item * options
=item * tty
=back
=head2 schemas
This method accepts the same parameters as the C<connect()> method.
=head2 get_last_id
Returns the last id created for a sequenced column.
=head2 identifier_length
Returns the maximum identifier length allowed by the database. This
is really a guess based on the server version, since the actual value
is set when the server is compiled.
=head1 BUGS
In testing, I found that there were some problems using Postgres in a
situation where you start the app, connect to the database, get some
data, fork, reconnect, and and then get more data. I suspect that
this has more to do with the DBD::Pg driver and/or Postgres itself
than Alzabo. I don't believe this would be a problem with an app
which forks before ever connecting to the database (such as mod_perl).
=head1 AUTHOR
Dave Rolsky, <autarch@urth.org>
=cut
|