Mercurial > pub > Impl
view Lib/IMPL/Code/Loader.pm @ 225:a1e868b0fba9
Bindings concept in progress
author | sergey |
---|---|
date | Fri, 31 Aug 2012 16:41:18 +0400 |
parents | a8db61d0ed33 |
children | 47f77e6409f7 |
line wrap: on
line source
package IMPL::Code::Loader; use strict; use warnings; use IMPL::lang qw(:declare :constants); use IMPL::declare { require => { Exception => 'IMPL::Exception', ArgumentException => '-IMPL::InvalidArgumentException' }, base => { 'IMPL::Object' => undef, 'IMPL::Object::Autofill' => '@_' } }; my $default; sub default { $default ||= new IMPL::Code::Loader; } my $safe; sub safe { $safe ||= new IMPL::Code::Loader(verifyNames => 1); } BEGIN { public property verifyNames => PROP_GET | PROP_OWNERSET; public property prefix => PROP_GET | PROP_OWNERSET; } sub Require { my ($this,$package) = @_; if ($this->verifyNames) { $package =~ m/^([a-zA-Z_0-9]+(?:::[a-zA-Z_0-9]+)*)$/ or die ArgumentException->new("package") ; } $package = $this->prefix . $package if $this->prefix; my $file = join('/', split(/::/,$package)) . ".pm"; require $file; } 1;