Mercurial > pub > Impl
view lib/IMPL/Config/Hierarchy.pm @ 414:ec6f2d389d1e ref20150831
working on IMPL::Config::Bag
author | cin |
---|---|
date | Fri, 02 Oct 2015 06:56:24 +0300 |
parents | af8d359ee4cc |
children | 3d24b10dd0d5 |
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, 1 }; my @roles = [$role, 1]; 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;