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
|
# ABSTRACT: Find a package/distribution target among CPAN-like repositories
package Pinto::Locator::Multiplex;
use Moose;
use MooseX::Types::Moose qw(ArrayRef);
use MooseX::MarkAsMethods (autoclean => 1);
use Pinto::Locator::Mirror;
use Pinto::Locator::Stratopan;
use Pinto::Constants qw(:stratopan);
#------------------------------------------------------------------------------
our $VERSION = '0.14'; # VERSION
#-----------------------------------------------------------------------------
extends qw(Pinto::Locator);
#------------------------------------------------------------------------------
has locators => (
is => 'ro',
isa => ArrayRef['Pinto::Locator'],
writer => '_set_locators',
default => sub { [] },
lazy => 1,
);
#------------------------------------------------------------------------------
sub assemble {
my ($self, @uris) = @_;
my @locators;
for my $uri (@uris) {
my $class = $self->locator_class_for_uri($uri);
# Ick: This assumes all Locators have same attribute interface
my %args = ( uri => $uri, cache_dir => $self->cache_dir );
push @locators, $class->new( %args );
}
$self->_set_locators(\@locators);
return $self;
}
#------------------------------------------------------------------------------
sub locate_package {
my ($self, %args) = @_;
my @all_found;
for my $locator ( @{ $self->locators } ) {
next unless my $found = $locator->locate_package(%args);
push @all_found, $found;
last unless $args{cascade};
}
return if not @all_found;
@all_found = reverse sort {$a->{version} <=> $b->{version}} @all_found;
return $all_found[0];
}
#------------------------------------------------------------------------------
sub locate_distribution {
my ($self, %args) = @_;
for my $locator ( @{ $self->locators } ) {
next unless my $found = $locator->locate_distribution(%args);
return $found;
}
return;
}
#------------------------------------------------------------------------------
sub locator_class_for_uri {
my ($self, $uri) = @_;
my $baseclass = 'Pinto::Locator';
my $subclass = $uri eq $PINTO_STRATOPAN_CPAN_URI ? 'Stratopan' : 'Mirror';
return $baseclass . '::' . $subclass;
}
#------------------------------------------------------------------------------
sub refresh {
my ($self) = @_;
$_->refresh for @{ $self->locators };
return $self;
}
#------------------------------------------------------------------------------
__PACKAGE__->meta->make_immutable;
#------------------------------------------------------------------------------
1;
__END__
=pod
=encoding UTF-8
=for :stopwords Jeffrey Ryan Thalhammer
=head1 NAME
Pinto::Locator::Multiplex - Find a package/distribution target among CPAN-like repositories
=head1 VERSION
version 0.14
=head1 AUTHOR
Jeffrey Ryan Thalhammer <jeff@stratopan.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by Jeffrey Ryan Thalhammer.
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
|