package Alien::Build::Util; use strict; use warnings; use base qw( Exporter ); use Path::Tiny qw( path ); use Config; # ABSTRACT: Private utility functions for Alien::Build our $VERSION = '1.39'; # VERSION our @EXPORT_OK = qw( _mirror _dump _destdir_prefix _perl_config ); # usage: _mirror $source_directory, $dest_direction, \%options # # options: # - filter -> regex for files that should match # - empty_directory -> if true, create all directories, including empty ones. # - verbose -> turn on verbosity sub _mirror { my($src_root, $dst_root, $opt) = @_; ($src_root, $dst_root) = map { path($_) } ($src_root, $dst_root); $opt ||= {}; require Alien::Build; require File::Find; require File::Copy; File::Find::find({ wanted => sub { next unless -e $File::Find::name; my $src = path($File::Find::name)->relative($src_root); return if $opt->{filter} && "$src" !~ $opt->{filter}; return if "$src" eq '.'; my $dst = $dst_root->child("$src"); $src = $src->absolute($src_root); if(-d "$src") { if($opt->{empty_directory}) { unless(-d $dst) { Alien::Build->log("mkdir $dst") if $opt->{verbose}; mkdir($dst) || die "unable to create directory $dst: $!"; } } } elsif(-l "$src") { unless(-d $dst->parent) { Alien::Build->log("mkdir -p @{[ $dst->parent ]}") if $opt->{verbose}; $dst->parent->mkpath; } # TODO: rmtree if a directory? if(-e "$dst") { unlink "$dst" } my $target = readlink "$src"; Alien::Build->log("ln -s $target $dst") if $opt->{verbose}; symlink($target, $dst) || die "unable to symlink $target => $dst"; } elsif(-f "$src") { unless(-d $dst->parent) { Alien::Build->log("mkdir -p @{[ $dst->parent ]}") if $opt->{verbose}; $dst->parent->mkpath; } # TODO: rmtree if a directory? if(-e "$dst") { unlink "$dst" } Alien::Build->log("Alien::Build> cp $src $dst") if $opt->{verbose}; File::Copy::cp("$src", "$dst") || die "copy error $src => $dst: $!"; if($] < 5.012 && -x "$src" && $^O ne 'MSWin32') { # apparently Perl 5.8 and 5.10 do not preserver perms my $mode = [stat "$src"]->[2] & 0777; eval { chmod $mode, "$dst" }; } } }, no_chdir => 1, }, "$src_root"); (); } sub _dump { if(eval { require YAML }) { return YAML::Dump(@_); } else { require Data::Dumper; return Data::Dumper::Dumper(@_); } } sub _destdir_prefix { my($destdir, $prefix) = @_; $prefix =~ s{^/?([a-z]):}{$1}i if $^O eq 'MSWin32'; path($destdir)->child($prefix)->stringify; } sub _perl_config { my($key) = @_; $Config{$key}; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Alien::Build::Util - Private utility functions for Alien::Build =head1 VERSION version 1.39 =head1 DESCRIPTION This module contains some private utility functions used internally by L. It shouldn't be used by any distribution other than C. That includes L plugins that are not part of the L core. You have been warned. The functionality within may be removed at any time! =head1 SEE ALSO L =head1 AUTHOR Author: Graham Ollis Eplicease@cpan.orgE Contributors: Diab Jerius (DJERIUS) Roy Storey Ilya Pavlov David Mertens (run4flat) Mark Nunberg (mordy, mnunberg) Christian Walde (Mithaldu) Brian Wightman (MidLifeXis) Zaki Mughal (zmughal) mohawk (mohawk2, ETJ) Vikas N Kumar (vikasnkumar) Flavio Poletti (polettix) Salvador Fandiño (salva) Gianni Ceccarelli (dakkar) Pavel Shaydo (zwon, trinitum) Kang-min Liu (劉康民, gugod) Nicholas Shipp (nshp) Juan Julián Merelo Guervós (JJ) Joel Berger (JBERGER) Petr Pisar (ppisar) Lance Wicks (LANCEW) Ahmad Fatoum (a3f, ATHREEF) José Joaquín Atria (JJATRIA) Duke Leto (LETO) Shoichi Kaji (SKAJI) =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2017 by Graham Ollis. 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