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.173 by root, Sun Jan 14 18:00:34 2007 UTC vs.
Revision 1.177 by root, Sun Jan 14 22:54:18 2007 UTC

8use Storable; 8use Storable;
9use Opcode; 9use Opcode;
10use Safe; 10use Safe;
11use Safe::Hole; 11use Safe::Hole;
12 12
13use Coro 3.3 (); 13use Coro 3.4 ();
14use Coro::Event; 14use Coro::Event;
15use Coro::Timer; 15use Coro::Timer;
16use Coro::Signal; 16use Coro::Signal;
17use Coro::Semaphore; 17use Coro::Semaphore;
18use Coro::AIO; 18use Coro::AIO;
1535 my ($self) = @_; 1535 my ($self) = @_;
1536 1536
1537 $self->reset_at <= $cf::RUNTIME 1537 $self->reset_at <= $cf::RUNTIME
1538} 1538}
1539 1539
1540sub rename {
1541 my ($self, $new_path) = @_;
1542
1543 normalise $new_path;
1544
1545 $self->unlink_save;
1546
1547 delete $cf::MAP{$self->path};
1548 $self->{path} = $new_path; $self->path ($self->{path});
1549 $cf::MAP{$self->path} = $self;
1550
1551 $self->save;
1552}
1553
1554sub reset { 1540sub reset {
1555 my ($self) = @_; 1541 my ($self) = @_;
1556 1542
1557 my $lock = cf::lock_acquire "map_data:$self->{path}"; 1543 my $lock = cf::lock_acquire "map_data:$self->{path}";
1558 1544
1575my $nuke_counter = "aaaa"; 1561my $nuke_counter = "aaaa";
1576 1562
1577sub nuke { 1563sub nuke {
1578 my ($self) = @_; 1564 my ($self) = @_;
1579 1565
1566 delete $cf::MAP{$self->path};
1567
1568 $self->unlink_save;
1569
1570 bless $self, "cf::map";
1571 delete $self->{deny_reset};
1580 $self->{deny_save} = 1; 1572 $self->{deny_save} = 1;
1581 $self->reset_timeout (1); 1573 $self->reset_timeout (1);
1582 $self->rename ("{nuke}/" . ($nuke_counter++)); 1574 $self->path ($self->{path} = "{nuke}/" . ($nuke_counter++));
1575
1576 $cf::MAP{$self->path} = $self;
1577
1583 $self->reset; # polite request, might not happen 1578 $self->reset; # polite request, might not happen
1584} 1579}
1585 1580
1586=item cf::map::unique_maps 1581=item cf::map::unique_maps
1587 1582
1851 1846
1852 $rmp->{random_seed} ||= $exit->random_seed; 1847 $rmp->{random_seed} ||= $exit->random_seed;
1853 1848
1854 my $data = cf::to_json $rmp; 1849 my $data = cf::to_json $rmp;
1855 my $md5 = Digest::MD5::md5_hex $data; 1850 my $md5 = Digest::MD5::md5_hex $data;
1851 my $meta = "$cf::RANDOM_MAPS/$md5.meta";
1856 1852
1857 if (my $fh = aio_open "$cf::RANDOM_MAPS/$md5.meta", O_WRONLY | O_CREAT, 0666) { 1853 if (my $fh = aio_open "$meta~", O_WRONLY | O_CREAT, 0666) {
1858 aio_write $fh, 0, (length $data), $data, 0; 1854 aio_write $fh, 0, (length $data), $data, 0;
1855 undef $fh;
1856 aio_rename "$meta~", $meta;
1859 1857
1860 $exit->slaying ("?random/$md5"); 1858 $exit->slaying ("?random/$md5");
1861 $exit->msg (undef); 1859 $exit->msg (undef);
1862 } 1860 }
1863} 1861}
2233 2231
2234sub main { 2232sub main {
2235 # we must not ever block the main coroutine 2233 # we must not ever block the main coroutine
2236 local $Coro::idle = sub { 2234 local $Coro::idle = sub {
2237 Carp::cluck "FATAL: Coro::idle was called, major BUG, use cf::sync_job!\n";#d# 2235 Carp::cluck "FATAL: Coro::idle was called, major BUG, use cf::sync_job!\n";#d#
2236 (async {
2238 async { Event::one_event }; 2237 Event::one_event;
2238 })->prio (Coro::PRIO_MAX);
2239 }; 2239 };
2240 2240
2241 cfg_load; 2241 cfg_load;
2242 db_load; 2242 db_load;
2243 load_extensions; 2243 load_extensions;
2391 } 2391 }
2392 2392
2393 warn "reloaded"; 2393 warn "reloaded";
2394}; 2394};
2395 2395
2396our $RELOAD_WATCHER; # used only during reload
2397
2396register_command "reload" => sub { 2398register_command "reload" => sub {
2397 my ($who, $arg) = @_; 2399 my ($who, $arg) = @_;
2398 2400
2399 if ($who->flag (FLAG_WIZ)) { 2401 if ($who->flag (FLAG_WIZ)) {
2400 $who->message ("start of reload."); 2402 $who->message ("reloading server.");
2403
2404 # doing reload synchronously and two reloads happen back-to-back,
2405 # coro crashes during coro_state_free->destroy here.
2406
2407 $RELOAD_WATCHER ||= Event->timer (after => 0, data => WF_AUTOCANCEL, cb => sub {
2401 reload; 2408 reload;
2402 $who->message ("end of reload."); 2409 undef $RELOAD_WATCHER;
2410 });
2403 } 2411 }
2404}; 2412};
2405 2413
2406unshift @INC, $LIBDIR; 2414unshift @INC, $LIBDIR;
2407 2415

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines