/usr/share/perl5/Dist/Metadata/Dir.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 | # 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::Dir;
{
$Dist::Metadata::Dir::VERSION = '0.925';
}
BEGIN {
$Dist::Metadata::Dir::AUTHORITY = 'cpan:RWSTAUNER';
}
# ABSTRACT: Enable Dist::Metadata for a directory
use Carp qw(croak carp); # core
use File::Find (); # core
use Path::Class 0.24 ();
use parent 'Dist::Metadata::Dist';
push(@Dist::Metadata::CARP_NOT, __PACKAGE__);
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
# fix up dir (for example chop trailing slash if present)
$self->{dir} = $self->path_class_dir->new($self->{dir})->stringify;
# TODO: croak if not -d $self->dir
return $self;
}
sub required_attribute { 'dir' }
sub determine_name_and_version {
my ($self) = @_;
# 'root' may be more accurate than 'dir'
$self->SUPER::determine_name_and_version();
$self->set_name_and_version( $self->parse_name_and_version( $self->dir ) );
return;
}
sub dir {
$_[0]->{dir};
}
# this shouldn't be called
sub extract_into {
croak q[A directory doesn't need to be extracted];
}
sub file_content {
my ($self, $file) = @_;
# This is a directory so file spec will always be native
my $path = $self->path_class_file
->new( $self->{dir}, $self->full_path($file) )->stringify;
open(my $fh, '<', $path)
or croak "Failed to open file '$path': $!";
return do { local $/; <$fh> };
}
sub find_files {
my ($self) = @_;
my $dir = $self->{dir};
my @files;
File::Find::find(
{
wanted => sub {
push @files, $self->path_class_file->new($_)->relative($dir)->stringify
if -f $_;
},
no_chdir => 1
},
$dir
);
return @files;
}
sub physical_directory {
my ($self, @files) = @_;
# TODO: return absolute_path?
my @parts = $self->{dir};
# go into root dir if there is one
push @parts, $self->root
if $self->root;
my $dir = $self->path_class_dir->new(@parts)->absolute;
return $dir->stringify unless wantarray;
return map { $_->stringify }
($dir, map { $dir->file( $_ ) } @files);
}
1;
__END__
=pod
=encoding utf-8
=for :stopwords Randy Stauner ACKNOWLEDGEMENTS TODO dist dists dir unix checksum checksums
=head1 NAME
Dist::Metadata::Dir - Enable Dist::Metadata for a directory
=head1 VERSION
version 0.925
=head1 SYNOPSIS
my $dm = Dist::Metadata->new(dir => $path_to_dir);
=head1 DESCRIPTION
This is a subclass of L<Dist::Metadata::Dist>
to enable getting the dists metadata from a directory.
This can be useful if you already have a dist extracted into a directory.
It's probably not very useful on it's own though,
and should be used from L<Dist::Metadata/new>.
=head1 METHODS
=head2 new
$dist = Dist::Metadata::Struct->new(dir => $path);
Accepts a single 'dir' argument that should be a path to a directory.
=head2 determine_name_and_version
Attempts to parse name and version from directory name.
=head2 dir
Returns the C<dir> attribute specified in the constructor.
=head2 file_content
Returns the content for the specified file.
=head2 find_files
Returns a list of the file names beneath the directory
(relative to the directory).
=head2 physical_directory
Returns the C<dir> attribute since this is already a directory
containing the desired files.
=for test_synopsis my $path_to_dir;
=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
|