/usr/share/perl5/CPAN/SQLite/Search.pm is in libcpan-sqlite-perl 0.211-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 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 | # $Id: Search.pm 53 2015-07-14 23:14:34Z stro $
package CPAN::SQLite::Search;
use strict;
use warnings;
no warnings qw(redefine);
our $VERSION = '0.211';
use English qw/-no_match_vars/;
use utf8;
use CPAN::SQLite::Util qw($mode_info);
use CPAN::SQLite::DBI::Search;
our $max_results = 0;
my $cdbi_query;
my %mode2obj;
$mode2obj{$_} = __PACKAGE__ . '::' . $_
for (qw(dist author module));
sub new {
my ($class, %args) = @_;
$cdbi_query = CPAN::SQLite::DBI::Search->new(%args);
$max_results = $args{max_results} if $args{max_results};
my $self = {results => undef, error => '', %args};
return bless $self, $class;
}
sub query {
my ($self, %args) = @_;
my $mode = $args{mode} || 'module';
unless ($mode) {
$self->{error} = q{Please specify a 'mode' argument};
return;
}
my $info = $mode_info->{$mode};
my $table = $info->{table};
unless ($table) {
$self->{error} = qq{No table exists for '$mode'};
return;
}
my $cdbi = $cdbi_query->{objs}->{$table};
my $class = 'CPAN::SQLite::DBI::Search::' . $table;
unless ($cdbi and ref($cdbi) eq $class) {
$self->{error} = qq{No cdbi object exists for '$table'};
return;
}
my $obj;
eval {$obj = $mode2obj{$mode}->make(table => $table, cdbi => $cdbi);};
if ($@) {
$self->{error} = qq{Mode '$mode' is not known};
return;
}
my $value;
my $search = {name => $info->{name},
text => $info->{text},
id => $info->{id},
};
TYPE: {
($value = $args{query}) and do {
$search->{value} = $value;
$search->{type} = 'query';
$search->{wantarray} = 1;
last TYPE;
};
($value = $args{id}) and do {
$search->{value} = $value;
$search->{type} = 'id';
$search->{distinct} = 1;
last TYPE;
};
($value = $args{name}) and do {
$search->{value} = $value;
$search->{type} = 'name';
$search->{distinct} = 1;
last TYPE;
};
$self->{error} = q{Cannot determine the type of search};
return;
}
$obj->search(search => $search, meta_obj => $self->{meta_obj});
$self->{results} = $obj->{results};
if (my $error = $obj->{error}) {
$self->{error} = $error;
return;
}
return 1;
}
sub make {
my ($class, %args) = @_;
for (qw(table cdbi)) {
die qq{Must supply an '$_' arg} unless defined $args{$_};
}
my $self = {results => undef, error => '',
table => $args{table}, cdbi => $args{cdbi}};
return bless $self, $class;
}
package CPAN::SQLite::Search::author;
use parent 'CPAN::SQLite::Search';
sub search {
my ($self, %args) = @_;
return unless $args{search};
my $cdbi = $self->{cdbi};
my $meta_obj = $args{meta_obj};
$args{fields} = [ qw(auth_id cpanid fullname email) ];
$args{table} = 'auths';
if ($max_results) {
$args{limit} = $max_results;
}
$args{order_by} = 'cpanid';
my $results;
return unless $results = ($meta_obj ?
$cdbi->fetch_and_set(%args) :
$cdbi->fetch(%args));
unless ($meta_obj) {
$self->{results} =
(ref($results) eq 'ARRAY' and scalar @$results == 1) ?
$results->[0] : $results;
}
return 1 if $meta_obj;
# The following will get all the dists associated with the cpanid
$args{join} = undef;
$args{table} = 'dists';
$args{fields} = [ qw(dist_file dist_abs) ];
$args{order_by} = 'dist_file';
my @items = (ref($results) eq 'ARRAY') ? @$results : ($results);
foreach my $item (@items) {
my $search = {id => 'auth_id',
value => $item->{auth_id},
type => 'id',
wantarray => 1,
};
my $dists;
next unless ($dists = $cdbi->fetch(%args, search => $search));
$item->{dists} = (ref($dists) eq 'ARRAY') ? $dists : [$dists];
}
$self->{results} = (ref($results) eq 'ARRAY' and scalar @$results == 1) ? $results->[0] : $results;
return 1;
}
package CPAN::SQLite::Search::module;
use parent 'CPAN::SQLite::Search';
sub search {
my ($self, %args) = @_;
return unless $args{search};
my $cdbi = $self->{cdbi};
my $meta_obj = $args{meta_obj};
$args{fields} = [ qw(mod_id mod_name mod_abs mod_vers chapterid
dslip dist_id dist_name dist_file dist_vers dist_abs
auth_id cpanid fullname email) ];
$args{table} = 'dists';
$args{join} = { mods => 'dist_id',
auths => 'auth_id',
};
$args{order_by} = 'mod_name';
if ($max_results) {
$args{limit} = $max_results;
}
my $results;
return unless $results = ($meta_obj ?
$cdbi->fetch_and_set(%args, want_ids => 1) :
$cdbi->fetch(%args));
# if running under CPAN.pm, need to build a list of modules
# contained in the distribution
if ($meta_obj) {
my %seen;
$args{join} = undef;
$args{table} = 'mods';
my @items = (ref($results) eq 'ARRAY') ? @$results : ($results);
foreach my $item(@items) {
my $dist_id = $item->{dist_id};
next if $seen{$dist_id};
$args{fields} = [ qw(mod_name mod_abs) ];
$args{order_by} = 'mod_name';
$args{join} = undef;
my $search = {id => 'dist_id',
value => $item->{dist_id},
type => 'id',
wantarray => 1,
};
$seen{$dist_id}++;
my $mods;
next unless $mods = $cdbi->fetch_and_set(%args,
search => $search,
set_list => 1,
download => $item->{download});
}
}
unless ($meta_obj) {
$self->{results} =
(ref($results) eq 'ARRAY' and scalar @$results == 1) ?
$results->[0] : $results;
}
return 1;
}
package CPAN::SQLite::Search::dist;
use parent 'CPAN::SQLite::Search';
sub search {
my ($self, %args) = @_;
return unless $args{search};
my $cdbi = $self->{cdbi};
my $meta_obj = $args{meta_obj};
$args{fields} = [ qw(dist_id dist_name dist_abs dist_vers dist_dslip
dist_file auth_id cpanid fullname email) ];
$args{table} = 'dists';
$args{join} = {auths => 'auth_id'};
$args{order_by} = 'dist_name';
if ($max_results) {
$args{limit} = $max_results;
}
my $results;
return unless $results = ($meta_obj ?
$cdbi->fetch_and_set(%args, want_ids => 1) :
$cdbi->fetch(%args));
$args{join} = undef;
$args{table} = 'mods';
$args{fields} = [ qw(mod_name mod_abs) ];
$args{order_by} = 'mod_name';
my @items = (ref($results) eq 'ARRAY') ? @$results : ($results);
foreach my $item(@items) {
my $search = {id => 'dist_id',
value => $item->{dist_id},
type => 'id',
wantarray => 1,
};
my $mods;
next unless $mods = ($meta_obj ?
$cdbi->fetch_and_set(%args,
search => $search,
set_list => 1,
download => $item->{download}) :
$cdbi->fetch(%args,
search => $search) );
next if $meta_obj;
$item->{mods} = (ref($mods) eq 'ARRAY') ? $mods : [$mods];
}
unless ($meta_obj) {
$self->{results} =
(ref($results) eq 'ARRAY' and scalar @$results == 1) ?
$results->[0] : $results;
}
return 1;
}
package CPAN::SQLite::Search;
sub mod_subchapter {
my ($self, $mod_name) = @_;
(my $sc = $mod_name) =~ s{^([^:]+).*}{$1};
return $sc;
}
sub dist_subchapter {
my ($self, $dist_name) = @_;
(my $sc = $dist_name) =~ s{^([^-]+).*}{$1};
return $sc;
}
1;
=head1 NAME
CPAN::SQLite::Search - perform queries on the database
=head1 VERSION
version 0.211
=head1 SYNOPSIS
my $max_results = 200;
my $query = CPAN::SQLite::Search->new(db_dir => $db_dir,
db_name => $db_name,
max_results => $max_results);
$query->query(mode => 'module', name => 'Net::FTP');
my $results = $query->{results};
=head1 CONSTRUCTING THE QUERY
This module queries the database via various types of queries
and returns the results for subsequent display. The
C<CPAN::SQLite::Search> object is created via the C<new> method as
my $query = CPAN::SQLite::Search->new(db_dir => $db_dir,
db_name => $db_name,
max_results => $max_results);
which takes as arguments
=over 3
=item * db_dir =E<gt> $db_dir
This is the directory where the database file is stored. This is
optional if the C<CPAN> option is given.
=item * CPAN =E<gt> $CPAN
This option specifies the C<cpan_home> directory of an
already configured CPAN.pm, which is where the database
file will be stored if C<db_dir> is not given.
=item * max_results =E<gt> $max_results
This is the maximum value used to limit the number of results
returned under a user query. If not specified, a value contained
within C<CPAN::SQLite::Search> will be used.
=back
A basic query then is constructed as
$query->query(mode => $mode, $type => $value);
with the results available as
my $results = $query->{results}
There are three basic modes:
=over 3
=item * module
This is for information on modules.
=item * dist
This is for information on distributions.
=item * author
This is for information on CPAN authors or cpanids.
=back
=head2 C<module>, C<dist>, and C<author> modes
For a mode of C<module>, C<dist>, and C<author>, there are
four basic options to be used for the C<$type =E<gt> $value> option:
=over 3
=item * query =E<gt> $query_term
This will search through module names,
distribution names, or CPAN author names and ids
(for C<module>, C<dist>, and C<author> modes
respectively). The results are case insensitive,
and Perl regular expressions for the C<$query_term>
are recognized.
=item * name =E<gt> $name
This will report exact matches (in a case sensitive manner)
for the module name, distribution name, or CPAN author id,
for C<module>, C<dist>, and C<author> modes
respectively.
=item * id =E<gt> $id
This will look up information on the primary key according
to the mode specified. This is more for internal use,
to help speed up queries; using this "publically" is
probably not a good idea, as the ids may change over the
course of time.
=back
=head1 RESULTS
After making the query, the results can be accessed through
my $results = $query->{results};
No results either can mean no matches were found, or
else an error in making the query resulted (in which case,
a brief error message is contained in C<$query-E<gt>{error}>).
Assuming there are results, what is returned depends on
the mode and on the type of query. See L<CPAN::SQLite::Populate>
for a description of the fields in the various tables
listed below - these fields are used as the keys of the
hash references that arise.
=head2 C<author> mode
=over 3
=item * C<name> or C<id> query
This returns the C<auth_id>, C<cpanid>, C<email>, and C<fullname>
of the C<auths> table. As well, an array reference
C<$results-E<gt>{dists}> is returned representing
all distributions associated with that C<cpanid> - each
member of the array reference is a hash reference
describing the C<dist_id>, C<dist_name>,
C<dist_abs>, C<dist_vers>, and C<dist_file> fields in the
C<dists> table. An additional entry, C<download>, is
supplied, which can be used as C<$CPAN/authors/id/$download>
to specify the url of the distribution.
=item * C<query> query
If this results in more than one match, an array reference
is returned, each member of which is a hash reference containing
the C<auth_id>, C<cpanid>, and C<fullname> fields. If there
is only one result found, a C<name> query based on the
matched C<cpanid> is performed.
=back
=head2 C<module> mode
=over 3
=item * C<name> or C<id> query
This returns the C<mod_id>, C<mod_name>, C<mod_abs>, C<mod_vers>,
C<dslip>, C<chapterid>, C<dist_id>, C<dist_name>, C<dist_file>,
C<auth_id>, C<cpanid>, C<fullname>, and C<email>
of the C<auths>, C<mods>, and C<dists> tables.
As well, the following entries may be present.
=over 3
=item * C<download>
This can be used as C<$CPAN/authors/id/$download>
to specify the url of the distribution.
=item * C<dslip_info>
If C<dslip> is available, an array reference C<dslip_info> is supplied,
each entry being a hash reference. The hash reference contains
two keys - C<desc>, whose value is a general description of the
what the dslip entry represents, and C<what>, whose value is
a description of the entry itself.
=back
=item * C<query> query
If this results in more than one match, an array reference
is returned, each member of which is a hash reference containing
the C<mod_id>, C<mod_name>, C<mod_abs>, C<mod_abs>, C<dist_vers>, C<dist_abs>,
C<auth_id>, C<cpanid>, C<dist_id>, C<dist_name>, and C<dist_file>.
As well, a C<download> field which
can be used as C<$CPAN/authors/id/$download>
to specify the url of the distribution is provided. If there
is only one result found, a C<name> query based on the
matched C<mod_name> is performed.
=back
=head2 C<dist> mode
=over 3
=item * C<name> or C<id> query
This returns the C<dist_id>, C<dist_name>, C<dist_abs>, C<dist_vers>,
C<dist_file>, C<size>, C<birth>, C<auth_id>, C<cpanid>, and C<fullname>
of the C<auths>, C<mods>, and C<dists> tables.
As well, the following entries may be present.
=over 3
=item * C<download>
This can be used as C<$CPAN/authors/id/$download>
to specify the url of the distribution.
=item * C<mods>
This is an array reference containing information on the
modules present. Each entry is a hash reference containing the
C<mod_id>, C<mod_name>, C<mod_abs>, C<mod_vers>, and C<dslip>
fields for the module.
=item * C<dslip> and C<dslip_info>
If the module name and distribution name are related by
C<s/::/->, the C<dslip> and C<dslip_info> entries for
that module are returned.
=back
=item * C<query> query
If this results in more than one match, an array reference
is returned, each member of which is a hash reference containing
the C<dist_id>, C<dist_name>, C<dist_abs>, C<dist_file>,
and C<cpanid> fields. As well, a C<download> field which
can be used as C<$CPAN/authors/id/$download>
to specify the url of the distribution is provided. If there
is only one result found, a C<name> query based on the
matched C<dist_name> is performed.
=back
=head1 SEE ALSO
L<CPAN::SQLite::Populate>.
=head1 AUTHORS
Randy Kobes (passed away on September 18, 2010)
Serguei Trouchelle E<lt>stro@cpan.orgE<gt>
=head1 COPYRIGHT
Copyright 2006,2008 by Randy Kobes E<lt>r.kobes@uwinnipeg.caE<gt>.
Copyright 2011-2013 by Serguei Trouchelle E<lt>stro@cpan.orgE<gt>.
Use and redistribution are under the same terms as Perl itself.
=cut
|