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.511 by root, Wed Apr 7 18:35:56 2010 UTC vs.
Revision 1.514 by root, Mon Apr 12 17:13:36 2010 UTC

108our $PIDFILE = "$LOCALDIR/pid"; 108our $PIDFILE = "$LOCALDIR/pid";
109our $RUNTIMEFILE = "$LOCALDIR/runtime"; 109our $RUNTIMEFILE = "$LOCALDIR/runtime";
110 110
111our %RESOURCE; 111our %RESOURCE;
112 112
113our $OUTPUT_RATE_MIN = 4000;
114our $OUTPUT_RATE_MAX = 100000;
115
113our $TICK = MAX_TIME * 1e-6; # this is a CONSTANT(!) 116our $TICK = MAX_TIME * 1e-6; # this is a CONSTANT(!)
114our $NEXT_RUNTIME_WRITE; # when should the runtime file be written 117our $NEXT_RUNTIME_WRITE; # when should the runtime file be written
115our $NEXT_TICK; 118our $NEXT_TICK;
116our $USE_FSYNC = 1; # use fsync to write maps - default on 119our $USE_FSYNC = 1; # use fsync to write maps - default on
117 120
396} 399}
397 400
398=item cf::periodic $interval, $cb 401=item cf::periodic $interval, $cb
399 402
400Like EV::periodic, but randomly selects a starting point so that the actions 403Like EV::periodic, but randomly selects a starting point so that the actions
401get spread over timer. 404get spread over time.
402 405
403=cut 406=cut
404 407
405sub periodic($$) { 408sub periodic($$) {
406 my ($interval, $cb) = @_; 409 my ($interval, $cb) = @_;
503 506
504sub sync_job(&) { 507sub sync_job(&) {
505 my ($job) = @_; 508 my ($job) = @_;
506 509
507 if ($Coro::current == $Coro::main) { 510 if ($Coro::current == $Coro::main) {
508 my $time = EV::time; 511 my $time = AE::time;
509 512
510 # this is the main coro, too bad, we have to block 513 # this is the main coro, too bad, we have to block
511 # till the operation succeeds, freezing the server :/ 514 # till the operation succeeds, freezing the server :/
512 515
513 LOG llevError, Carp::longmess "sync job";#d# 516 LOG llevError, Carp::longmess "sync job";#d#
530 } else { 533 } else {
531 EV::loop EV::LOOP_ONESHOT; 534 EV::loop EV::LOOP_ONESHOT;
532 } 535 }
533 } 536 }
534 537
535 my $time = EV::time - $time; 538 my $time = AE::time - $time;
536 539
537 $TICK_START += $time; # do not account sync jobs to server load 540 $TICK_START += $time; # do not account sync jobs to server load
538 541
539 wantarray ? @res : $res[0] 542 wantarray ? @res : $res[0]
540 } else { 543 } else {
584 reset_signals; 587 reset_signals;
585 &$cb 588 &$cb
586 }, @args; 589 }, @args;
587 590
588 wantarray ? @res : $res[-1] 591 wantarray ? @res : $res[-1]
592}
593
594sub objinfo {
595 (
596 "counter value" => cf::object::object_count,
597 "objects created" => cf::object::create_count,
598 "objects destroyed" => cf::object::destroy_count,
599 "freelist size" => cf::object::free_count,
600 "allocated objects" => cf::object::objects_size,
601 "active objects" => cf::object::actives_size,
602 )
589} 603}
590 604
591=item $coin = coin_from_name $name 605=item $coin = coin_from_name $name
592 606
593=cut 607=cut
3584 3598
3585# install some emergency cleanup handlers 3599# install some emergency cleanup handlers
3586BEGIN { 3600BEGIN {
3587 our %SIGWATCHER = (); 3601 our %SIGWATCHER = ();
3588 for my $signal (qw(INT HUP TERM)) { 3602 for my $signal (qw(INT HUP TERM)) {
3589 $SIGWATCHER{$signal} = EV::signal $signal, sub { 3603 $SIGWATCHER{$signal} = AE::signal $signal, sub {
3590 cf::cleanup "SIG$signal"; 3604 cf::cleanup "SIG$signal";
3591 }; 3605 };
3592 } 3606 }
3593} 3607}
3594 3608
3595sub write_runtime_sync { 3609sub write_runtime_sync {
3596 my $t0 = EV::time; 3610 my $t0 = AE::time;
3597 3611
3598 # first touch the runtime file to show we are still running: 3612 # first touch the runtime file to show we are still running:
3599 # the fsync below can take a very very long time. 3613 # the fsync below can take a very very long time.
3600 3614
3601 IO::AIO::aio_utime $RUNTIMEFILE, undef, undef; 3615 IO::AIO::aio_utime $RUNTIMEFILE, undef, undef;
3623 or return; 3637 or return;
3624 3638
3625 aio_rename "$RUNTIMEFILE~", $RUNTIMEFILE 3639 aio_rename "$RUNTIMEFILE~", $RUNTIMEFILE
3626 and return; 3640 and return;
3627 3641
3628 warn sprintf "runtime file written (%gs).\n", EV::time - $t0; 3642 warn sprintf "runtime file written (%gs).\n", AE::time - $t0;
3629 3643
3630 1 3644 1
3631} 3645}
3632 3646
3633our $uuid_lock; 3647our $uuid_lock;
3771 return; 3785 return;
3772 } 3786 }
3773 3787
3774 return if $RELOAD++; 3788 return if $RELOAD++;
3775 3789
3776 my $t1 = EV::time; 3790 my $t1 = AE::time;
3777 3791
3778 while ($RELOAD) { 3792 while ($RELOAD) {
3779 warn "reloading..."; 3793 warn "reloading...";
3780 3794
3781 warn "entering sync_job"; 3795 warn "entering sync_job";
3884 3898
3885 warn "reloaded"; 3899 warn "reloaded";
3886 --$RELOAD; 3900 --$RELOAD;
3887 } 3901 }
3888 3902
3889 $t1 = EV::time - $t1; 3903 $t1 = AE::time - $t1;
3890 warn "reload completed in ${t1}s\n"; 3904 warn "reload completed in ${t1}s\n";
3891}; 3905};
3892 3906
3893our $RELOAD_WATCHER; # used only during reload 3907our $RELOAD_WATCHER; # used only during reload
3894 3908
3897 # coro crashes during coro_state_free->destroy here. 3911 # coro crashes during coro_state_free->destroy here.
3898 3912
3899 $RELOAD_WATCHER ||= cf::async { 3913 $RELOAD_WATCHER ||= cf::async {
3900 Coro::AIO::aio_wait cache_extensions; 3914 Coro::AIO::aio_wait cache_extensions;
3901 3915
3902 $RELOAD_WATCHER = EV::timer $TICK * 1.5, 0, sub { 3916 $RELOAD_WATCHER = AE::timer $TICK * 1.5, 0, sub {
3903 do_reload_perl; 3917 do_reload_perl;
3904 undef $RELOAD_WATCHER; 3918 undef $RELOAD_WATCHER;
3905 }; 3919 };
3906 }; 3920 };
3907} 3921}
3948 return; 3962 return;
3949 } 3963 }
3950 3964
3951 cf::server_tick; # one server iteration 3965 cf::server_tick; # one server iteration
3952 3966
3953 #for(1..3e6){} EV::now_update; $NOW=EV::now; # generate load #d# 3967 #for(1..3e6){} AE::now_update; $NOW=AE::now; # generate load #d#
3954 3968
3955 if ($NOW >= $NEXT_RUNTIME_WRITE) { 3969 if ($NOW >= $NEXT_RUNTIME_WRITE) {
3956 $NEXT_RUNTIME_WRITE = List::Util::max $NEXT_RUNTIME_WRITE + 10, $NOW + 5.; 3970 $NEXT_RUNTIME_WRITE = List::Util::max $NEXT_RUNTIME_WRITE + 10, $NOW + 5.;
3957 Coro::async_pool { 3971 Coro::async_pool {
3958 $Coro::current->{desc} = "runtime saver"; 3972 $Coro::current->{desc} = "runtime saver";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines