| 2 |
## $Id$ |
## $Id$ |
| 3 |
## -------------------------------------------------------------------------------- |
## -------------------------------------------------------------------------------- |
| 4 |
## $Log$ |
## $Log$ |
| 5 |
|
## Revision 1.10 2003/02/20 20:50:32 joko |
| 6 |
|
## + small exception handling: now inheriting from little Exception object |
| 7 |
|
## |
| 8 |
|
## Revision 1.9 2003/02/18 18:35:30 joko |
| 9 |
|
## + encapsulated/abstracted some more functionality: sub load_single |
| 10 |
|
## |
| 11 |
## Revision 1.8 2003/02/14 14:20:05 joko |
## Revision 1.8 2003/02/14 14:20:05 joko |
| 12 |
## + modified mixin behaviour |
## + modified mixin behaviour |
| 13 |
## |
## |
| 43 |
use strict; |
use strict; |
| 44 |
use warnings; |
use warnings; |
| 45 |
|
|
| 46 |
use base qw( DesignPattern::Object ); |
use base qw( |
| 47 |
|
DesignPattern::Object |
| 48 |
|
DesignPattern::Exception |
| 49 |
|
); |
| 50 |
|
|
| 51 |
use Data::Dumper; |
use Data::Dumper; |
| 52 |
|
|
| 138 |
sub load { |
sub load { |
| 139 |
|
|
| 140 |
my $self = shift; |
my $self = shift; |
| 141 |
|
my $modulename = shift; |
| 142 |
|
my $options = shift; |
| 143 |
|
|
| 144 |
|
if (ref $modulename eq 'ARRAY') { |
| 145 |
|
foreach (@$modulename) { |
| 146 |
|
$self->load_single($_, $options); |
| 147 |
|
} |
| 148 |
|
} else { |
| 149 |
|
$self->load_single($modulename, $options); |
| 150 |
|
} |
| 151 |
|
|
| 152 |
|
} |
| 153 |
|
|
| 154 |
|
sub load_single { |
| 155 |
|
|
| 156 |
|
my $self = shift; |
| 157 |
my $modulename_load = shift; |
my $modulename_load = shift; |
| 158 |
|
|
| 159 |
my $options = shift; |
my $options = shift; |
| 171 |
|
|
| 172 |
# this is the module testing phase - use mixin doesn't seem to propagate errors by default |
# this is the module testing phase - use mixin doesn't seem to propagate errors by default |
| 173 |
eval("use $package;"); |
eval("use $package;"); |
| 174 |
|
$self->checkExceptions(); |
| 175 |
|
|
| 176 |
|
=pod |
| 177 |
if ($@) { |
if ($@) { |
| 178 |
$meta->{loaded}->{$package} = 0; |
$meta->{loaded}->{$package} = 0; |
| 179 |
# include caller information |
# include caller information |
| 186 |
print $msg, "\n"; |
print $msg, "\n"; |
| 187 |
} |
} |
| 188 |
} |
} |
| 189 |
|
=cut |
| 190 |
|
|
| 191 |
#print "ref-1: ", ref $self, "\n"; |
#print "ref-1: ", ref $self, "\n"; |
| 192 |
#print "ref-2: ", ref $self::SUPER, "\n"; |
#print "ref-2: ", ref $self::SUPER, "\n"; |