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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
|
# This code is a part of Slash, and is released under the GPL.
# Copyright 1997-2001 by Open Source Development Network. See README
# and COPYING for more information, or see http://slashcode.com/.
# $Id: Utility.pm,v 1.2.2.15 2001/10/17 19:08:35 pudge Exp $
package Slash::DB::Utility;
use strict;
use Slash::Utility;
use DBIx::Password;
use vars qw($VERSION);
($VERSION) = ' $Revision: 1.2.2.15 $ ' =~ /\$Revision:\s+([^\s]+)/;
# FRY: Bender, if this is some kind of scam, I don't get it. You already
# have my power of attorney.
my $timeout = 30; # This should eventualy be a parameter that is configurable
########################################################
# Generic methods for libraries.
########################################################
#Class variable that stores the database handle
sub new {
my($class, $user, @args) = @_;
my $self = {};
my $where;
bless($self, $class);
$self->{virtual_user} = $user;
$self->sqlConnect();
if ($self->can('init')) {
# init should return TRUE for success, else
# we abort
return unless $self->init(@args);
if (exists $self->{'_where'}) {
for (keys %{ $self->{'_where'} }) {
$where .= "$_=$self->{'_where'}{$_} AND ";
}
$where =~ s/ AND $//g if $where;
$self->{_wheresql} = $where;
}
}
return $self;
}
##################################################################
sub set {
my($self, $id, $value) = @_;
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
my $id_db = $self->sqlQuote($id);
my $where;
if ($self->{_wheresql}) {
$where = "$prime=$id_db AND " . $self->{_wheresql};
} else {
$where = "$prime=$id_db";
}
$self->sqlUpdate($table, $value, $where);
}
##################################################################
sub get {
my($self, $id, $val) = @_;
my($answer, $type);
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
my $id_db = $self->sqlQuote($id);
my $where;
if ($self->{_wheresql}) {
$where = "$prime=$id_db AND " . $self->{_wheresql};
} else {
$where = "$prime=$id_db";
}
if (ref($val) eq 'ARRAY') {
my $values = join ',', @$val;
$answer = $self->sqlSelectHashref($values, $table, $where);
} elsif ($val) {
($answer) = $self->sqlSelect($val, $table, $where);
} else {
$answer = $self->sqlSelectHashref('*', $table, $where);
}
return $answer;
}
##################################################################
sub gets {
my($self, $val) = @_;
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
my %return;
my $sth;
my $where = $self->{_wheresql};
if (ref($val) eq 'ARRAY') {
my $values = join ',', @$val;
$sth = $self->sqlSelectMany($values, $table, $where);
} elsif ($val) {
$sth = $self->sqlSelectMany($val, $table, $where);
} else {
$sth = $self->sqlSelectMany('*', $table, $where);
}
while (my $row = $sth->fetchrow_hashref) {
$return{ $row->{$prime} } = $row;
}
$sth->finish;
return \%return;
}
##################################################################
sub list {
my($self, $val) = @_;
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
$val ||= $prime;
$self->sqlConnect();
my $list = $self->{_dbh}->selectcol_arrayref("SELECT $val FROM $table");
return $list;
}
##################################################################
sub create {
my($self, $id, $val) = @_;
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
my $id_db = $self->sqlQuote($id);
my $where;
if ($self->{_wheresql}) {
$where = "$prime=$id_db AND " . $self->{_wheresql};
} else {
$where = "$prime=$id_db";
}
my($found) = $self->sqlSelect($prime, $table, $where);
return if $found;
for (keys %{ $self->{'_where'} }) {
$val->{$_} = $self->{'_where'}{$_};
}
$val->{$prime} = $id if $id;
$self->sqlInsert($table, $val);
# what should $prime really be? add a new var to $self? -- pudge
my($rid) = $self->getLastInsertId($table, $prime);
return $rid;
}
##################################################################
sub delete {
my($self, $id) = @_;
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
my $id_db = $self->sqlQuote($id);
my $where;
if ($self->{_wheresql}) {
$where = "$prime=$id_db AND " . $self->{_wheresql};
} else {
$where = "$prime=$id_db";
}
$self->sqlDo("DELETE FROM $table WHERE $where");
}
##################################################################
sub exists {
my($self, $id) = @_;
my $table = $self->{'_table'};
my $prime = $self->{'_prime'};
my $id_db = $self->sqlQuote($id);
my $where;
if ($self->{_wheresql}) {
$where = "$prime=$id_db AND " . $self->{_wheresql};
} else {
$where = "$prime=$id_db";
}
my $sql = "SELECT count(*) FROM $table WHERE $where";
# we just need one stinkin value to see if this exists
$self->sqlConnect();
my $count = $self->{_dbh}->selectrow_array($sql);
return $count; # count
}
########################################################
# This should be inherited by all 3rd party modules
########################################################
sub sqlConnect {
# What we are going for here, is the ability to reuse
# the database connection.
# Ok, first lets see if we already have a connection
my($self, $restart) = @_;
$self->{_dbh}->disconnect if $restart;
if (defined $self->{_dbh} && $self->{_dbh}->ping) {
unless ($self->{_dbh}) {
print STDERR "Undefining and calling to reconnect: $@\n";
$self->{_dbh}->disconnect;
undef $self->{_dbh};
$self->sqlConnect();
}
} else {
# Ok, new connection, lets create it
# print STDERR "Having to rebuild the database handle\n";
{
local @_;
eval {
local $SIG{'ALRM'} = sub { die "Connection timed out" };
alarm $timeout;
$self->{_dbh} = DBIx::Password->connect_cached($self->{virtual_user});
alarm 0;
};
if ($@ || !defined $self->{_dbh}) {
#In the future we should have a backupdatabase
#connection in here. For now, we die
print STDERR "Major Mojo Bad things\n";
print STDERR "unable to connect to MySQL: $@ : $DBI::errstr\n";
#die "Database would not let us connect $DBI::errstr"; # The Suicide Die
return 0;
}# else {
# my $time = localtime();
# print STDERR "Rebuilt at $time\n";
#}
}
}
return 1; # We return true that the sqlConnect was ok.
}
########################################################
# Useful SQL Wrapper Functions
########################################################
sub sqlSelectMany {
my($self, $select, $from, $where, $other) = @_;
my $sql = "SELECT $select ";
$sql .= " FROM $from " if $from;
$sql .= " WHERE $where " if $where;
$sql .= " $other" if $other;
my $sth = $self->{_dbh}->prepare_cached($sql);
$self->sqlConnect();
if ($sth->execute) {
return $sth;
} else {
$sth->finish;
errorLog($sql);
$self->sqlConnect;
return undef;
}
}
########################################################
sub sqlSelect {
my($self, $select, $from, $where, $other) = @_;
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
my $sth = $self->{_dbh}->prepare_cached($sql);
$self->sqlConnect();
if (!$sth->execute) {
errorLog($sql);
$self->sqlConnect;
return undef;
}
my @r = $sth->fetchrow;
$sth->finish;
if (wantarray()) {
return @r;
} else {
return $r[0];
}
}
########################################################
sub sqlSelectArrayRef {
my($self, $select, $from, $where, $other) = @_;
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
$self->sqlConnect();
my $sth = $self->{_dbh}->prepare_cached($sql);
if (!$sth->execute) {
errorLog($sql);
$self->sqlConnect;
return undef;
}
my $r = $sth->fetchrow_arrayref;
return $r;
}
########################################################
sub sqlSelectHash {
my($self) = @_;
my $hash = $self->sqlSelectHashref(@_);
return map { $_ => $hash->{$_} } keys %$hash;
}
##########################################################
# selectCount 051199
# inputs: scalar string table, scaler where clause
# returns: via ref from input
# Simple little function to get the count of a table
##########################################################
sub sqlCount {
my($self, $table, $where) = @_;
my $sql = "SELECT count(*) AS count FROM $table";
$sql .= " WHERE $where" if $where;
# we just need one stinkin value - count
$self->sqlConnect();
my $count = $self->{_dbh}->selectrow_array($sql);
return $count; # count
}
########################################################
sub sqlSelectHashref {
my($self, $select, $from, $where, $other) = @_;
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
$self->sqlConnect();
my $sth = $self->{_dbh}->prepare_cached($sql);
unless ($sth->execute) {
errorLog($sql);
$self->sqlConnect;
return;
}
my $H = $sth->fetchrow_hashref;
$sth->finish;
return $H;
}
########################################################
sub sqlSelectColArrayref {
my($self, $select, $from, $where, $other) = @_;
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
$self->sqlConnect();
my $sth = $self->{_dbh}->prepare_cached($sql);
my $array = $self->{_dbh}->selectcol_arrayref($sth);
unless (defined($array)) {
errorLog($sql);
$self->sqlConnect;
return;
}
return $array;
}
########################################################
# sqlSelectAll - this function returns the entire
# array ref of all records selected. Use this in the case
# where you want all the records and have to do a time consuming
# process that would tie up the db handle for too long.
#
# inputs:
# select - columns selected
# from - tables
# where - where clause
# other - limit, asc ...
#
# returns:
# array ref of all records
sub sqlSelectAll {
my($self, $select, $from, $where, $other) = @_;
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
$self->sqlConnect();
my $H = $self->{_dbh}->selectall_arrayref($sql);
unless ($H) {
errorLog($sql);
$self->sqlConnect;
return;
}
return $H;
}
########################################################
# sqlSelectAllHashref - this function returns the entire
# set of rows in a hash.
#
# inputs:
# id - column to use as the hash key
# select - columns selected
# from - tables
# where - where clause
# other - limit, asc ...
#
# returns:
# hash ref of all records
sub sqlSelectAllHashref {
my($self, $id , $select, $from, $where, $other) = @_;
# Yes, if ID is not in $select things will be bad
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
my $sth = $self->sqlSelectMany($select, $from, $where, $other);
my $returnable;
while (my $row = $sth->fetchrow_hashref) {
$returnable->{$row->{$id}} = $row;
}
$sth->finish;
return $returnable;
}
########################################################
# sqlSelectAllHashrefArray - this function returns the entire
# set of rows in a array where the elements are the hash.
#
# inputs:
# select - columns selected
# from - tables
# where - where clause
# other - limit, asc ...
#
# returns:
# array ref of all records
sub sqlSelectAllHashrefArray {
my($self, $select, $from, $where, $other) = @_;
# Yes, if ID is not in $select things will be bad
my $sql = "SELECT $select ";
$sql .= "FROM $from " if $from;
$sql .= "WHERE $where " if $where;
$sql .= "$other" if $other;
my $sth = $self->sqlSelectMany($select, $from, $where, $other);
my @returnable;
while (my $row = $sth->fetchrow_hashref) {
push @returnable, $row;
}
$sth->finish;
return \@returnable;
}
########################################################
sub sqlUpdate {
my($self, $table, $data, $where) = @_;
my $sql = "UPDATE $table SET ";
foreach (keys %$data) {
if (/^-/) {
s/^-//;
$sql .= "\n $_ = $data->{-$_},";
} else {
$sql .= "\n $_ = " . $self->sqlQuote($data->{$_}) . ',';
}
}
chop $sql;
$sql .= "\nWHERE $where\n";
$self->sqlConnect();
my $rows = $self->sqlDo($sql);
# print STDERR "SQL: $sql\n";
return $rows;
}
########################################################
sub sqlInsert {
my($self, $table, $data, $delayed) = @_;
my($names, $values);
# oddly enough, this hack seems to work for all DBs -- pudge
$delayed = $delayed ? " /*! DELAYED */" : "";
foreach (keys %$data) {
if (/^-/) {
$values .= "\n $data->{$_},";
s/^-//;
} else {
$values .= "\n " . $self->sqlQuote($data->{$_}) . ',';
}
$names .= "$_,";
}
chop($names);
chop($values);
my $sql = "INSERT$delayed INTO $table ($names) VALUES($values)\n";
$self->sqlConnect();
return $self->sqlDo($sql);
}
#################################################################
sub sqlQuote { $_[0]->{_dbh}->quote($_[1]) }
#################################################################
sub sqlDo {
my($self, $sql) = @_;
$self->sqlConnect();
my $rows = $self->{_dbh}->do($sql);
unless ($rows) {
errorLog($sql);
$self->sqlConnect;
return;
}
return $rows;
}
1;
__END__
=head1 NAME
Slash::DB::Utility - Generic SQL code which is common to all DB interfaces for Slash
=head1 SYNOPSIS
use Slash::DB::Utility;
=head1 DESCRIPTION
No documentation yet.
=head1 SEE ALSO
Slash(3), Slash::DB(3).
=cut
|