| JSAN-Client documentation | Contained in the JSAN-Client distribution. |
JSAN::Index::Distribution - A JavaScript Archive Network (JSAN) Distribution
This class provides objects for named distributions in the JSAN index.
In addition to the general methods provided by ORLite, it has the following methods
The name accessor returns the name of the distribution.
The doc accessor returns the root-relative location of the documentation
for this distribution on the http://openjsan.org/ website.
The releases method finds and retrieves all of the releases of the
distribution.
Returns a list of JSAN::Index::Release objects.
One distribution generally has a number of releases.
The latest_release method returns the JSAN::Index::Release object
that represents the most recent release of the distribution.
The extract_libs method will extract the libraries for the most
recent version of the distribution to the local filesystem.
It takes named parameters to control its behaviour.
The to parameter specifies the destination for the files to be
extracted to. When passed as a single string, this is taken to be a
directory on the local host.
No other destination options other than the local filesystem are available at this time, but more destination options are expected at a later date.
Returns the number of files extracted, or dies on error.
The extract_tests method will extract the test scripts for the most
recent release of the distribution to the local filesystem.
Returns the number of files extracted, or dies on error.
Bugs should be reported via the CPAN bug tracker at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=JSAN-Client
For other issues, contact the author.
Adam Kennedy <adamk@cpan.org>
Copyright 2005 - 2007 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
JSAN::Index::Distribution - JSAN::Index class for the distribution table
TO BE COMPLETED
TO BE COMPLETED
# Get all objects in list context
my @list = JSAN::Index::Distribution->select;
# Get a subset of objects in scalar context
my $array_ref = JSAN::Index::Distribution->select(
'where name > ? order by name',
1000,
);
The select method executes a typical SQL SELECT query on the
distribution table.
It takes an optional argument of a SQL phrase to be added after the
FROM distribution section of the query, followed by variables
to be bound to the placeholders in the SQL phrase. Any SQL that is
compatible with SQLite can be used in the parameter.
Returns a list of JSAN::Index::Distribution objects when called in list context, or a
reference to an ARRAY of JSAN::Index::Distribution objects when called in scalar
context.
Throws an exception on error, typically directly from the DBI layer.
# How many objects are in the table
my $rows = JSAN::Index::Distribution->count;
# How many objects
my $small = JSAN::Index::Distribution->count(
'where name > ?',
1000,
);
The count method executes a SELECT COUNT(*) query on the
distribution table.
It takes an optional argument of a SQL phrase to be added after the
FROM distribution section of the query, followed by variables
to be bound to the placeholders in the SQL phrase. Any SQL that is
compatible with SQLite can be used in the parameter.
Returns the number of objects that match the condition.
Throws an exception on error, typically directly from the DBI layer.
if ( $object->name ) {
print "Object has been inserted\n";
} else {
print "Object has not been inserted\n";
}
Returns true, or throws an exception on error.
REMAINING ACCESSORS TO BE COMPLETED
The distribution table was originally created with the following SQL command.
CREATE TABLE distribution (
name varchar (
100
)
NOT NULL,
doc varchar (
100
)
NOT NULL,
PRIMARY KEY (
name
)
)
JSAN::Index::Distribution is part of the JSAN::Index API.
See the documentation for JSAN::Index for more information.
Copyright 2009 - 2010 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| JSAN-Client documentation | Contained in the JSAN-Client distribution. |
package JSAN::Index::Distribution; use 5.008005; use strict; use warnings; use JSAN::Index::Release (); our $VERSION = '0.29'; sub releases { JSAN::Index::Release->select('where distribution = ?', $_[0]->name); } sub retrieve { my $class = shift; my %params = @_; my $sql = join " and ", map { "$_ = ?" } keys(%params); my @result = $class->select( "where $sql", values(%params) ); if ( @result == 1 ) { return $result[0]; } if ( @result > 1 ) { Carp::croak("Found more than one author record"); } else { return undef; } } sub latest_release { my $self = shift; my @releases = $self->releases; unless ( @releases ) { Carp::croak( "No releases found for distribution " . $self->name ); } @releases = sort { $b->version <=> $a->version } @releases; $releases[0]; } sub search_like { my $class = shift; my %params = @_; my $sql = join " and ", map { "$_ like ?" } keys(%params); my @result = $class->select( "where $sql", values(%params) ); return @result } sub extract_libs { my $self = shift; $self->extract_resource('lib', @_); } sub extract_tests { my $self = shift; $self->extract_resource('tests', @_); } sub extract_resource { my $class = ref $_[0] || $_[0]; Carp::croak("$class does not implement method 'extract_resource'"); } ###################################################################### # Generated by ORLite 1.25 (Unused parts are commented out) #sub base { 'JSAN::Index' } # #sub table { 'distribution' } sub select { my $class = shift; my $sql = 'select "name", "doc" from distribution '; $sql .= shift if @_; my $rows = JSAN::Index->selectall_arrayref( $sql, { Slice => {} }, @_ ); bless( $_, 'JSAN::Index::Distribution' ) foreach @$rows; wantarray ? @$rows : $rows; } #sub count { # my $class = shift; # my $sql = 'select count(*) from distribution '; # $sql .= shift if @_; # JSAN::Index->selectrow_array( $sql, {}, @_ ); #} # #sub iterate { # my $class = shift; # my $call = pop; # my $sql = 'select "name", "doc" from distribution '; # $sql .= shift if @_; # my $sth = JSAN::Index->prepare( $sql ); # $sth->execute( @_ ); # while ( $_ = $sth->fetchrow_hashref ) { # bless( $_, 'JSAN::Index::Distribution' ); # $call->() or last; # } # $sth->finish; #} sub name { $_[0]->{name}; } sub doc { $_[0]->{doc}; } 1; __END__