/usr/share/perl5/Bread/Board/Container.pm is in libbread-board-perl 0.32-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 | package Bread::Board::Container;
BEGIN {
$Bread::Board::Container::AUTHORITY = 'cpan:STEVAN';
}
$Bread::Board::Container::VERSION = '0.32';
use Moose;
use Moose::Util::TypeConstraints 'find_type_constraint';
use MooseX::Params::Validate 0.14;
use Bread::Board::Types;
with 'Bread::Board::Traversable';
has 'name' => (
is => 'rw',
isa => 'Str',
required => 1
);
has 'services' => (
traits => [ 'Hash', 'Clone' ],
is => 'rw',
isa => 'Bread::Board::Container::ServiceList',
coerce => 1,
lazy => 1,
default => sub{ +{} },
trigger => sub {
my $self = shift;
$_->parent($self) foreach values %{$self->services};
},
handles => {
'get_service' => 'get',
'has_service' => 'exists',
'get_service_list' => 'keys',
'has_services' => 'count',
}
);
has 'sub_containers' => (
traits => [ 'Hash', 'Clone' ],
is => 'rw',
isa => 'Bread::Board::Container::SubContainerList',
coerce => 1,
lazy => 1,
default => sub{ +{} },
trigger => sub {
my $self = shift;
$_->parent($self) foreach values %{$self->sub_containers};
},
handles => {
'get_sub_container' => 'get',
'has_sub_container' => 'exists',
'get_sub_container_list' => 'keys',
'has_sub_containers' => 'count',
}
);
has 'type_mappings' => (
traits => [ 'Hash' ],
is => 'rw',
isa => 'Bread::Board::Container::ServiceList',
lazy => 1,
default => sub{ +{} },
handles => {
'_get_type_mapping_for' => 'get',
'_has_type_mapping_for' => 'exists',
'_mapped_types' => 'keys',
}
);
sub get_type_mapping_for {
my $self = shift;
my ($type) = @_;
return $self->_get_type_mapping_for($type)
if $self->_has_type_mapping_for($type);
for my $possible ($self->_mapped_types) {
return $self->_get_type_mapping_for($possible)
if $possible->isa($type);
}
return;
}
sub has_type_mapping_for {
my $self = shift;
my ($type) = @_;
return 1
if $self->_has_type_mapping_for($type);
for my $possible ($self->_mapped_types) {
return 1
if $possible->isa($type);
}
return;
}
sub add_service {
my ($self, $service) = @_;
(blessed $service && $service->does('Bread::Board::Service'))
|| confess "You must pass in a Bread::Board::Service instance, not $service";
$service->parent($self);
$self->services->{$service->name} = $service;
}
sub add_sub_container {
my ($self, $container) = @_;
(
blessed $container &&
(
$container->isa('Bread::Board::Container')
||
$container->isa('Bread::Board::Container::Parameterized')
)
) || confess "You must pass in a Bread::Board::Container instance, not $container";
$container->parent($self);
$self->sub_containers->{$container->name} = $container;
}
sub add_type_mapping_for {
my ($self, $type, $service) = @_;
my $type_constraint = find_type_constraint( $type );
(defined $type_constraint)
|| confess "You must pass a valid Moose type, and it must exist already";
(blessed $service && $service->does('Bread::Board::Service'))
|| confess "You must pass in a Bread::Board::Service instance, not $service";
$self->type_mappings->{ $type_constraint->name } = $service;
}
sub resolve {
my ($self, %params) = validated_hash(\@_,
service => { isa => 'Str', optional => 1 },
type => { isa => 'Str', optional => 1 },
parameters => { isa => 'HashRef', optional => 1 },
);
my %parameters = exists $params{'parameters'}
? %{ $params{'parameters'} }
: ();
if (my $service_path = $params{'service'}) {
my $service = $self->fetch( $service_path );
# NOTE:
# we might want to allow Bread::Board::Service::Deferred::Thunk
# objects as well, but I am not sure that is a valid use case
# for this, so for now we just don't go there.
# - SL
(blessed $service && $service->does('Bread::Board::Service'))
|| confess "You can only resolve services, "
. (defined $service ? $service : 'undef')
. " is not a Bread::Board::Service";
return $service->get( %parameters );
}
elsif (my $type = $params{'type'}) {
($self->has_type_mapping_for( $type ))
|| confess "Could not find a mapped service for type ($type)";
my $service = $self->get_type_mapping_for( $type );
my $result = $service->get( %parameters );
(find_type_constraint( $type )->check( $result ))
|| confess "The result of the service for type ($type) did not"
. " pass the type constraint with $result";
return $result;
}
else {
confess "Cannot call resolve without telling it what to resolve.";
}
}
__PACKAGE__->meta->make_immutable;
no Moose::Util::TypeConstraints;
no Moose;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Bread::Board::Container
=head1 VERSION
version 0.32
=head1 DESCRIPTION
=head1 METHODS
=over 4
=item B<add_service>
=item B<add_sub_container>
=item B<get_service>
=item B<get_service_list>
=item B<get_sub_container>
=item B<get_sub_container_list>
=item B<has_service>
=item B<has_services>
=item B<has_sub_container>
=item B<has_sub_containers>
=item B<name>
=item B<services>
=item B<sub_containers>
=item B<fetch ( $service_name )>
=item B<resolve ( ?service => $service_name, ?type => $type, ?parameters => { ... } )>
=item B<add_type_mapping_for ( $type_name, $service )>
=item B<get_type_mapping_for ( $type_name )>
=item B<has_type_mapping_for ( $type_name )>
=back
=head1 BUGS
All complex software has bugs lurking in it, and this module is no
exception. If you find a bug please either email me, or add the bug
to cpan-RT.
=head1 AUTHOR
Stevan Little <stevan@iinteractive.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Infinity Interactive.
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
|