/usr/share/perl5/EB/DB/Sqlite.pm is in eekboek 2.00.03-1.
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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | #! perl
# Sqlite.pm -- EekBoek driver for SQLite database
# RCS Info : $Id: Sqlite.pm,v 1.12 2009/12/20 21:41:14 jv Exp $
# Author : Johan Vromans
# Created On : Sat Oct 7 10:10:36 2006
# Last Modified By: Johan Vromans
# Last Modified On: Sun Dec 20 19:32:13 2009
# Update Count : 159
# Status : Unknown, Use with caution!
package main;
our $cfg;
package EB::DB::Sqlite;
use strict;
use warnings;
our $VERSION = sprintf "%d.%03d", q$Revision: 1.12 $ =~ /(\d+)/g;
use EB;
use DBI;
use File::Spec;
my $CONCURRENT;
sub CONCURRENT() {
return $CONCURRENT if defined $CONCURRENT;
$CONCURRENT = $cfg->val(__PACKAGE__, "concurrent", 1);
}
my $dbh; # singleton
my $sdb; # singleton, DB for sequences
my $dataset;
my $trace = $cfg->val(__PACKAGE__, "trace", 0);
# API: type type of driver
sub type { "SQLite" }
sub _dbname {
my ($dbname) = @_;
$dbname = File::Spec->catfile( $cfg->val(qw(database path)), $dbname )
if $cfg->val(qw(database path), undef);
$dbname =~ s;(^|.*[/\\])(ebsqlite_|eekboek_)?([^/\\]+)$;${1}ebsqlite_$3;;
return $dbname;
}
sub _dsn {
my $dsn = "dbi:SQLite:dbname=" . shift;
}
# API: create a new, empty database.
sub create {
my ($self, $dbname) = @_;
$dbname = _dbname($dbname);
# Create (empty) db file.
open(my $db, '>', $dbname);
close($db);
unlink("$dbname-journal")
and warn("%".__x("Database journal voor {db} verwijderd",
db => $dbname)."\n");
unlink("$dbname-seq")
and warn("%".__x("Database sequences voor {db} verwijderd",
db => $dbname)."\n");
}
# API: connect to an existing database.
sub connect {
my ($self, $dbname) = @_;
croak("?INTERNAL ERROR: connect db without dataset name") unless $dbname;
if ( $dataset && $dbh && $dbname eq $dataset ) {
return $dbh;
}
$self->disconnect;
$dbname = _dbname($dbname);
$cfg->newval(qw(database fullname), $dbname);
unless ( -e $dbname ) {
die("?".__x("Geen database met naam {name} gevonden",
name => $dbname)."\n");
}
$dbh = DBI::->connect(_dsn($dbname))
or die("?".__x("Database verbindingsprobleem: {err}",
err => $DBI::errstr)."\n");
$dataset = $dbname;
if ( CONCURRENT ) {
$sdb = DBI::->connect(_dsn($dbname)."-seq")
or die("?".__x("Database verbindingsprobleem: {err}",
err => $DBI::errstr)."\n");
$sdb->{RaiseError} = 1;
$sdb->{AutoCommit} = 0;
}
else {
$sdb = $dbh;
}
# Our database is UTF8, so deal with it properly.
if ( $DBD::SQLite::VERSION ge "1.26_06" ) {
$dbh->{sqlite_unicode} = 1;
}
else {
$dbh->{unicode} = 1;
}
# Create some missing functions.
register_functions();
return $dbh;
}
# API: Disconnect from a database.
sub disconnect {
my ($self) = @_;
return unless $dbh;
$dbh->disconnect;
$sdb->disconnect if CONCURRENT;
undef $dbh;
undef $sdb;
undef $dataset;
}
# API: Clear database contents, including tables and such.
sub clear {
my ($self) = @_;
croak("?INTERNAL ERROR: clear db while not connected") unless $dbh;
croak("?INTERNAL ERROR: clear db not supperted by this driver");
my $ds = $dataset;
$self->disconnect;
$self->create($ds);
$self->connect($ds);
}
# API: Setup whatever is needed.
sub setup {
# setup will be called after the connection to the database has
# been established.
# Create table for sequences.
unless ( $sdb->selectrow_arrayref("SELECT name".
" FROM sqlite_master".
" WHERE name = 'eb_seq'".
" AND type = 'table'") ) {
$sdb->do("CREATE TABLE eb_seq".
" (name TEXT PRIMARY KEY,".
" value INT)");
$sdb->commit if CONCURRENT;
}
# Clone Accounts table into TAccounts.
unless ( $dbh->selectrow_arrayref("SELECT name".
" FROM sqlite_master".
" WHERE name like 'taccounts'".
" AND type = 'table'") ) {
my $sql = $dbh->selectrow_arrayref("SELECT sql".
" FROM sqlite_master".
" WHERE name like 'accounts'".
" AND type = 'table'")->[0];
$sql =~ s/TABLE Accounts/TABLE TAccounts/;
$dbh->do($sql);
}
# Caller will commit.
}
# API: Get a array ref with table names (lowcased).
sub get_tables {
my $self = shift;
my @t;
foreach ( $dbh->tables ) {
# SQLite returns table names with quotes.
# Our tables all start with an uppercase letter.
next unless /^"(?:main"\.")?([[:upper:]].+)"$/i;
push(@t, lc($1));
}
\@t;
}
# API: List available data sources.
sub list { [] }
################ Sequences ################
# Currently non-atomic, restricting to single user mode.
sub _create_sequence {
my ($sn, $value) = (@_, 1);
$sdb->do("INSERT INTO eb_seq (name, value) VALUES (?, ?)",
{}, $sn, $value);
$sdb->commit if CONCURRENT;
$value;
}
sub _get_sequence {
my ($seq) = @_;
# Get the current (=next) value.
my $rr = $sdb->selectrow_arrayref("SELECT value".
" FROM eb_seq".
" WHERE name = ?", {}, $seq);
$rr ? $rr->[0] : undef;
}
sub _set_sequence {
my ($seq, $value) = @_;
$sdb->do("UPDATE eb_seq SET value = ? WHERE name = ?", {}, $value, $seq);
$sdb->commit if CONCURRENT;
return;
}
# API: Get the next value for a sequence, incrementing it.
sub get_sequence {
my ($self, $seq) = @_;
if ( my $v = _get_sequence($seq) ) {
_set_sequence($seq, $v+1);
return $v;
}
_create_sequence($seq, 2);
1;
}
# API: Set the next value for a sequence.
sub set_sequence {
my ($self, $seq, $value) = @_;
_get_sequence($seq)
? _set_sequence($seq, $value)
: _create_sequence($seq, $value);
return;
}
################ Interactive SQL ################
# API: Interactive SQL.
sub isql {
my ($self, @args) = @_;
my $dbname = $cfg->val(qw(database fullname));
my $cmd = "sqlite3";
my @cmd = ( $cmd );
push(@cmd, $dbname);
if ( @args ) {
push(@cmd, "@args");
}
my $res = system { $cmd } @cmd;
# warn(sprintf("=> ret = %02x", $res)."\n") if $res;
}
################ PostgreSQL Compatibility ################
# API: feature Can we?
sub feature {
my ($self, $feat) = @_;
$feat = lc($feat);
# Known features:
#
# pgcopy F PostgreSQL fast input copying
# prepcache T Statement handles may be cached
# filter C SQL filter routine
#
# Unknown/unsupported features may be ignored.
return \&sqlfilter if $feat eq "filter";
return 1 if $feat eq "prepcache";
return 0 if $feat eq "import";
# Return false for all others.
return;
}
sub sqlfilter {
local $_ = shift;
my (@args) = @_;
# No sequences.
return if /^(?:create|drop)\s+sequence\b/i;
# Constraints are ignored in table defs, but an
# explicit alter needs to be skipped.
return if /^alter\s+table\b.*\b(add|drop)\s+constraint\b/i;
# UNSOLVED: No insert into temp tables.
return if /^select\s+\*\s+into\s+temp\b/i;
# Fortunately, LIKE behaves mostly like ILIKE.
s/\bilike\b/like/gi;
return $_;
}
sub register_functions {
$dbh->func("now", 0,
\&iso8601date,
"create_function");
$dbh->func("sign", 1,
sub {
defined $_[0] ? $_[0] <=> 0 : 0
},
"create_function");
$dbh->func("int2", 1,
sub {
0+$_[0]
},
"create_function");
}
################ End PostgreSQL Compatibility ################
1;
|