Mercurial > pub > Impl
view lib/IMPL/Config/Hierarchy.pm @ 413:af8d359ee4cc ref20150831
working on di container
author | cin |
---|---|
date | Thu, 24 Sep 2015 12:19:30 +0300 |
parents | 30e8c6a74937 |
children | ec6f2d389d1e |
line wrap: on
line source
package IMPL::Config::Hierarchy; use strict; use IMPL::Exception(); use IMPL::lang qw(:base); use IMPL::clone; use IMPL::declare { base => { 'IMPL::Object' => undef }, props => { roles => '*rw', _cache => '*rw' } }; sub CTOR { my ( $this, $roles ) = @_; if ( is( $roles, SELF ) ) { $this->roles( clone( $roles->roles ) ); } elsif ( ishash($roles) ) { $this->roles($roles); } elsif ( isarray($roles) ) { $this->roles( { map { $_, 1 } @$roles } ); } else { $this->roles( {} ); } } sub AddRole { my ( $this, $role, $parent ) = @_; $parent = isarray($parent) ? $parent : [$parent] if $parent; die IMPL::InvalidArgumentException->new('role') unless $role; $this->roles->{$role} = $parent; } sub GetLinearRoleHash { my ( $this, $role ) = @_; return [] unless $role; my $cache = $this->{$_cache}{$role}; unless ($cache) { $cache = { $role, 0 }; my @roles = [$role, 0]; while (my $r = shift @roles ) { my ($name, $level) = @$r; $cache->{$name} = $level; if(my $parents = $this->{$roles}{$name}) { foreach my $p (@$parents) { next if $cache{$p}; push @roles, [$p, $cache{$p} = $level + 1]; } } } $this->{$_cache}{$role} = $cache; } return $cache; } 1;