ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/cf.pm
(Generate patch)

Comparing deliantra/server/lib/cf.pm (file contents):
Revision 1.538 by root, Tue May 4 21:45:43 2010 UTC vs.
Revision 1.551 by root, Sun May 16 13:48:07 2010 UTC

20# The authors can be reached via e-mail to <support@deliantra.net> 20# The authors can be reached via e-mail to <support@deliantra.net>
21# 21#
22 22
23package cf; 23package cf;
24 24
25use 5.10.0; 25use common::sense;
26use utf8;
27use strict qw(vars subs);
28 26
29use Symbol; 27use Symbol;
30use List::Util; 28use List::Util;
31use Socket; 29use Socket;
32use EV; 30use EV;
78# strictly for debugging 76# strictly for debugging
79$SIG{QUIT} = sub { Carp::cluck "SIGQUIT" }; 77$SIG{QUIT} = sub { Carp::cluck "SIGQUIT" };
80 78
81sub WF_AUTOCANCEL () { 1 } # automatically cancel this watcher on reload 79sub WF_AUTOCANCEL () { 1 } # automatically cancel this watcher on reload
82 80
81our @ORIG_INC;
82
83our %COMMAND = (); 83our %COMMAND = ();
84our %COMMAND_TIME = (); 84our %COMMAND_TIME = ();
85 85
86our @EXTS = (); # list of extension package names 86our @EXTS = (); # list of extension package names
87our %EXTCMD = (); 87our %EXTCMD = ();
124our $BDB_DEADLOCK_WATCHER; 124our $BDB_DEADLOCK_WATCHER;
125our $BDB_CHECKPOINT_WATCHER; 125our $BDB_CHECKPOINT_WATCHER;
126our $BDB_TRICKLE_WATCHER; 126our $BDB_TRICKLE_WATCHER;
127our $DB_ENV; 127our $DB_ENV;
128 128
129our @EXTRA_MODULES = qw(pod match mapscript); 129our @EXTRA_MODULES = qw(pod match mapscript incloader);
130 130
131our %CFG; 131our %CFG;
132 132
133our $UPTIME; $UPTIME ||= time; 133our $UPTIME; $UPTIME ||= time;
134our $RUNTIME; 134our $RUNTIME;
233from wherever your confdir points to. 233from wherever your confdir points to.
234 234
235=item cf::wait_for_tick, cf::wait_for_tick_begin 235=item cf::wait_for_tick, cf::wait_for_tick_begin
236 236
237These are functions that inhibit the current coroutine one tick. cf::wait_for_tick_begin only 237These are functions that inhibit the current coroutine one tick. cf::wait_for_tick_begin only
238returns directly I<after> the tick processing (and consequently, can only wake one process 238returns directly I<after> the tick processing (and consequently, can only wake one thread
239per tick), while cf::wait_for_tick wakes up all waiters after tick processing. 239per tick), while cf::wait_for_tick wakes up all waiters after tick processing.
240
241=cut
242
243sub wait_for_tick();
244sub wait_for_tick_begin();
240 245
241=item @cf::INVOKE_RESULTS 246=item @cf::INVOKE_RESULTS
242 247
243This array contains the results of the last C<invoke ()> call. When 248This array contains the results of the last C<invoke ()> call. When
244C<cf::override> is called C<@cf::INVOKE_RESULTS> is set to the parameters of 249C<cf::override> is called C<@cf::INVOKE_RESULTS> is set to the parameters of
352our $json_coder = JSON::XS->new->utf8->max_size (1e6); # accept ~1mb max 357our $json_coder = JSON::XS->new->utf8->max_size (1e6); # accept ~1mb max
353 358
354sub encode_json($) { $json_coder->encode ($_[0]) } 359sub encode_json($) { $json_coder->encode ($_[0]) }
355sub decode_json($) { $json_coder->decode ($_[0]) } 360sub decode_json($) { $json_coder->decode ($_[0]) }
356 361
362=item $ref = cf::yaml_load $scalar
363
364Same as YAML::XS::Load, but doesn't leak, because it forks (and thus blocks).
365
366=cut
367
368sub fork_call(&@);
369
370sub yaml_load($) {
371 fork_call { YAML::XS::Load $_[0] } @_
372}
373
357=item cf::post_init { BLOCK } 374=item cf::post_init { BLOCK }
358 375
359Execute the given codeblock, I<after> all extensions have been (re-)loaded, 376Execute the given codeblock, I<after> all extensions have been (re-)loaded,
360but I<before> the server starts ticking again. 377but I<before> the server starts ticking again.
361 378
362The cdoeblock will have a single boolean argument to indicate whether this 379The codeblock will have a single boolean argument to indicate whether this
363is a reload or not. 380is a reload or not.
364 381
365=cut 382=cut
366 383
367sub post_init(&) { 384sub post_init(&) {
368 push @POST_INIT, shift; 385 push @POST_INIT, shift;
386}
387
388sub _post_init {
389 trace "running post_init jobs";
390
391 # run them in parallel...
392
393 my @join;
394
395 while () {
396 push @join, map &Coro::async ($_, 0), @POST_INIT;
397 @POST_INIT = ();
398
399 @join or last;
400
401 (pop @join)->join;
402 }
369} 403}
370 404
371=item cf::lock_wait $string 405=item cf::lock_wait $string
372 406
373Wait until the given lock is available. See cf::lock_acquire. 407Wait until the given lock is available. See cf::lock_acquire.
578 $EXT_CORO{$coro+0} = $coro; 612 $EXT_CORO{$coro+0} = $coro;
579 613
580 $coro 614 $coro
581} 615}
582 616
583=item fork_call { }, $args 617=item fork_call { }, @args
584 618
585Executes the given code block with the given arguments in a seperate 619Executes the given code block with the given arguments in a seperate
586process, returning the results. Everything must be serialisable with 620process, returning the results. Everything must be serialisable with
587Coro::Storable. May, of course, block. Note that the executed sub may 621Coro::Storable. May, of course, block. Note that the executed sub may
588never block itself or use any form of event handling. 622never block itself or use any form of event handling.
589 623
590=cut 624=cut
591 625
626sub post_fork {
627 reset_signals;
628}
629
592sub fork_call(&@) { 630sub fork_call(&@) {
593 my ($cb, @args) = @_; 631 my ($cb, @args) = @_;
594 632
595 # we seemingly have to make a local copy of the whole thing, 633 # we seemingly have to make a local copy of the whole thing,
596 # otherwise perl prematurely frees the stuff :/ 634 # otherwise perl prematurely frees the stuff :/
597 # TODO: investigate and fix (likely this will be rather laborious) 635 # TODO: investigate and fix (likely this will be rather laborious)
598 636
599 my @res = Coro::Util::fork_eval { 637 my @res = Coro::Util::fork_eval {
600 reset_signals; 638 cf::post_fork;
601 &$cb 639 &$cb
602 }, @args; 640 } @args;
603 641
604 wantarray ? @res : $res[-1] 642 wantarray ? @res : $res[-1]
605} 643}
606 644
607sub objinfo { 645sub objinfo {
1451 1489
1452 my $active = eval $v->{source}; 1490 my $active = eval $v->{source};
1453 1491
1454 if (length $@) { 1492 if (length $@) {
1455 error "$v->{path}: $@\n"; 1493 error "$v->{path}: $@\n";
1456 undef $@; # work around perl 5.10.0 utf-8 caching bug
1457 1494
1458 cf::cleanup "mandatory extension '$k' failed to load, exiting." 1495 cf::cleanup "mandatory extension '$k' failed to load, exiting."
1459 if exists $v->{meta}{mandatory}; 1496 if exists $v->{meta}{mandatory};
1460 1497
1461 warn "$v->{base}: optional extension cannot be loaded, skipping.\n"; 1498 warn "$v->{base}: optional extension cannot be loaded, skipping.\n";
1642 my $name = $pl->ob->name; 1679 my $name = $pl->ob->name;
1643 1680
1644 $pl->{deny_save} = 1; 1681 $pl->{deny_save} = 1;
1645 $pl->password ("*"); # this should lock out the player until we have nuked the dir 1682 $pl->password ("*"); # this should lock out the player until we have nuked the dir
1646 1683
1647 $pl->invoke (cf::EVENT_PLAYER_LOGOUT, 1) if $pl->active; 1684 $pl->invoke (cf::EVENT_PLAYER_LOGOUT, 1) if $pl->ns;
1648 $pl->deactivate; 1685 $pl->deactivate;
1686
1649 my $killer = cf::arch::get "killer_quit"; $pl->killer ($killer); $killer->destroy; 1687 my $killer = cf::arch::get "killer_quit"; $pl->killer ($killer); $killer->destroy;
1650 $pl->invoke (cf::EVENT_PLAYER_QUIT); 1688 $pl->invoke (cf::EVENT_PLAYER_QUIT) if $pl->ns;
1689 ext::highscore::check ($pl->ob);
1690
1651 $pl->ns->destroy if $pl->ns; 1691 $pl->ns->destroy if $pl->ns;
1652 1692
1653 my $path = playerdir $pl; 1693 my $path = playerdir $pl;
1654 my $temp = "$path~$cf::RUNTIME~deleting~"; 1694 my $temp = "$path~$cf::RUNTIME~deleting~";
1655 aio_rename $path, $temp; 1695 aio_rename $path, $temp;
1849 1889
1850sub register { 1890sub register {
1851 my (undef, $regex, $prio) = @_; 1891 my (undef, $regex, $prio) = @_;
1852 my $pkg = caller; 1892 my $pkg = caller;
1853 1893
1854 no strict;
1855 push @{"$pkg\::ISA"}, __PACKAGE__; 1894 push @{"$pkg\::ISA"}, __PACKAGE__;
1856 1895
1857 $EXT_MAP{$pkg} = [$prio, qr<$regex>]; 1896 $EXT_MAP{$pkg} = [$prio, qr<$regex>];
1858} 1897}
1859 1898
1871} 1910}
1872 1911
1873sub normalise { 1912sub normalise {
1874 my ($path, $base) = @_; 1913 my ($path, $base) = @_;
1875 1914
1876 $path = "$path"; # make sure its a string 1915 $path = "$path"; # make sure it's a string
1877 1916
1878 $path =~ s/\.map$//; 1917 $path =~ s/\.map$//;
1879 1918
1880 # map plan: 1919 # map plan:
1881 # 1920 #
1896 $base =~ s{[^/]+/?$}{}; 1935 $base =~ s{[^/]+/?$}{};
1897 $path = "$base/$path"; 1936 $path = "$base/$path";
1898 } 1937 }
1899 1938
1900 for ($path) { 1939 for ($path) {
1901 redo if s{//}{/};
1902 redo if s{/\.?/}{/}; 1940 redo if s{/\.?/}{/};
1903 redo if s{/[^/]+/\.\./}{/}; 1941 redo if s{/[^/]+/\.\./}{/};
1904 } 1942 }
1905 1943
1906 $path 1944 $path
1920 $self->init; # pass $1 etc. 1958 $self->init; # pass $1 etc.
1921 return $self; 1959 return $self;
1922 } 1960 }
1923 } 1961 }
1924 1962
1925 Carp::cluck "unable to resolve path '$path' (base '$base')."; 1963 Carp::cluck "unable to resolve path '$path' (base '$base')";
1926 () 1964 ()
1927} 1965}
1928 1966
1929sub init { 1967sub init {
1930 my ($self) = @_; 1968 my ($self) = @_;
2052} 2090}
2053 2091
2054sub find; 2092sub find;
2055sub find { 2093sub find {
2056 my ($path, $origin) = @_; 2094 my ($path, $origin) = @_;
2095
2096 cf::cede_to_tick;
2057 2097
2058 $path = normalise $path, $origin && $origin->path; 2098 $path = normalise $path, $origin && $origin->path;
2059 2099
2060 my $guard1 = cf::lock_acquire "map_data:$path";#d#remove 2100 my $guard1 = cf::lock_acquire "map_data:$path";#d#remove
2061 my $guard2 = cf::lock_acquire "map_find:$path"; 2101 my $guard2 = cf::lock_acquire "map_find:$path";
3274 decrease split destroy change_exp value msg lore send_msg)], 3314 decrease split destroy change_exp value msg lore send_msg)],
3275 ["cf::object::player" => qw(player)], 3315 ["cf::object::player" => qw(player)],
3276 ["cf::player" => qw(peaceful send_msg)], 3316 ["cf::player" => qw(peaceful send_msg)],
3277 ["cf::map" => qw(trigger)], 3317 ["cf::map" => qw(trigger)],
3278) { 3318) {
3279 no strict 'refs';
3280 my ($pkg, @funs) = @$_; 3319 my ($pkg, @funs) = @$_;
3281 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"}) 3320 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
3282 for @funs; 3321 for @funs;
3283} 3322}
3284 3323
3371 3410
3372 my $enc = JSON::XS->new->utf8->canonical->relaxed; 3411 my $enc = JSON::XS->new->utf8->canonical->relaxed;
3373 3412
3374 trace "loading facedata from $path\n"; 3413 trace "loading facedata from $path\n";
3375 3414
3376 my $facedata;
3377 0 < aio_load $path, $facedata 3415 0 < aio_load $path, my $facedata
3378 or die "$path: $!"; 3416 or die "$path: $!";
3379 3417
3380 $facedata = Coro::Storable::thaw $facedata; 3418 $facedata = Coro::Storable::thaw $facedata;
3381 3419
3382 $facedata->{version} == 2 3420 $facedata->{version} == 2
3526} 3564}
3527 3565
3528sub reload_resources { 3566sub reload_resources {
3529 trace "reloading resource files...\n"; 3567 trace "reloading resource files...\n";
3530 3568
3569 reload_exp_table;
3570 reload_materials;
3531 reload_facedata; 3571 reload_facedata;
3532 reload_sound; 3572 reload_sound;
3533 reload_archetypes; 3573 reload_archetypes;
3534 reload_regions; 3574 reload_regions;
3535 reload_treasures; 3575 reload_treasures;
3538} 3578}
3539 3579
3540sub reload_config { 3580sub reload_config {
3541 trace "reloading config file...\n"; 3581 trace "reloading config file...\n";
3542 3582
3543 open my $fh, "<:utf8", "$CONFDIR/config" 3583 0 < aio_load "$CONFDIR/config", my $config
3544 or return; 3584 or die "$CONFDIR/config: $!";
3545 3585
3546 local $/; 3586 utf8::decode $config;
3547 *CFG = YAML::XS::Load scalar <$fh>; 3587 *CFG = yaml_load $config;
3548 3588
3549 $EMERGENCY_POSITION = $CFG{emergency_position} || ["/world/world_104_115", 49, 38]; 3589 $EMERGENCY_POSITION = $CFG{emergency_position} || ["/world/world_104_115", 49, 38];
3550 3590
3551 $cf::map::MAX_RESET = $CFG{map_max_reset} if exists $CFG{map_max_reset}; 3591 $cf::map::MAX_RESET = $CFG{map_max_reset} if exists $CFG{map_max_reset};
3552 $cf::map::DEFAULT_RESET = $CFG{map_default_reset} if exists $CFG{map_default_reset}; 3592 $cf::map::DEFAULT_RESET = $CFG{map_default_reset} if exists $CFG{map_default_reset};
3556 $CFG{mlockall} ? eval "mlockall()" : eval "munlockall()" 3596 $CFG{mlockall} ? eval "mlockall()" : eval "munlockall()"
3557 and die "WARNING: m(un)lockall failed: $!\n"; 3597 and die "WARNING: m(un)lockall failed: $!\n";
3558 }; 3598 };
3559 warn $@ if $@; 3599 warn $@ if $@;
3560 } 3600 }
3561
3562 trace "finished reloading resource files\n";
3563} 3601}
3564 3602
3565sub pidfile() { 3603sub pidfile() {
3566 sysopen my $fh, $PIDFILE, O_RDWR | O_CREAT 3604 sysopen my $fh, $PIDFILE, O_RDWR | O_CREAT
3567 or die "$PIDFILE: $!"; 3605 or die "$PIDFILE: $!";
3592 3630
3593sub main { 3631sub main {
3594 cf::init_globals; # initialise logging 3632 cf::init_globals; # initialise logging
3595 3633
3596 LOG llevInfo, "Welcome to Deliantra, v" . VERSION; 3634 LOG llevInfo, "Welcome to Deliantra, v" . VERSION;
3597 LOG llevInfo, "Copyright (C) 2005-2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team."; 3635 LOG llevInfo, "Copyright (C) 2005-2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team.";
3598 LOG llevInfo, "Copyright (C) 1994 Mark Wedel."; 3636 LOG llevInfo, "Copyright (C) 1994 Mark Wedel.";
3599 LOG llevInfo, "Copyright (C) 1992 Frank Tore Johansen."; 3637 LOG llevInfo, "Copyright (C) 1992 Frank Tore Johansen.";
3600 3638
3601 $Coro::current->prio (Coro::PRIO_MAX); # give the main loop max. priority 3639 $Coro::current->prio (Coro::PRIO_MAX); # give the main loop max. priority
3602 3640
3610 }; 3648 };
3611 3649
3612 evthread_start IO::AIO::poll_fileno; 3650 evthread_start IO::AIO::poll_fileno;
3613 3651
3614 cf::sync_job { 3652 cf::sync_job {
3615 cf::init_experience; 3653 cf::incloader::init ();
3654
3616 cf::init_anim; 3655 cf::init_anim;
3617 cf::init_attackmess; 3656 cf::init_attackmess;
3618 cf::init_dynamic; 3657 cf::init_dynamic;
3619 3658
3620 cf::load_settings; 3659 cf::load_settings;
3621 cf::load_materials;
3622 3660
3623 reload_resources; 3661 reload_resources;
3624 reload_config; 3662 reload_config;
3625 db_init; 3663 db_init;
3626 3664
3638 3676
3639 # no (long-running) fork's whatsoever before this point(!) 3677 # no (long-running) fork's whatsoever before this point(!)
3640 use POSIX (); 3678 use POSIX ();
3641 POSIX::close delete $ENV{LOCKUTIL_LOCK_FD} if exists $ENV{LOCKUTIL_LOCK_FD}; 3679 POSIX::close delete $ENV{LOCKUTIL_LOCK_FD} if exists $ENV{LOCKUTIL_LOCK_FD};
3642 3680
3643 (pop @POST_INIT)->(0) while @POST_INIT; 3681 cf::_post_init 0;
3644 }; 3682 };
3645 3683
3646 cf::object::thawer::errors_are_fatal 0; 3684 cf::object::thawer::errors_are_fatal 0;
3647 info "parse errors in files are no longer fatal from this point on.\n"; 3685 info "parse errors in files are no longer fatal from this point on.\n";
3648 3686
3687 my $free_main; $free_main = EV::idle sub {
3688 undef $free_main;
3689 undef &main; # free gobs of memory :)
3690 };
3691
3649 main_loop; 3692 goto &main_loop;
3650} 3693}
3651 3694
3652############################################################################# 3695#############################################################################
3653# initialisation and cleanup 3696# initialisation and cleanup
3654 3697
3855 } 3898 }
3856} 3899}
3857 3900
3858sub do_reload_perl() { 3901sub do_reload_perl() {
3859 # can/must only be called in main 3902 # can/must only be called in main
3860 if (in_main) { 3903 unless (in_main) {
3861 error "can only reload from main coroutine"; 3904 error "can only reload from main coroutine";
3862 return; 3905 return;
3863 } 3906 }
3864 3907
3865 return if $RELOAD++; 3908 return if $RELOAD++;
3866 3909
3867 my $t1 = AE::time; 3910 my $t1 = AE::time;
3868 3911
3869 while ($RELOAD) { 3912 while ($RELOAD) {
3913 cf::get_slot 0.1, -1, "reload_perl";
3870 info "reloading..."; 3914 info "perl_reload: reloading...";
3871 3915
3872 trace "entering sync_job"; 3916 trace "perl_reload: entering sync_job";
3873 3917
3874 cf::sync_job { 3918 cf::sync_job {
3875 cf::emergency_save; 3919 #cf::emergency_save;
3876 3920
3877 trace "cancelling all extension coros"; 3921 trace "perl_reload: cancelling all extension coros";
3878 $_->cancel for values %EXT_CORO; 3922 $_->cancel for values %EXT_CORO;
3879 %EXT_CORO = (); 3923 %EXT_CORO = ();
3880 3924
3881 trace "removing commands"; 3925 trace "perl_reload: removing commands";
3882 %COMMAND = (); 3926 %COMMAND = ();
3883 3927
3884 trace "removing ext/exti commands"; 3928 trace "perl_reload: removing ext/exti commands";
3885 %EXTCMD = (); 3929 %EXTCMD = ();
3886 %EXTICMD = (); 3930 %EXTICMD = ();
3887 3931
3888 trace "unloading/nuking all extensions"; 3932 trace "perl_reload: unloading/nuking all extensions";
3889 for my $pkg (@EXTS) { 3933 for my $pkg (@EXTS) {
3890 trace "... unloading $pkg"; 3934 trace "... unloading $pkg";
3891 3935
3892 if (my $cb = $pkg->can ("unload")) { 3936 if (my $cb = $pkg->can ("unload")) {
3893 eval { 3937 eval {
3898 3942
3899 trace "... clearing $pkg"; 3943 trace "... clearing $pkg";
3900 clear_package $pkg; 3944 clear_package $pkg;
3901 } 3945 }
3902 3946
3903 trace "unloading all perl modules loaded from $LIBDIR"; 3947 trace "perl_reload: unloading all perl modules loaded from $LIBDIR";
3904 while (my ($k, $v) = each %INC) { 3948 while (my ($k, $v) = each %INC) {
3905 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/; 3949 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
3906 3950
3907 trace "... unloading $k"; 3951 trace "... unloading $k";
3908 delete $INC{$k}; 3952 delete $INC{$k};
3915 } 3959 }
3916 3960
3917 clear_package $k; 3961 clear_package $k;
3918 } 3962 }
3919 3963
3920 trace "getting rid of safe::, as good as possible"; 3964 trace "perl_reload: getting rid of safe::, as good as possible";
3921 clear_package "safe::$_" 3965 clear_package "safe::$_"
3922 for qw(cf::attachable cf::object cf::object::player cf::client cf::player cf::map cf::party cf::region); 3966 for qw(cf::attachable cf::object cf::object::player cf::client cf::player cf::map cf::party cf::region);
3923 3967
3924 trace "unloading cf.pm \"a bit\""; 3968 trace "perl_reload: unloading cf.pm \"a bit\"";
3925 delete $INC{"cf.pm"}; 3969 delete $INC{"cf.pm"};
3926 delete $INC{"cf/$_.pm"} for @EXTRA_MODULES; 3970 delete $INC{"cf/$_.pm"} for @EXTRA_MODULES;
3927 3971
3928 # don't, removes xs symbols, too, 3972 # don't, removes xs symbols, too,
3929 # and global variables created in xs 3973 # and global variables created in xs
3930 #clear_package __PACKAGE__; 3974 #clear_package __PACKAGE__;
3931 3975
3932 info "unload completed, starting to reload now"; 3976 info "perl_reload: unload completed, starting to reload now";
3933 3977
3934 trace "reloading cf.pm"; 3978 trace "perl_reload: reloading cf.pm";
3935 require cf; 3979 require cf;
3936 cf::_connect_to_perl_1; 3980 cf::_connect_to_perl_1;
3937 3981
3938 trace "loading config and database again"; 3982 trace "perl_reload: loading config and database again";
3939 cf::reload_config; 3983 cf::reload_config;
3940 3984
3941 trace "loading extensions"; 3985 trace "perl_reload: loading extensions";
3942 cf::load_extensions; 3986 cf::load_extensions;
3943 3987
3944 if ($REATTACH_ON_RELOAD) { 3988 if ($REATTACH_ON_RELOAD) {
3945 trace "reattaching attachments to objects/players"; 3989 trace "perl_reload: reattaching attachments to objects/players";
3946 _global_reattach; # objects, sockets 3990 _global_reattach; # objects, sockets
3947 trace "reattaching attachments to maps"; 3991 trace "perl_reload: reattaching attachments to maps";
3948 reattach $_ for values %MAP; 3992 reattach $_ for values %MAP;
3949 trace "reattaching attachments to players"; 3993 trace "perl_reload: reattaching attachments to players";
3950 reattach $_ for values %PLAYER; 3994 reattach $_ for values %PLAYER;
3951 } 3995 }
3952 3996
3953 trace "running post_init jobs"; 3997 cf::_post_init 1;
3954 (pop @POST_INIT)->(1) while @POST_INIT;
3955 3998
3956 trace "leaving sync_job"; 3999 trace "perl_reload: leaving sync_job";
3957 4000
3958 1 4001 1
3959 } or do { 4002 } or do {
3960 error $@; 4003 error $@;
3961 cf::cleanup "error while reloading, exiting."; 4004 cf::cleanup "perl_reload: error, exiting.";
3962 }; 4005 };
3963 4006
3964 info "reloaded";
3965 --$RELOAD; 4007 --$RELOAD;
3966 } 4008 }
3967 4009
3968 $t1 = AE::time - $t1; 4010 $t1 = AE::time - $t1;
3969 info "reload completed in ${t1}s\n"; 4011 info "perl_reload: completed in ${t1}s\n";
3970}; 4012};
3971 4013
3972our $RELOAD_WATCHER; # used only during reload 4014our $RELOAD_WATCHER; # used only during reload
3973 4015
3974sub reload_perl() { 4016sub reload_perl() {
3995 reload_perl; 4037 reload_perl;
3996 }; 4038 };
3997 } 4039 }
3998}; 4040};
3999 4041
4000unshift @INC, $LIBDIR; 4042#############################################################################
4001 4043
4002my $bug_warning = 0; 4044my $bug_warning = 0;
4003 4045
4004our @WAIT_FOR_TICK; 4046our @WAIT_FOR_TICK;
4005our @WAIT_FOR_TICK_BEGIN; 4047our @WAIT_FOR_TICK_BEGIN;
4006 4048
4007sub wait_for_tick { 4049sub wait_for_tick() {
4008 return Coro::cede if tick_inhibit || $Coro::current == $Coro::main; 4050 return Coro::cede if tick_inhibit || $Coro::current == $Coro::main;
4009 4051
4010 my $signal = new Coro::Signal; 4052 my $signal = new Coro::Signal;
4011 push @WAIT_FOR_TICK, $signal; 4053 push @WAIT_FOR_TICK, $signal;
4012 $signal->wait; 4054 $signal->wait;
4013} 4055}
4014 4056
4015sub wait_for_tick_begin { 4057sub wait_for_tick_begin() {
4016 return Coro::cede if tick_inhibit || $Coro::current == $Coro::main; 4058 return Coro::cede if tick_inhibit || $Coro::current == $Coro::main;
4017 4059
4018 my $signal = new Coro::Signal; 4060 my $signal = new Coro::Signal;
4019 push @WAIT_FOR_TICK_BEGIN, $signal; 4061 push @WAIT_FOR_TICK_BEGIN, $signal;
4020 $signal->wait; 4062 $signal->wait;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines