/usr/share/perl5/NetSDS/DBI/Table.pm is in libnetsds-perl 1.301-3.
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 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 | #===============================================================================
#
# FILE: Table.pm
#
# DESCRIPTION: NetSDS::DBI::Table - CRUD implementation for NetSDS
#
# AUTHOR: Michael Bochkaryov (Rattler), <misha@rattler.kiev.ua>
# COMPANY: Net.Style
# CREATED: 25.07.2008 01:06:46 EEST
#===============================================================================
=head1 NAME
NetSDS::DBI::Table
=head1 SYNOPSIS
use NetSDS::DBI::Table;
my $q = NetSDS::DBI::Table->new(
dsn => 'dbi:Pg:dbname=netsdsdb;host=127.0.0.1',
user => 'netsds',
passwd => 'test',
table => 'public.messages',
) or warn NetSDS::DBI::Table->errstr();
=head1 DESCRIPTION
C<NetSDS::DBI::Table> module provides commonly used CRUD functionality for
data stored in single database.
Main idea was that we can agree about some limitations:
* every such table contains C<id> field that is primary key
* we use PostgreSQL DBMS with all it's features
=cut
package NetSDS::DBI::Table;
use 5.8.0;
use strict;
use warnings;
use base 'NetSDS::DBI';
use version; our $VERSION = '1.301';
#===============================================================================
#
=head1 CLASS API
=over
=item B<new([...])> - class constructor
my $tbl = NetSDS::DBI::Table->new(
dsn => 'dbi:Pg:dbname=content',
login => 'netsds',
passwd => 'topsecret,
table => 'content.meta',
);
=cut
#-----------------------------------------------------------------------
sub new {
my ( $class, %params ) = @_;
# Initialize base DBMS connector
my $self = $class->SUPER::new(%params);
# Set table name
if ( $params{table} ) {
$self->{table} = $params{table};
} else {
return $class->error('Table name is not specified to NetSDS::DBI::Table');
}
# 'fields' paramter is hash reference describing supported/allowed fields
if ( $params{fields} ) {
}
return $self;
} ## end sub new
#***********************************************************************
=item B<fetch(%params)> - get records from table as array of hashrefs
Paramters (hash):
* fields - fetch fields by list
* filter - arrayref of SQL expressions like C<status = 'active'> for C<WHERE> clause
* order - arrayref of SQL expressions like C<id desc> for C<ORDER BY> clause
* limit - max number of records to fetch (LIMIT N)
* offset - records to skip from beginning (OFFSET N)
* for_update - records selected for further update within current transaction
Returns: message as array of hashrefs
Sample:
my @messages = $q->fetch(
fields => ['id', 'now() as time'],
filter => ['msg_status = 5', 'date_received < now()'], # where msg_status=5 and date_received < now()
order => ['id desc', 'src_addr'], # order by id desc, src_addr
limit => 3, # fetch 3 records
offset => 5, # from 6-th record
for_update => 1, # for update
)
=cut
#-----------------------------------------------------------------------
sub fetch {
my ( $self, %params ) = @_;
# Prepare expected fields list
my $req_fields = $params{fields} ? join( ',', @{ $params{fields} } ) : '*';
# Set default filter
my $default_filter = $self->{default_filter} ? " where " . join( " and ", @{ $self->{default_filter} } ) : '';
# Prepare WHERE filter
my $req_filter = ($params{filter} and grep { $_ } @{ $params{filter} }) ?
" where " . join( " and ", grep { $_ } @{ $params{filter} } ) : $default_filter;
# Prepare results order
my $req_order = $params{order} ? " order by " . join( ", ", @{ $params{order} } ) : '';
# Set limit and offset for fetching
my $req_limit = $params{limit} ? " limit " . $params{limit} : '';
my $req_offset = $params{offset} ? " offset " . $params{offset} : '';
# Request for messages
my $sql = "select $req_fields from " . $self->{table} . " $req_filter $req_order $req_limit $req_offset";
# Set FOR UPDATE if necessary
if ( $params{for_update} ) {
$sql .= " for update";
}
# Execute SQL query and fetch results
my @ret = ();
my $sth = $self->call($sql);
while ( my $row = $sth->fetchrow_hashref() ) {
push @ret, $row;
}
return @ret;
} ## end sub fetch
#***********************************************************************
=item B<insert_row(%key_val_pairs)> - insert record into table
Paramters: record fields as hash
Returns: id of inserted record
my $user_id = $tbl->insert_row(
'login' => 'vasya',
'password' => $encrypted_passwd,
);
=cut
#-----------------------------------------------------------------------
sub insert_row {
my ( $self, %params ) = @_;
my @fields = (); # Fields list
my @values = (); # Values list
# Prepare fields and values lists from input hash
foreach my $key ( keys %params ) {
push @fields, $key;
push @values, $self->dbh->quote( $params{$key} );
}
my $return_value = $self->has_field('id') ? ' returning id' : '';
# Prepare SQL statement from fields and values lists
my $sql = 'insert into ' . $self->{table} . ' (' . join( ',', @fields ) . ')' # fields list
. ' values (' . join( ',', @values ) . ')' # values list
. $return_value; # return "id" field
# Execute SQL query and fetch result
my $sth = $self->call($sql);
my ($row_id) = $return_value ? $sth->fetchrow_array : $sth->rows;
# Return "id" field from inserted row
return $row_id || $self->error( "Can't insert table record: " . $self->dbh->errstr );
} ## end sub insert_row
#***********************************************************************
=item B<insert(@records_list)> - mass insert
Paramters: list of records (as hashrefs)
Returns: array of inserted records "id"
This method allows mass insert of records.
my @user_ids = $tbl->insert(
{ login => 'vasya', password => $str1 },
{ login => 'masha', password => $str2 },
{ login => 'petya', password => $str3, active => 'false' },
);
B<Warning!> This method use separate INSERT queries and in fact is only
wrapper for multiple C<insert_row()> calls. So it's not so fast as
one insert but allows to use different key-value pairs for different records.
=cut
#-----------------------------------------------------------------------
sub insert {
my ( $self, @rows ) = @_;
my @ids = ();
# Go through records and insert each one
foreach my $rec (@rows) {
push @ids, ( $self->insert_row( %{$rec} ) );
}
return @ids;
}
#***********************************************************************
=item B<update_row($id, %params)> - update record parameters
Paramters: id, new parameters as hash
Returns: updated record as hash
Example:
my %upd = $table->update_row($msg_id,
status => 'failed',
dst_addr => '380121234567',
);
After this %upd hash will contain updated table record.
=cut
#-----------------------------------------------------------------------
sub update_row {
my ( $self, $id, %params ) = @_;
my @up = ();
foreach my $key ( keys %params ) {
push @up, "$key = " . $self->dbh->quote( $params{$key} );
}
my $sql = "update " . $self->{table} . " set " . join( ', ', @up ) . " where id=$id";
my $res = $self->call($sql);
if ($res) {
return %{$res};
} else {
return $self->error( "Can't update table row: " . $self->dbh->errstr );
}
}
#***********************************************************************
=item B<update(%params)> - update records by filter
Paramters: filter, new values
$tbl->update(
filter => ['active = true', 'created > '2008-01-01'],
set => {
info => 'Created after 2007 year',
}
);
=cut
#-----------------------------------------------------------------------
sub update {
my ( $self, %params ) = @_;
# Prepare WHERE filter
my $req_filter = $params{filter} ? " where " . join( " and ", @{ $params{filter} } ) : '';
my @up = ();
foreach my $key ( keys %{ $params{set} } ) {
push @up, "$key = " . $self->dbh->quote( $params{set}->{$key} );
}
my $sql = "update " . $self->{table} . " set " . join( ', ', @up ) . $req_filter;
my $res = $self->call($sql);
if ($self->dbh->errstr) {
$self->error( "Can't update table: " . $self->dbh->errstr );
return;
};
return 1;
}
#***********************************************************************
=item B<get_count(%params)> - retrieve number of records
Just return total number of records by calling:
# SELECT COUNT(id) FROM schema.table
my $count = $tbl->get_count();
my $count_active = $tbl->get_count(filter => ['active = true']);
=cut
#-----------------------------------------------------------------------
## Returns number of records
sub get_count {
my $self = shift;
my $filter = \@_;
# Fetch number of records
# SQL: select count(id) as c from $table where [filter]
my @count = $self->fetch(
fields => ['count(id) as c'],
filter => $filter,
);
return $count[0]->{c};
}
#***********************************************************************
=item B<delete_by_id(@ids)> - delete records by identifier
Paramters: list of record id
Returns: 1 if ok, undef if error
Method deletes records from SQL table by it's identifiers.
if ($tbl->remove(5, 8 ,19)) {
print "Records successfully removed.";
}
=cut
#-----------------------------------------------------------------------
sub delete_by_id {
my ( $self, @ids ) = @_;
# TODO check for too long @id list
# Prepare SQL condition
my $in_cond = "id in (" . join( ", ", @ids ) . ")";
my $sql = "delete from " . $self->{table} . " where $in_cond";
if ( $self->call($sql) ) {
return 1;
} else {
return $self->error( "Can't delete records by Id: table='" . $self->{table} . "'" );
}
}
#***********************************************************************
=item B<delete(@filters)> - delete records
Paramters: list of filters
Returns: 1 if ok, undef if error
$tbl->delete(
'active = false',
'expire < now()',
);
=cut
#-----------------------------------------------------------------------
sub delete {
my ( $self, @filter ) = @_;
# Prepare WHERE filter
my $req_filter = " where " . join( " and ", @filter );
# Remove records
$self->call( "delete from " . $self->{table} . $req_filter );
}
#***********************************************************************
=item B<get_fields()> - get list of fields
Example:
my @fields = @{ $tbl->get_fields() };
print "Table fields: " . join (', ', @fields);
=cut
#-----------------------------------------------------------------------
sub get_fields {
return [ keys %{ +shift->{'fields'} } ];
}
#***********************************************************************
=item B<has_field($field)> - check if field exists
Paramters: field name
Example:
if ($tbl->has_field('uuid')) {
$tbl->call("delete tbldata where uuid=?", $uuid);
}
B<NOTE>: this method works only for restricted tables that
use C<fields> parameter at construction time.
=cut
#-----------------------------------------------------------------------
sub has_field {
# TODO
# - check if fields defined at all
# - think about multiple values
return $_[0]->{'fields'}{ $_[1] }
}
1;
__END__
=back
=head1 EXAMPLES
See C<samples/test_db_table.pl> script
=head1 BUGS
Bad documentation
=head1 SEE ALSO
L<NetSDS::DBI>
L<http://en.wikipedia.org/wiki/Create,_read,_update_and_delete>
=head1 TODO
None
=head1 AUTHOR
Michael Bochkaryov <misha@rattler.kiev.ua>
=head1 LICENSE
Copyright (C) 2008-2009 Net Style Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
=cut
|