K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / perl / 5.18.2 / CPANPLUS / Internals / Source / SQLite /
server ip : 172.67.156.115

your ip : 172.69.214.16

H O M E


Filename/usr/share/perl/5.18.2/CPANPLUS/Internals/Source/SQLite/Tie.pm
Size2.97 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 10:10
Last modified21-Nov-2018 01:11
Last accessed07-Jul-2025 18:01
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
package CPANPLUS::Internals::Source::SQLite::Tie;
use deprecate;

use strict;
use warnings;

use CPANPLUS::Error;
use CPANPLUS::Module;
use CPANPLUS::Module::Fake;
use CPANPLUS::Module::Author::Fake;
use CPANPLUS::Internals::Constants;

use Params::Check qw[check];
use Module::Load::Conditional qw[can_load];
use Locale::Maketext::Simple Class => 'CPANPLUS', Style => 'gettext';

use vars qw[@ISA $VERSION];
$VERSION = "0.9135";

require Tie::Hash;
push @ISA, 'Tie::StdHash';


sub TIEHASH {
my $class = shift;
my %hash = @_;

my $tmpl = {
dbh => { required => 1 },
table => { required => 1 },
key => { required => 1 },
cb => { required => 1 },
offset => { default => 0 },
};

my $args = check( $tmpl, \%hash ) or return;
my $obj = bless { %$args, store => {} } , $class;

return $obj;
}

sub FETCH {
my $self = shift;
my $key = shift or return;
my $dbh = $self->{dbh};
my $cb = $self->{cb};
my $table = $self->{table};


### did we look this one up before?
if( my $obj = $self->{store}->{$key} ) {
return $obj;
}

my $res = $dbh->query(
"SELECT * from $table where $self->{key} = ?", $key
) or do {
error( $dbh->error );
return;
};

my $href = $res->hash;

### get rid of the primary key
delete $href->{'id'};

### no results?
return unless keys %$href;

### expand author if needed
### XXX no longer generic :(
if( $table eq 'module' ) {
$href->{author} = $cb->author_tree( $href->{author } ) or return;
}

my $class = {
module => 'CPANPLUS::Module',
author => 'CPANPLUS::Module::Author',
}->{ $table };

my $obj = $self->{store}->{$key} = $class->new( %$href, _id => $cb->_id );

return $obj;
}

sub STORE {
my $self = shift;
my $key = shift;
my $val = shift;

$self->{store}->{$key} = $val;
}

1;

sub FIRSTKEY {
my $self = shift;
my $dbh = $self->{'dbh'};

my $res = $dbh->query(
"select $self->{key} from $self->{table} order by $self->{key} limit 1"
);

$self->{offset} = 0;

my $key = $res->flat->[0];

return $key;
}

sub NEXTKEY {
my $self = shift;
my $dbh = $self->{'dbh'};

my $res = $dbh->query(
"select $self->{key} from $self->{table} ".
"order by $self->{key} limit 1 offset $self->{offset}"
);

$self->{offset} +=1;

my $key = $res->flat->[0];
my $val = $self->FETCH( $key );

### use each() semantics
return wantarray ? ( $key, $val ) : $key;
}

sub EXISTS { !!$_[0]->FETCH( $_[1] ) }

sub SCALAR {
my $self = shift;
my $dbh = $self->{'dbh'};

my $res = $dbh->query( "select count(*) from $self->{table}" );

return $res->flat;
}

### intentionally left blank
sub DELETE { }
sub CLEAR { }