/usr/share/perl5/Poet/Tools.pm is in libpoet-perl 0.16-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 | # Internal Poet tools
#
package Poet::Tools;
$Poet::Tools::VERSION = '0.16';
use Carp;
use Class::Load;
use Class::MOP;
use Config;
use Fcntl qw( :DEFAULT :seek );
use File::Basename;
use File::Find;
use File::Path;
use File::Slurp qw(read_dir);
use File::Spec::Functions ();
use File::Temp qw(tempdir);
use Try::Tiny;
use strict;
use warnings;
use base qw(Exporter);
our @EXPORT_OK =
qw(basename can_load catdir catfile checksum dirname find_wanted mkpath perl_executable read_dir read_file rmtree taint_is_on tempdir_simple trim uniq write_file );
my $Fetch_Flags = O_RDONLY | O_BINARY;
my $Store_Flags = O_WRONLY | O_CREAT | O_BINARY;
my $File_Spec_Using_Unix = $File::Spec::ISA[0] eq 'File::Spec::Unix';
sub can_load {
# Load $class_name if possible. Return 1 if successful, 0 if it could not be
# found, and rethrow load error (other than not found).
#
my ($class_name) = @_;
my $result;
try {
Class::Load::load_class($class_name);
$result = 1;
}
catch {
if ( /Can\'t locate .* in \@INC/ && !/Compilation failed/ ) {
$result = 0;
}
else {
die $_;
}
};
return $result;
}
sub catdir {
return $File_Spec_Using_Unix
? join( "/", @_ )
: File::Spec::Functions::catdir(@_);
}
sub catfile {
return $File_Spec_Using_Unix
? join( "/", @_ )
: File::Spec::Functions::catfile(@_);
}
sub checksum {
my ($str) = @_;
# Adler32 algorithm
my $s1 = 1;
my $s2 = 1;
for my $c ( unpack( "C*", $str ) ) {
$s1 = ( $s1 + $c ) % 65521;
$s2 = ( $s2 + $s1 ) % 65521;
}
return ( $s2 << 16 ) + $s1;
}
# From File::Find::Wanted
sub find_wanted {
my $func = shift;
my @files;
local $_;
find( sub { push @files, $File::Find::name if &$func }, @_ );
return @files;
}
# Return perl executable - from ExtUtils::MM_Unix
sub perl_executable {
my $interpreter;
if ( $Config{startperl} =~ m,^\#!.*/perl, ) {
$interpreter = $Config{startperl};
$interpreter =~ s,^\#!,,;
}
else {
$interpreter = $Config{perlpath};
}
return $interpreter;
}
sub read_file {
my ($file) = @_;
# Fast slurp, adapted from File::Slurp::read, with unnecessary options removed
#
my $buf = "";
my $read_fh;
unless ( sysopen( $read_fh, $file, $Fetch_Flags ) ) {
croak "read_file '$file' - sysopen: $!";
}
my $size_left = -s $read_fh;
while (1) {
my $read_cnt = sysread( $read_fh, $buf, $size_left, length $buf );
if ( defined $read_cnt ) {
last if $read_cnt == 0;
$size_left -= $read_cnt;
last if $size_left <= 0;
}
else {
croak "read_file '$file' - sysread: $!";
}
}
return $buf;
}
sub tempdir_simple {
my ($template) = @_;
return tempdir( $template, TMPDIR => 1, CLEANUP => 1 );
}
sub trim {
my ($str) = @_;
if ( defined($str) ) {
for ($str) { s/^\s+//; s/\s+$// }
}
return $str;
}
# From List::MoreUtils
sub uniq (@) {
my %h;
map { $h{$_}++ == 0 ? $_ : () } @_;
}
sub taint_is_on {
return ${^TAINT} ? 1 : 0;
}
sub write_file {
my ( $file, $data, $file_create_mode ) = @_;
($file) = $file =~ /^(.*)/s if taint_is_on(); # Untaint blindly
$file_create_mode = oct(666) if !defined($file_create_mode);
# Fast spew, adapted from File::Slurp::write, with unnecessary options removed
#
{
my $write_fh;
unless ( sysopen( $write_fh, $file, $Store_Flags, $file_create_mode ) ) {
croak "write_file '$file' - sysopen: $!";
}
my $size_left = length($data);
my $offset = 0;
do {
my $write_cnt = syswrite( $write_fh, $data, $size_left, $offset );
unless ( defined $write_cnt ) {
croak "write_file '$file' - syswrite: $!";
}
$size_left -= $write_cnt;
$offset += $write_cnt;
} while ( $size_left > 0 );
truncate( $write_fh, sysseek( $write_fh, 0, SEEK_CUR ) )
}
}
1;
|