/usr/share/perl5/Dist/Metadata.pm is in libdist-metadata-perl 0.925-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 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 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 | # vim: set ts=2 sts=2 sw=2 expandtab smarttab:
#
# This file is part of Dist-Metadata
#
# This software is copyright (c) 2011 by Randy Stauner.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
use strict;
use warnings;
package Dist::Metadata;
{
$Dist::Metadata::VERSION = '0.925';
}
# git description: v0.924-1-g6701fe0
BEGIN {
$Dist::Metadata::AUTHORITY = 'cpan:RWSTAUNER';
}
# ABSTRACT: Information about a perl module distribution
use Carp qw(croak carp);
use CPAN::Meta 2.1 ();
use List::Util qw(first); # core in perl v5.7.3
# something that is obviously not a real value
use constant UNKNOWN => '- unknown -';
sub new {
my $class = shift;
my $self = {
determine_packages => 1,
@_ == 1 ? %{ $_[0] } : @_
};
my @formats = qw( dist file dir struct );
croak(qq[A dist must be specified (one of ] .
join(', ', map { "'$_'" } @formats) . ')')
unless first { $self->{$_} } @formats;
bless $self, $class;
}
sub dist {
my ($self) = @_;
return $self->{dist} ||= do {
my $dist;
if( my $struct = $self->{struct} ){
require Dist::Metadata::Struct;
$dist = Dist::Metadata::Struct->new(%$struct);
}
elsif( my $dir = $self->{dir} ){
require Dist::Metadata::Dir;
$dist = Dist::Metadata::Dir->new(dir => $dir);
}
elsif ( my $file = $self->{file} ){
require Dist::Metadata::Archive;
$dist = Dist::Metadata::Archive->new(file => $file);
}
else {
# new() checks for one and dies without so we shouldn't get here
croak q[No dist format parameters found!];
}
$dist; # return
};
}
sub default_metadata {
my ($self) = @_;
return {
# required
abstract => UNKNOWN,
author => [],
dynamic_config => 0,
generated_by => ( ref($self) || $self ) . ' version ' . ( $self->VERSION || 0 ),
license => ['unknown'], # this 'unknown' comes from CPAN::Meta::Spec
'meta-spec' => {
version => '2',
url => 'http://search.cpan.org/perldoc?CPAN::Meta::Spec',
},
name => UNKNOWN,
# strictly speaking, release_status is also required but
# CPAN::Meta will figure it out based on the version number. if
# we were to set it explicitly, then we would first need to
# examine the version number for '_' or 'TRIAL' or 'RC' etc.
version => 0,
# optional
no_index => {
# ignore test and build directories by default
directory => [qw( inc t xt )],
},
# provides => { package => { file => $file, version => $version } }
};
}
sub determine_metadata {
my ($self) = @_;
my $dist = $self->dist;
my $meta = $self->default_metadata;
# get name and version from dist if dist was able to parse them
foreach my $att (qw(name version)) {
my $val = $dist->$att;
# if the dist could determine it that's better than the default
# but undef won't validate. value in $self will still override.
$meta->{$att} = $val
if defined $val;
}
# any passed in values should take priority
foreach my $field ( keys %$meta ){
$meta->{$field} = $self->{$field}
if exists $self->{$field};
}
return $meta;
}
sub determine_packages {
# meta must be passed to avoid infinite loop
my ( $self, $meta ) = @_;
# if not passed in, use defaults (we just want the 'no_index' property)
$meta ||= $self->meta_from_struct( $self->determine_metadata );
# should_index_file() expects unix paths
my @files = grep {
$meta->should_index_file(
$self->dist->path_classify_file($_)->as_foreign('Unix')->stringify
);
}
$self->dist->perl_files;
# TODO: should we limit packages to lib/ if it exists?
# my @lib = grep { m#^lib/# } @files; @files = @lib if @lib;
return {} if not @files;
my $packages = $self->dist->determine_packages(@files);
foreach my $pack ( keys %$packages ) {
# Remove any packages that should not be indexed
if ( !$meta->should_index_package($pack) ) {
delete $packages->{$pack};
next;
}
unless( $self->{include_inner_packages} ){
# PAUSE only considers packages that match the basename of the
# containing file. For example, file Foo.pm may only contain a
# package that matches /\bFoo$/. This is what PAUSE calls a
# "simile". All other packages in the file will be ignored.
# capture file basename (without the extension)
my ($base) = ($packages->{$pack}->{file} =~ m!([^/]+)\.pm(?:\.PL)?$!);
# remove if file didn't match regexp or package doesn't match basename
delete $packages->{$pack}
if !$base || $pack !~ m{\b\Q$base\E$};
}
}
return $packages;
}
sub load_meta {
my ($self) = @_;
my $dist = $self->dist;
my @files = $dist->list_files;
my ( $meta, $metafile );
my $default_meta = $self->determine_metadata;
# prefer json file (spec v2)
if ( $metafile = first { m#^META\.json$# } @files ) {
$meta = CPAN::Meta->load_json_string( $dist->file_content($metafile) );
}
# fall back to yaml file (spec v1)
elsif ( $metafile = first { m#^META\.ya?ml$# } @files ) {
$meta = CPAN::Meta->load_yaml_string( $dist->file_content($metafile) );
}
# no META file found in dist
else {
$meta = $self->meta_from_struct( $default_meta );
}
{
# always inlude (never index) the default no_index dirs
my $dir = ($meta->{no_index} ||= {})->{directory} ||= [];
my %seen = map { ($_ => 1) } @$dir;
unshift @$dir,
grep { !$seen{$_}++ }
@{ $default_meta->{no_index}->{directory} };
}
# Something has to be indexed, so if META has no (or empty) 'provides'
# attempt to determine packages unless specifically configured not to
if ( !keys %{ $meta->provides || {} } && $self->{determine_packages} ) {
# respect api/encapsulation
my $struct = $meta->as_struct;
$struct->{provides} = $self->determine_packages($meta);
$meta = $self->meta_from_struct($struct);
}
return $meta;
}
sub meta {
my ($self) = @_;
return $self->{meta} ||= $self->load_meta;
}
sub meta_from_struct {
my ($self, $struct) = @_;
return CPAN::Meta->create( $struct, { lazy_validation => 1 } );
}
sub package_versions {
my ($self) = shift;
my $provides = @_ ? shift : $self->provides; # || {}
return {
map { ($_ => $provides->{$_}{version}) } keys %$provides
};
}
sub module_info {
my ($self, $opts) = @_;
my $provides = $opts->{provides} || $self->provides;
$provides = { %$provides }; # break reference
my $checksums = $opts->{checksum} || $opts->{digest} || [];
$checksums = [ $checksums ]
unless ref($checksums) eq 'ARRAY';
my $digest_cache = {};
foreach my $mod ( keys %$provides ){
my $data = { %{ $provides->{ $mod } } }; # break reference
foreach my $checksum ( @$checksums ){
$data->{ $checksum } =
$digest_cache->{ $data->{file} }->{ $checksum } ||=
$self->dist->file_checksum($data->{file}, $checksum);
}
# TODO: $opts->{callback}->($self, $mod, $data, sub { $self->dist->file_content($data->{file}) });
$provides->{ $mod } = $data;
}
return $provides;
}
{
no strict 'refs'; ## no critic (NoStrict)
foreach my $method ( qw(
name
provides
version
) ){
*$method = sub { $_[0]->meta->$method };
}
}
1;
__END__
=pod
=encoding utf-8
=for :stopwords Randy Stauner ACKNOWLEDGEMENTS TODO dist dists dir unix checksum checksums
cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc
mailto metadata placeholders metacpan
=head1 NAME
Dist::Metadata - Information about a perl module distribution
=head1 VERSION
version 0.925
=head1 SYNOPSIS
my $dist = Dist::Metadata->new(file => $path_to_archive);
my $description = sprintf "Dist %s (%s)", $dist->name, $dist->version;
my $provides = $dist->package_versions;
while( my ($package, $version) = each %$provides ){
print "$description includes $package $version\n";
}
=head1 DESCRIPTION
This module provides an easy interface for getting various metadata
about a Perl module distribution.
It takes care of the common logic of:
=over 4
=item *
reading a tar file (L<Archive::Tar>)
=item *
finding and reading the correct META file if the distribution contains one (L<CPAN::Meta>)
=item *
and determining some of the metadata if there is no META file (L<Module::Metadata>, L<CPAN::DistnameInfo>)
=back
This is mostly a wrapper around L<CPAN::Meta> providing an easy interface
to find and load the meta file from a F<tar.gz> file.
A dist can also be represented by a directory or merely a structure of data.
If the dist does not contain a meta file
the module will attempt to determine some of that data from the dist.
B<NOTE>: This interface is still being defined.
Please submit any suggestions or concerns.
=head1 METHODS
=head2 new
Dist::Metadata->new(file => $path);
A dist can be represented by
a tar file,
a directory,
or a data structure.
The format will be determined by the presence of the following options
(checked in this order):
=over 4
=item *
C<struct> - hash of data to build a mock dist; See L<Dist::Metadata::Struct>.
=item *
C<dir> - path to the root directory of a dist
=item *
C<file> - the path to a F<.tar.gz> file
=back
You can also slyly pass in your own object as a C<dist> parameter
in which case this module will just use that.
This can be useful if you need to use your own subclass
(perhaps while developing a new format).
Other options that can be specified:
=over 4
=item *
C<name> - dist name
=item *
C<version> - dist version
=item *
C<determine_packages> - boolean to indicate whether dist should be searched
for packages if no META file is found. Defaults to true.
=item *
C<include_inner_packages> - When determining provided packages
the default behavior is to only include packages that match the name
of the file that defines them (like C<Foo::Bar> matches C<*/Bar.pm>).
This way only modules that can be loaded (via C<use> or C<require>)
will be returned (and "inner" packages will be ignored).
This mimics the behavior of PAUSE.
Set this to true to include any "inner" packages provided by the dist
(that are not otherwise excluded by another mechanism (such as C<no_index>)).
=back
=head2 dist
Returns the dist object (subclass of L<Dist::Metadata::Dist>).
=head2 default_metadata
Returns a hashref of default values
used to initialize a L<CPAN::Meta> object
when a META file is not found.
Called from L</determine_metadata>.
=head2 determine_metadata
Examine the dist and try to determine metadata.
Returns a hashref which can be passed to L<CPAN::Meta/new>.
This is used when the dist does not contain a META file.
=head2 determine_packages
my $provides = $dm->determine_packages($meta);
Attempt to determine packages provided by the dist.
This is used when the META file does not include a C<provides>
section and C<determine_packages> is not set to false in the constructor.
If a L<CPAN::Meta> object is not provided a default one will be used.
Files contained in the dist and packages found therein will be checked against
the meta object's C<no_index> attribute
(see L<CPAN::Meta/should_index_file>
and L<CPAN::Meta/should_index_package>).
By default this ignores any files found in
F<inc/>,
F<t/>,
or F<xt/>
directories.
=head2 load_meta
Loads the metadata from the L</dist>.
=head2 meta
Returns the L<CPAN::Meta> instance in use.
=head2 meta_from_struct
$meta = $dm->meta_from_struct(\%struct);
Passes the the provided C<\%struct> to L<CPAN::Meta/create>
and returns the result.
=head2 package_versions
$pv = $dm->package_versions();
# { 'Package::Name' => '1.0', 'Module::2' => '2.1' }
Returns a simplified version of C<provides>:
a hashref with package names as keys and versions as values.
This can also be called as a class method
which will operate on a passed in hashref.
$pv = Dist::Metadata->package_versions(\%provides);
=head2 module_info
Returns a hashref of meta data for each of the packages provided by this dist.
The hashref starts with the same data as L</provides>
but additional data can be added to the output by specifying options in a hashref:
=over 4
=item C<checksum>
Use the specified algorithm to compute a hex digest of the file.
The type you specify will be the key in the returned hashref.
You can use an arrayref to specify more than one type.
$dm->module_info({checksum => ['sha256', 'md5']});
# returns:
{
'Mod::Name' => {
file => 'lib/Mod/Name.pm',
version => '0.1',
md5 => '258e88dcbd3cd44d8e7ab43f6ecb6af0',
sha256 => 'f22136124cd3e1d65a48487cecf310771b2fd1e83dc032e3d19724160ac0ff71',
},
}
See L<Dist::Metadata::Dist/file_checksum> for more information.
=item C<provides>
The default is to start with the hashref returned from L</provides>
but you can pass in an alternate hashref using this key.
=back
Other options may be added in the future.
=head1 INHERITED METHODS
The following methods are available on this object
and simply call the corresponding method on the L<CPAN::Meta> object.
=over 4
=item *
X<name> name
=item *
X<provides> provides
=item *
X<version> version
=back
=for Pod::Coverage name version provides
=for test_synopsis my $path_to_archive;
=head1 TODO
=over 4
=item *
More tests
=item *
C<trust_meta> option (to allow setting it to false)
=item *
Guess main module from dist name if no packages can be found
=item *
Determine abstract?
=item *
Add change log info (L<CPAN::Changes>)?
=item *
Subclass as C<CPAN::Dist::Metadata> just so that it has C<CPAN> in the name?
=item *
Use L<File::Find::Rule::Perl>?
=back
=head1 SEE ALSO
=head2 Dependencies
=over 4
=item *
L<CPAN::Meta>
=item *
L<Module::Metadata>
=item *
L<CPAN::DistnameInfo>
=back
=head2 Related Modules
=over 4
=item *
L<MyCPAN::Indexer>
=item *
L<CPAN::ParseDistribution>
=back
=head1 SUPPORT
=head2 Perldoc
You can find documentation for this module with the perldoc command.
perldoc Dist::Metadata
=head2 Websites
The following websites have more information about this module, and may be of help to you. As always,
in addition to those websites please use your favorite search engine to discover more resources.
=over 4
=item *
Search CPAN
The default CPAN search engine, useful to view POD in HTML format.
L<http://search.cpan.org/dist/Dist-Metadata>
=item *
RT: CPAN's Bug Tracker
The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Metadata>
=item *
CPAN Ratings
The CPAN Ratings is a website that allows community ratings and reviews of Perl modules.
L<http://cpanratings.perl.org/d/Dist-Metadata>
=item *
CPAN Testers
The CPAN Testers is a network of smokers who run automated tests on uploaded CPAN distributions.
L<http://www.cpantesters.org/distro/D/Dist-Metadata>
=item *
CPAN Testers Matrix
The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
L<http://matrix.cpantesters.org/?dist=Dist-Metadata>
=item *
CPAN Testers Dependencies
The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
L<http://deps.cpantesters.org/?module=Dist::Metadata>
=back
=head2 Bugs / Feature Requests
Please report any bugs or feature requests by email to C<bug-dist-metadata at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dist-Metadata>. You will be automatically notified of any
progress on the request by the system.
=head2 Source Code
L<https://github.com/rwstauner/Dist-Metadata>
git clone https://github.com/rwstauner/Dist-Metadata.git
=head1 AUTHOR
Randy Stauner <rwstauner@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Randy Stauner.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|