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.362 by root, Mon Sep 10 12:44:06 2007 UTC vs.
Revision 1.365 by root, Tue Sep 11 13:27:56 2007 UTC

80our $NEXT_TICK; 80our $NEXT_TICK;
81our $NOW; 81our $NOW;
82our $USE_FSYNC = 1; # use fsync to write maps - default off 82our $USE_FSYNC = 1; # use fsync to write maps - default off
83 83
84our $BDB_POLL_WATCHER; 84our $BDB_POLL_WATCHER;
85our $BDB_CHECKPOINT_WATCHER;
86our $BDB_TRICKLE_WATCHER;
85our $DB_ENV; 87our $DB_ENV;
86 88
87our %CFG; 89our %CFG;
88 90
89our $UPTIME; $UPTIME ||= time; 91our $UPTIME; $UPTIME ||= time;
507=item cf::db_put $family => $key => $value 509=item cf::db_put $family => $key => $value
508 510
509Stores the given C<$value> in the family. It can currently store binary 511Stores the given C<$value> in the family. It can currently store binary
510data only (use Compress::LZF::sfreeze_cr/sthaw to convert to/from binary). 512data only (use Compress::LZF::sfreeze_cr/sthaw to convert to/from binary).
511 513
514=item $db = cf::db_table "name"
515
516Create and/or open a new database table. The string must not be "db" and must be unique
517within each server.
518
512=cut 519=cut
520
521sub db_table($) {
522 my ($name) = @_;
523 my $db = BDB::db_create $DB_ENV;
524
525 eval {
526 $db->set_flags (BDB::CHKSUM);
527
528 utf8::encode $name;
529 BDB::db_open $db, undef, $name, undef, BDB::BTREE,
530 BDB::CREATE | BDB::AUTO_COMMIT, 0666;
531 cf::cleanup "db_open(db): $!" if $!;
532 };
533 cf::cleanup "db_open(db): $@" if $@;
534
535 $db
536}
513 537
514our $DB; 538our $DB;
515 539
516sub db_init { 540sub db_init {
517 unless ($DB) {
518 $DB = BDB::db_create $DB_ENV;
519
520 cf::sync_job { 541 cf::sync_job {
521 eval { 542 $DB ||= db_table "db";
522 $DB->set_flags (BDB::CHKSUM);
523
524 BDB::db_open $DB, undef, "db", undef, BDB::BTREE,
525 BDB::CREATE | BDB::AUTO_COMMIT, 0666;
526 cf::cleanup "db_open(db): $!" if $!;
527 };
528 cf::cleanup "db_open(db): $@" if $@;
529 };
530 } 543 };
531} 544}
532 545
533sub db_get($$) { 546sub db_get($$) {
534 my $key = "$_[0]/$_[1]"; 547 my $key = "$_[0]/$_[1]";
535 548
2445 my $gen = $self->{_goto_generation} = ++$GOTOGEN; 2458 my $gen = $self->{_goto_generation} = ++$GOTOGEN;
2446 2459
2447 $self->enter_link; 2460 $self->enter_link;
2448 2461
2449 (async { 2462 (async {
2463 # *tag paths override both path and x|y
2464 if ($path =~ /^\*(.*)$/) {
2465 if (my @obs = grep $_->map, ext::map_tags::find $1) {
2466 my $ob = $obs[rand @obs];
2467 ($path, $x, $y) = ($ob->map, $ob->x, $ob->y);
2468 }
2469 }
2470
2450 my $map = eval { 2471 my $map = eval {
2451 my $map = cf::map::find $path; 2472 my $map = cf::map::find $path;
2452 2473
2453 if ($map) { 2474 if ($map) {
2454 $map = $map->customise_for ($self); 2475 $map = $map->customise_for ($self);
3432 my $signal = new Coro::Signal; 3453 my $signal = new Coro::Signal;
3433 push @WAIT_FOR_TICK_BEGIN, $signal; 3454 push @WAIT_FOR_TICK_BEGIN, $signal;
3434 $signal->wait; 3455 $signal->wait;
3435} 3456}
3436 3457
3437 my $min = 1e6;#d# 3458our $stat_fh;
3438 my $avg = 10; 3459sysopen $stat_fh, "/tmp/cfstats", Fcntl::O_APPEND | Fcntl::O_CREAT | Fcntl::O_WRONLY, 0600;#d#
3460
3439$TICK_WATCHER = Event->timer ( 3461$TICK_WATCHER = Event->timer (
3440 reentrant => 0, 3462 reentrant => 0,
3441 parked => 1, 3463 parked => 1,
3442 prio => 0, 3464 prio => 0,
3443 at => $NEXT_TICK || $TICK, 3465 at => $NEXT_TICK || $TICK,
3447 Carp::cluck "major BUG: server tick called outside of main coro, skipping it" 3469 Carp::cluck "major BUG: server tick called outside of main coro, skipping it"
3448 unless ++$bug_warning > 10; 3470 unless ++$bug_warning > 10;
3449 return; 3471 return;
3450 } 3472 }
3451 3473
3474 my @pl = cf::player::list; my $stats = sprintf "%.2f %d %d %d", $RUNTIME, (scalar @pl), cf::object::actives_size, cf::object::objects_size; #d#
3475
3452 $NOW = $tick_start = Event::time; 3476 $NOW = $tick_start = Event::time;
3453 3477
3454 cf::server_tick; # one server iteration 3478 cf::server_tick; # one server iteration
3455
3456 0 && sync_job {#d#
3457 for(1..10) {
3458 my $t = Event::time;
3459 my $map = my $map = new_from_path cf::map "/tmp/x.map"
3460 or die;
3461
3462 $map->width (50);
3463 $map->height (50);
3464 $map->alloc;
3465 $map->_load_objects ("/tmp/x.map", 1); #TODO: does not work
3466 my $t = Event::time - $t;
3467
3468 #next unless $t < 0.0013;#d#
3469 if ($t < $min) {
3470 $min = $t;
3471 }
3472 $avg = $avg * 0.99 + $t * 0.01;
3473 }
3474 warn "XXXXXXXXXXXXXXXXXX min $min avg $avg\n";#d#
3475 exit 0;
3476 # 2007-05-22 02:33:04.569 min 0.00112509727478027 avg 0.0012259249572477
3477 };
3478 3479
3479 $RUNTIME += $TICK; 3480 $RUNTIME += $TICK;
3480 $NEXT_TICK += $TICK; 3481 $NEXT_TICK += $TICK;
3481 3482
3482 if ($NOW >= $NEXT_RUNTIME_WRITE) { 3483 if ($NOW >= $NEXT_RUNTIME_WRITE) {
3508 $LOAD = ($NOW - $tick_start) / $TICK; 3509 $LOAD = ($NOW - $tick_start) / $TICK;
3509 $LOADAVG = $LOADAVG * 0.75 + $LOAD * 0.25; 3510 $LOADAVG = $LOADAVG * 0.75 + $LOAD * 0.25;
3510 3511
3511 _post_tick; 3512 _post_tick;
3512 3513
3513 3514 # gather some statistics#d#
3515 $stats .= sprintf " %d\n", 10000 * ($NOW - $tick_start);#d#
3516 IO::AIO::aio_write $stat_fh, undef, undef, $stats, 0;#d#
3514 }, 3517 },
3515); 3518);
3516 3519
3517{ 3520{
3521 BDB::min_parallel 8;
3518 BDB::max_poll_time $TICK * 0.1; 3522 BDB::max_poll_time $TICK * 0.1;
3519 $BDB_POLL_WATCHER = Event->io ( 3523 $BDB_POLL_WATCHER = Event->io (
3520 reentrant => 0, 3524 reentrant => 0,
3521 fd => BDB::poll_fileno, 3525 fd => BDB::poll_fileno,
3522 poll => 'r', 3526 poll => 'r',
3523 prio => 0, 3527 prio => 0,
3524 data => WF_AUTOCANCEL, 3528 data => WF_AUTOCANCEL,
3525 cb => \&BDB::poll_cb, 3529 cb => \&BDB::poll_cb,
3526 ); 3530 );
3527 BDB::min_parallel 8;
3528 3531
3529 BDB::set_sync_prepare { 3532 BDB::set_sync_prepare {
3530 my $status; 3533 my $status;
3531 my $current = $Coro::current; 3534 my $current = $Coro::current;
3532 ( 3535 (
3553 | BDB::RECOVER | BDB::REGISTER | BDB::USE_ENVIRON | BDB::CREATE, 3556 | BDB::RECOVER | BDB::REGISTER | BDB::USE_ENVIRON | BDB::CREATE,
3554 0666; 3557 0666;
3555 3558
3556 cf::cleanup "db_env_open($BDBDIR): $!" if $!; 3559 cf::cleanup "db_env_open($BDBDIR): $!" if $!;
3557 3560
3558 $DB_ENV->set_flags (BDB::AUTO_COMMIT | BDB::REGION_INIT | BDB::TXN_NOSYNC, 1); 3561 $DB_ENV->set_flags (BDB::AUTO_COMMIT | BDB::REGION_INIT | BDB::TXN_NOSYNC
3562 | BDB::LOG_AUTOREMOVE, 1);
3559 $DB_ENV->set_lk_detect; 3563 $DB_ENV->set_lk_detect;
3560 }; 3564 };
3561 3565
3562 cf::cleanup "db_env_open(db): $@" if $@; 3566 cf::cleanup "db_env_open(db): $@" if $@;
3563 }; 3567 };
3564 } 3568 }
3569
3570 $BDB_CHECKPOINT_WATCHER = Event->timer (
3571 after => 11,
3572 interval => 60,
3573 hard => 1,
3574 prio => 0,
3575 data => WF_AUTOCANCEL,
3576 cb => sub {
3577 BDB::db_env_txn_checkpoint $DB_ENV, 0, 0, 0, sub { };
3578 },
3579 );
3580 $BDB_TRICKLE_WATCHER = Event->timer (
3581 after => 5,
3582 interval => 10,
3583 hard => 1,
3584 prio => 0,
3585 data => WF_AUTOCANCEL,
3586 cb => sub {
3587 BDB::db_env_memp_trickle $DB_ENV, 20, 0, sub { };
3588 },
3589 );
3565} 3590}
3566 3591
3567{ 3592{
3568 IO::AIO::min_parallel 8; 3593 IO::AIO::min_parallel 8;
3569 3594

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines