/usr/share/tiarra/main/ModuleManager.pm is in tiarra 20100212-3.
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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 | # -----------------------------------------------------------------------------
# $Id: ModuleManager.pm 13831 2008-06-13 14:01:33Z topia $
# -----------------------------------------------------------------------------
# このクラスは全てのTiarraモジュールを管理します。
# モジュールをロードし、リロードし、破棄するのはこのクラスです。
# -----------------------------------------------------------------------------
package ModuleManager;
use strict;
use Carp;
use warnings;
use UNIVERSAL;
use Scalar::Util qw(refaddr weaken);
use Tiarra::SharedMixin qw(shared shared_manager);
use Tiarra::ShorthandConfMixin;
use Tiarra::Utils;
our $_shared_instance;
utils->define_attr_getter(1, [qw(_runloop runloop)]);
sub __initialized {
# internal public method for instance initialized
defined $_shared_instance;
}
sub _new {
shift->new(shift || do { require RunLoop && RunLoop->shared });
}
sub new {
my ($class, $runloop) = @_;
croak 'runloop is not specified!' unless defined $runloop;
weaken($runloop);
my $obj = {
runloop => $runloop,
modules => [], # 現在使用されている全てのモジュール
using_modules_cache => undef, # ブラックリストを除いた全てのモジュールのキャッシュ。
mod_configs => {}, # 現在使用されている全モジュールのConfiguration::Block
mod_timestamps => {}, # 現在使用されている全モジュールおよびサブモジュールの初めてuseされた時刻
mod_blacklist => {}, # 過去に正常動作しなかったモジュール。
updated_once => 0, # 過去にupdate_modulesが実行された事があるか。
mod_disposables => {}, # モジュールに関連づけられているタイマーとか。アンロードした後で全部捨てる。
};
bless $obj,$class;
}
sub _initialize {
my $this = shift;
$this->update_modules;
}
sub add_to_blacklist {
my ($this,$modname) = @_;
$this->_set_blacklist($modname, 1);
}
sub remove_from_blacklist {
my ($this,$modname) = @_;
$this->_set_blacklist($modname, 0);
}
sub check_blacklist {
my ($class_or_this,$modname) = @_;
exists $class_or_this->_this->{mod_blacklist}->{$modname};
}
sub _set_blacklist {
my ($class_or_this,$modname,$add_or_remove) = @_;
my $this = $class_or_this->_this;
$this->_clear_module_cache;
if ($add_or_remove) {
# modname の存在テストはしない: && defined $this->get($modname)
$this->{mod_blacklist}->{$modname} = 1;
} elsif (!$add_or_remove && exists $this->{mod_blacklist}->{$modname}) {
delete $this->{mod_blacklist}->{$modname};
} else {
return undef;
}
return 1;
}
sub _clear_module_cache {
shift->{using_modules_cache} = undef;
}
sub get_modules {
# @options(省略可能):
# 'even-if-blacklisted': ブラックリスト入りのものを含める。
# モジュールの配列への参照を返すが、これを変更してはならない!
my ($class_or_this,@options) = @_;
my $this = $class_or_this->_this;
if (defined $options[0] && $options[0] eq 'even-if-blacklisted') {
return $this->{modules};
} else {
if (!defined $this->{using_modules_cache}) {
$this->{using_modules_cache} = [grep {
!$this->check_blacklist(ref($_));
} @{$this->{modules}}];
}
return $this->{using_modules_cache};
}
}
sub get {
my ($class_or_this,$modname) = @_;
my $this = $class_or_this->_this;
foreach (@{$this->{modules}}) {
return $_ if ref $_ eq $modname;
}
undef;
}
sub terminate {
# Tiarra終了時に呼ぶ事。
my $this = shift->_this;
foreach (@{$this->{modules}}) {
eval {
$_->destruct;
}; if ($@) {
print "$@\n";
}
$this->_unload(ref($_));
}
foreach (keys %{$this->{mod_timestamps}}) {
eval {
$_->destruct;
};
$this->_unload($_);
}
@{$this->{modules}} = ();
$this->_clear_module_cache;
%{$this->{mod_configs}} = ();
%{$this->{mod_timestamps}} = ();
}
sub timestamp {
my ($class_or_this,$module,$timestamp) = @_;
my $this = $class_or_this->_this;
if (defined $timestamp) {
$this->{mod_timestamps}->{$module} = $timestamp;
}
$this->{mod_timestamps}->{$module};
}
sub check_timestamp_update {
my ($class_or_this,$module,$timestamp) = @_;
my $this = $class_or_this->_this;
$timestamp = $this->{mod_timestamps}->{$module} if !defined $timestamp;
if (defined $timestamp) {
(my $mod_filename = $module) =~ s|::|/|g;
my $mod_fpath = $INC{$mod_filename.'.pm'};
return if (!defined($mod_fpath) || !-f $mod_fpath);
if ((stat($mod_fpath))[9] > $timestamp) {
return 1;
} else {
return 0;
}
} else {
return undef;
}
}
sub add_module_object {
my $this = shift->_this;
my ($modname, @disposables) = @_;
$modname = ref($modname) || $modname;
my ($foo);
my (%addrs);
@{$this->{mod_disposables}->{$modname}} = grep {
defined $_ && !($addrs{refaddr($_)}++)
} (@{$this->{mod_disposables}->{$modname}},
map { weaken($_); $_ } @disposables);
$this;
}
sub remove_module_object {
my $this = shift->_this;
my ($modname, @disposables) = @_;
$modname = ref($modname) || $modname;
return unless $this->{mod_disposables}->{$modname};
my $arr = $this->{mod_disposables}->{$modname};
@$arr = grep { defined $_ } @$arr;
my %targets = map { refaddr($_) => 1 } @disposables;
@$arr = grep { !$targets{refaddr($_)} } @$arr;
if (!@$arr) {
delete $this->{mod_disposables}->{$modname};
}
$this;
}
sub _destruct_module_object {
my $this = shift->_this;
my $module = shift; # module instance or module name
my $modname = ref($module) || $module;
my $arr = delete $this->{mod_disposables}->{$modname};
return unless $arr;
foreach my $object (grep { defined $_ } @$arr) {
eval {
$object->module_destruct($module);
}; if ($@) {
$this->_runloop->notify_error($@);
}
}
$this;
}
sub update_modules {
# +で指定されたモジュール一覧を読み、modulesを再構成する。
# 必要なモジュールがまだロードされていなければロードし、
# もはや必要とされなくなったモジュールがあれば破棄する。
# 二度目以降、つまり起動後にこれが実行された場合は
# モジュールのロードや破棄に関して成功時にもメッセージを出力する。
# check_module_update => 1 を指定するとモジュール自体の更新もチェックする。
my $this = shift->_this;
my %mode = @_; # check_module_update => 1
my $mod_configs = $this->_conf->get_list_of_modules;
my (%new,%deleted,%conf_changed,%not_changed);
# (modname => old or new config)
my (%mod_changed);
# (modname => depth)
my $show_msg = sub {
if ($this->{updated_once}) {
# 過去に一度以上、update_modulesが実行された事がある。
return sub {
$this->_runloop->notify_msg( $_[0] );
};
}
else {
# 起動時なので何もしない無名関数を設定。
return sub {};
}
}->();
# $this->{modules}をモジュール名 => Moduleのテーブルに。
my %loaded_mods = map {
ref($_) => $_;
} @{$this->{modules}};
my %loaded_mods_idx;
for (my $i = 0; $i < @{$this->{modules}}; $i++) {
$loaded_mods_idx{ref $this->{modules}->[$i]} = $i;
}
my %new_mod_configs = map {
$_->block_name => $_;
} @$mod_configs;
my ($new,$deleted,$changed,$not_changed) = $this->_check_difference($mod_configs);
$new{$_->block_name} = $_ for @$new;
$deleted{$_->block_name} = $_ for @$deleted;
$conf_changed{$_->block_name} = $_ for @$changed;
$not_changed{$_->block_name} = $_ for @$not_changed;
if ($mode{check_module_update}) {
my $check_used;
$check_used = sub {
my ($modname, $depth) = @_;
++$depth;
no strict 'refs';
# このモジュールに%USEDは定義されているか?
my $USED = \%{$modname.'::USED'};
return unless defined $USED;
# USEDの全ての要素に対し再帰的にマークを付ける。
foreach my $used_elem (keys %$USED) {
if (!defined $mod_changed{$used_elem} ||
$mod_changed{$used_elem} < $depth) {
$mod_changed{$used_elem} = $depth;
$show_msg->("$used_elem will be reloaded because of ".
"modification of $modname");
$check_used->($used_elem, $depth);
}
}
};
my $check = sub {
my ($modname,$timestamp) = @_;
# 既に更新されたものとしてマークされていれば抜ける。
return if $mod_changed{$modname};
if ($this->check_timestamp_update($modname, $timestamp)) {
# 更新されている。少なくともこのモジュールはリロードされる。
$mod_changed{$modname} = 1;
$show_msg->("$modname has been modified. It will be reloaded.");
$check_used->($modname, 1);
}
};
while (my ($modname,$timestamp) = each %{$this->{mod_timestamps}}) {
$check->($modname,$timestamp);
}
}
# 正規化
foreach my $modname (keys %mod_changed) {
delete $not_changed{$modname};
delete $new{$modname};
delete $conf_changed{$modname};
}
foreach my $modname (grep { !$loaded_mods{$_} } keys %conf_changed) {
$new{$modname} ||= $conf_changed{$modname};
delete $conf_changed{$modname};
}
my %mod_rebuilt_mods;
# モジュール再読み込み。
if (%mod_changed) {
my @mods_load_order = map { $_->[0] }
sort { $a->[1] <=> $b->[1] }
map { [$_, $mod_changed{$_}]; }
keys %mod_changed;
# 先に destruct して回る
foreach my $modname (reverse @mods_load_order) {
my $mod = $loaded_mods{$modname};
if ($mod) {
eval {
$mod->destruct;
}; if ($@) {
$this->_runloop->notify_error($@);
}
$this->_destruct_module_object($mod);
} else {
eval {
$modname->destruct;
}; if ($@ && $modname->can('destruct')) {
$this->_runloop->notify_error($@);
}
$this->_destruct_module_object($modname);
}
}
# マークされたモジュールをリロードするが、それが$loaded_mods_idxに登録されていたら
# インスタンスを作り直す。
foreach my $modname (@mods_load_order) {
my $idx = $loaded_mods_idx{$modname};
if (defined $idx) {
my $conf_block = $new_mod_configs{$modname};
# message_io_hook が定義されているモジュールが死ぬと怖いので
# とりあえず undef を入れて無視させる。
$this->{modules}->[$idx] = undef;
$this->_unload($modname);
$mod_rebuilt_mods{$modname} = $this->_load($conf_block);
# _unload でブラックリストから消えるから大丈夫だと思うが、一応。
$this->remove_from_blacklist($modname);
}
else {
# アンロード後、use。
no strict 'refs';
# その時、%USEDを保存する。@USEは保存しない。
my %USED = %{$modname.'::USED'};
$this->_unload($modname);
eval qq{
use $modname;
}; if ($@) {
$this->_runloop->notify_error($@);
}
%{$modname.'::USED'} = %USED;
}
}
}
# 新たに追加されたモジュール、作り直されたモジュール、変更されなかったモジュールを
# モジュール名 => Moduleの形式でテーブルにする。
my $modname;
my %new_mods = map {
# 新たに追加されたモジュール。
$show_msg->("Module ".$_->block_name." will be loaded newly.");
$this->remove_from_blacklist($_->block_name);
$_->block_name => $this->_load($_);
} values %new;
my %conf_rebuilt_mods = map {
# 作り直すモジュール。
$modname = $_->block_name;
$show_msg->("Configuration of the module ".$modname." has been changed. It will be restarted.");
$this->remove_from_blacklist($modname);
$_->block_name => $this->_config_reload($loaded_mods{$modname}, $_);
} values %conf_changed;
my %not_changed_mods = map {
# 設定変更されなかったモジュール。
# %loaded_modsに実物が入っている。
$modname = $_->block_name;
if (!defined $loaded_mods{$modname} &&
$this->check_timestamp_update($modname)) {
# ロードできてなくて、なおかつアップデートされていたらロードしてみる。
$show_msg->("$modname has been modified. It will be reloaded.");
$this->remove_from_blacklist($modname);
$modname => $this->_load($_);
} else {
$modname => $loaded_mods{$modname};
}
} values %not_changed;
# $mod_configsに書かれた順序に従い、$this->{modules}を再構成。
# 但しロードに失敗したモジュールはnullになっているので除外。
@{$this->{modules}} = grep { defined $_ } map {
$not_changed_mods{$_} || $mod_rebuilt_mods{$_} ||
$conf_rebuilt_mods{$_} || $new_mods{$_};
} map { $_->block_name } @$mod_configs;
foreach (keys %deleted) {
# 削除されたモジュール。
# %loaded_modsに古い物が入っている場合は破棄した上、アンロードする。
my $modname = $_;
my $mod = $loaded_mods{$modname};
$show_msg->("Module ".$modname." will be unloaded.");
if (defined $mod) {
eval {
$mod->destruct;
}; if ($@) {
$this->_runloop->notify_error($@);
}
$this->_destruct_module_object($mod);
}
$this->_unload($_);
}
if (%deleted || %mod_changed) {
# 何か一つでもアンロードしたモジュールがあれば、最早参照されなくなったモジュールが
# あるかどうかを調べ、一つでもあればmark and sweepを実行。
my $fixed = $this->fix_USED_fields;
if ($fixed) {
# gc の前に一度キャッシュクリア
$this->_clear_module_cache;
$this->gc;
}
}
$this->_clear_module_cache;
$this->{updated_once} = 1;
$this;
}
sub _check_difference {
# 前回の_check_difference実行時から、現在のモジュール設定がどのように変化したか。
# 戻り値は(<新規追加>,<削除>,<変更>,<無変更>) それぞれARRAY<Configuration::Block>への参照である。
# 新規追加は新しいConfiguration::Blockが、変更と削除にはそれぞれ古いConfiguration::Blockが返される。
my ($this,$mod_configs) = @_;
# まずは新たに登場したモジュールと、設定を変更されたモジュールを探す。
my @new;
my @changed;
my @not_changed;
foreach my $conf (@$mod_configs) {
my $old_conf = $this->{mod_configs}->{$conf->block_name};
if (defined $old_conf) {
# このモジュールは既に定義されているが、変更を加えられてはいないか?
if ($old_conf->equals($conf)) {
# 変わってない。
push @not_changed,$conf;
}
else {
# 内容が変わった。
push @changed,$old_conf;
}
}
else {
# 初めて見るモジュールだ。
push @new,$conf;
}
}
# 削除されたモジュールを探す。
# 上のループと纏める事も出来るが、コードが分かりにくくなる。
my %names_of_old_modules
= map { $_ => 1 } keys %{$this->{mod_configs}};
foreach my $conf (@$mod_configs) {
delete $names_of_old_modules{$conf->block_name};
}
my @deleted = map {
$this->{mod_configs}->{$_};
} keys %names_of_old_modules;
# $this->{mod_configs}に新たな値を設定。
%{$this->{mod_configs}} =
map { $_->block_name => $_ } @$mod_configs;
# 完了
return (\@new,\@deleted,\@changed,\@not_changed);
}
sub reload_modules_if_modified {
# コード自体が更新されているモジュールがあれば、それを一旦アンロードしてロードし直す。
# インスタンスも当然作り直す。
my $this = shift;
$this->update_modules(check_module_update => 1);
}
sub _load {
# モジュールをuseしてインスタンスを生成して返す。
# 失敗したらundefを返す。
my ($this,$mod_conf) = @_;
my $mod_name = $mod_conf->block_name;
# use
utils->do_with_errmsg("module load: $mod_name", sub {
eval "use $mod_name;";
});
if ($@) {
$this->_runloop->notify_error(
"Couldn't load module $mod_name because of exception.\n$@");
return undef;
}
# モジュール名をファイル名に変換して%INCを検査。
# module/で始まっていなければエラー。
#(my $mod_filename = $mod_name) =~ s|::|/|g;
#my $filepath = $INC{$mod_filename.'.pm'};
#if ($filepath !~ m|^module/|) {
# $this->_runloop->notify_error(
# "Class $mod_name exists outside the module directory.\n$filepath\n");
# next;
#}
# このモジュールは本当にModuleのサブクラスか?
# 何故かUNIVERSAL::isaは嘘を付く事があるので自力で@ISA内を検索する。
# 5.6.0 for darwinではモジュールをリロードすると嘘を付く。
no strict 'refs';
my $is_inherit_ok = sub {
return 1 if UNIVERSAL::isa($mod_name,'Module');
my @isa = @{$mod_name.'::ISA'};
foreach (@isa) {
if ($_ eq 'Module') {
::debug_printmsg('UNIVERSAL::isa tell a lie...');
return 1;
}
}
undef;
};
unless ($is_inherit_ok->()) {
$this->_runloop->notify_error(
"Class $mod_name doesn't inherit class Module.");
return undef;
}
# インスタンス生成
my $mod;
eval {
$mod = $mod_name->new($this->_runloop);
}; if ($@) {
$this->_runloop->notify_error(
"Couldn't instantiate module $mod_name because of exception.\n$@");
return undef;
}
# このインスタンスは本当に$mod_nameそのものか?
if (ref($mod) ne $mod_name) {
$this->_runloop->notify_error(
"A thing ".$mod_name."->new returned was not a instance of $mod_name.");
return undef;
}
# timestampに登録
$this->timestamp($mod_name,time);
return $mod;
}
sub _config_reload {
# モジュールをuseしてインスタンスを生成して返す。
# 失敗したらundefを返す。
my ($this,$oldmod,$mod_oldconf) = @_;
my $modname = ref($oldmod);
# インスタンス生成
my $mod;
eval {
$mod = $oldmod->config_reload($mod_oldconf);
}; if ($@) {
$this->_runloop->notify_error(
"Couldn't reload module config $modname because of exception.\n$@");
# 念のため古いやつは destruct しておく。エラーは無視。
eval { $oldmod->destruct };
$this->_destruct_module_object($oldmod);
return undef;
}
# このインスタンスは本当に$mod_nameそのものか?
if (ref($mod) ne $modname) {
$this->_runloop->notify_error(
"A thing ".$modname."->new returned was not a instance of $modname.");
# 念のため古いやつは destruct しておく。エラーは無視。
eval { $oldmod->destruct };
$this->_destruct_module_object($oldmod);
return undef;
}
return $mod;
}
sub _unload {
# 指定されたモジュールを削除する。
# モジュール名の代わりにConfiguration::Blockを渡しても良い。
my ($this,$modname) = @_;
$modname = $modname->block_name if UNIVERSAL::isa($modname,'Configuration::Block');
# このモジュールのuse時刻を消去
delete $this->{mod_timestamps}->{$modname};
# このモジュールのブラックリストを消去。
$this->remove_from_blacklist($modname);
# このモジュールのファイル名を求めておく。
(my $mod_filename = $modname) =~ s|::|/|g;
$mod_filename .= '.pm';
# シンボルテーブルを削除してしまえば変数やサブルーチンにアクセス出来なくなる。
use Symbol ();
# サブパッケージを消す挙動は危険かもしれないのでとりあえず退避。
# (%INC のこともあるし)
# ただし、サブパッケージの性格上メインパッケージなしに動く保証はどこにもない。
no strict;
my(%stab) = %{$modname.'::'};
my %shelter = map {
if (/::$/ &&
!/^(SUPER)::$/ && !/^::(ISA|ISA::CACHE)::$/) {
($_, $stab{$_});
} else {
();
}
} keys(%stab);
Symbol::delete_package($modname);
# 隔離しておいたものを戻す。
%{$modname.'::'} = ( %shelter, %{$modname.'::'} );
# %INCからも削除
delete $INC{$mod_filename};
}
sub fix_USED_fields {
my $this = shift;
my $result;
no strict 'refs';
foreach my $modname (keys %{$this->{mod_timestamps}}) {
my $USED = \%{$modname.'::USED'};
if (defined $USED) {
my @mods_refer_me = keys %$USED;
foreach my $mod_refs_me (@mods_refer_me) {
# このモジュールの@USEには本当に$modnameが入っているか?
my $USE = \@{$mod_refs_me.'::USE'};
my $refers_actually = sub {
if (defined $USE) {
foreach (@$USE) {
if ($_ eq $modname) {
return 1;
}
}
}
undef;
}->();
unless ($refers_actually) {
# 実際には参照されていなかった。
delete $USED->{$mod_refs_me};
$result = 1;
}
}
}
}
$result;
}
sub gc {
# $this->{modules}から到達可能でないサブモジュールを全てアンロードする。
my $this = shift;
my %all_mods = %{$this->{mod_timestamps}}; # コピーする
# %all_modsの要素で値が空になっている部分が、マークされた個所。
my $trace;
no strict 'refs';
$trace = sub {
my $modname = shift;
# 既にマークされているか、もしくはモジュールが存在しなければ抜ける。
my $val = $all_mods{$modname};
if (!defined($val) || $val eq '') {
return;
}
else {
# このモジュールをマークする
$all_mods{$modname} = '';
# このモジュールに@USEが定義されていたら、
# その全てのモジュールについて再帰的にトレース。
my $USE = \@{$modname.'::USE'};
if (defined $USE) {
foreach (@$USE) {
$trace->($_);
}
}
}
};
for my $mod (@{$this->{modules}}) {
my $modname = ref $mod;
$trace->($modname);
}
# マークされなかったサブモジュールは到達不可能なのでアンロードする。
while (my ($key,$value) = each %all_mods) {
if ($value ne '') {
eval {
$key->destruct;
};
$this->_destruct_module_object($key);
$this->_runloop->notify_msg(
"Submodule $key is no longer required. It will be unloaded.");
$this->_unload($key);
}
}
}
1;
|