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.274 by root, Tue Jun 5 13:05:02 2007 UTC vs.
Revision 1.280 by root, Sat Jun 16 14:35:41 2007 UTC

665 _attach $registry, $klass, @attach; 665 _attach $registry, $klass, @attach;
666 } 666 }
667 667
668 $obj->{$name} = \%arg; 668 $obj->{$name} = \%arg;
669 } else { 669 } else {
670 warn "object uses attachment '$name' that is not available, postponing.\n"; 670 warn "object uses attachment '$name' which is not available, postponing.\n";
671 } 671 }
672 672
673 $obj->{_attachment}{$name} = undef; 673 $obj->{_attachment}{$name} = undef;
674} 674}
675 675
943 943
944 cf::override; 944 cf::override;
945 }, 945 },
946); 946);
947 947
948sub load_extension {
949 my ($path) = @_;
950
951 $path =~ /([^\/\\]+)\.ext$/ or die "$path";
952 my $base = $1;
953 my $pkg = $1;
954 $pkg =~ s/[^[:word:]]/_/g;
955 $pkg = "ext::$pkg";
956
957 warn "... loading '$path' into '$pkg'\n";
958
959 open my $fh, "<:utf8", $path
960 or die "$path: $!";
961
962 my $source =
963 "package $pkg; use strict; use utf8;\n"
964 . "#line 1 \"$path\"\n{\n"
965 . (do { local $/; <$fh> })
966 . "\n};\n1";
967
968 unless (eval $source) {
969 my $msg = $@ ? "$path: $@\n"
970 : "extension disabled.\n";
971 if ($source =~ /^#!.*perl.*#.*MANDATORY/m) { # ugly match
972 warn $@;
973 warn "mandatory extension failed to load, exiting.\n";
974 exit 1;
975 }
976 die $@;
977 }
978
979 push @EXTS, $pkg;
980}
981
982sub load_extensions { 948sub load_extensions {
949 cf::sync_job {
950 my %todo;
951
983 for my $ext (<$LIBDIR/*.ext>) { 952 for my $path (<$LIBDIR/*.ext>) {
984 next unless -r $ext; 953 next unless -r $path;
985 eval { 954
986 load_extension $ext; 955 $path =~ /([^\/\\]+)\.ext$/ or die "$path";
956 my $base = $1;
957 my $pkg = $1;
958 $pkg =~ s/[^[:word:]]/_/g;
959 $pkg = "ext::$pkg";
960
961 open my $fh, "<:utf8", $path
962 or die "$path: $!";
963
964 my $source = do { local $/; <$fh> };
965
966 my %ext = (
967 path => $path,
968 base => $base,
969 pkg => $pkg,
970 );
971
972 $ext{meta} = { map { (split /=/, $_, 2)[0, 1] } split /\s+/, $1 }
973 if $source =~ /\A#!.*?perl.*?#\s*(.*)$/m;
974
975 $ext{source} =
976 "package $pkg; use strict; use utf8;\n"
977 . "#line 1 \"$path\"\n{\n"
978 . $source
979 . "\n};\n1";
980
981 $todo{$base} = \%ext;
982 }
983
984 my %done;
985 while (%todo) {
986 my $progress;
987
988 while (my ($k, $v) = each %todo) {
989 for (split /,\s*/, $v->{meta}{depends}) {
990 goto skip
991 unless exists $done{$_};
992 }
993
994 warn "... loading '$k' into '$v->{pkg}'\n";
995
996 unless (eval $v->{source}) {
997 my $msg = $@ ? "$v->{path}: $@\n"
998 : "$v->{base}: extension inactive.\n";
999
1000 if (exists $v->{meta}{mandatory}) {
1001 warn $msg;
1002 warn "mandatory extension failed to load, exiting.\n";
1003 exit 1;
1004 }
1005
1006 warn $msg;
1007 }
1008
1009 $done{$k} = delete $todo{$k};
1010 push @EXTS, $v->{pkg};
1011 $progress = 1;
987 1 1012 }
988 } or warn "$ext not loaded: $@"; 1013
1014 skip:
1015 die "cannot load " . (join ", ", keys %todo) . ": unable to resolve dependencies\n"
1016 unless $progress;
1017 }
989 } 1018 };
990} 1019}
991 1020
992############################################################################# 1021#############################################################################
993 1022
994=head2 CORE EXTENSIONS 1023=head2 CORE EXTENSIONS
1305 my ($self, $merge) = @_; 1334 my ($self, $merge) = @_;
1306 1335
1307 # we have to keep some variables in memory intact 1336 # we have to keep some variables in memory intact
1308 local $self->{path}; 1337 local $self->{path};
1309 local $self->{load_path}; 1338 local $self->{load_path};
1310 local $self->{deny_save};
1311 local $self->{deny_reset};
1312 1339
1313 $self->SUPER::thawer_merge ($merge); 1340 $self->SUPER::thawer_merge ($merge);
1314} 1341}
1315 1342
1316sub normalise { 1343sub normalise {
1416 1443
1417 $_->change_map_light ($change) 1444 $_->change_map_light ($change)
1418 for grep $_->outdoor, values %cf::MAP; 1445 for grep $_->outdoor, values %cf::MAP;
1419} 1446}
1420 1447
1448sub decay_objects {
1449 my ($self) = @_;
1450
1451 return if $self->{deny_reset};
1452
1453 $self->do_decay_objects;
1454}
1455
1421sub unlink_save { 1456sub unlink_save {
1422 my ($self) = @_; 1457 my ($self) = @_;
1423 1458
1424 utf8::encode (my $save = $self->save_path); 1459 utf8::encode (my $save = $self->save_path);
1425 IO::AIO::aioreq_pri 4; Coro::AIO::aio_unlink $save; 1460 IO::AIO::aioreq_pri 4; Coro::AIO::aio_unlink $save;
1481 $self->load_header_orig 1516 $self->load_header_orig
1482 or return; 1517 or return;
1483 $self->prepare_orig; 1518 $self->prepare_orig;
1484 } 1519 }
1485 1520
1521 $self->{deny_reset} = 1
1522 if $self->no_reset;
1523
1486 $self->default_region (cf::region::find_by_path $self->{path}) 1524 $self->default_region (cf::region::find_by_path $self->{path})
1487 unless $self->default_region; 1525 unless $self->default_region;
1488 1526
1489 1 1527 1
1490} 1528}
1505 $map->{last_save} = $cf::RUNTIME; 1543 $map->{last_save} = $cf::RUNTIME;
1506 1544
1507 $map->load_header 1545 $map->load_header
1508 or return; 1546 or return;
1509 1547
1510 if ($map->should_reset && 0) {#d#TODO# disabled, crashy (locking issue?) 1548 if ($map->should_reset) {#d#TODO# disabled, crashy (locking issue?)
1511 # doing this can freeze the server in a sync job, obviously 1549 # doing this can freeze the server in a sync job, obviously
1512 #$cf::WAIT_FOR_TICK->wait; 1550 #$cf::WAIT_FOR_TICK->wait;
1513 $map->reset; 1551 $map->reset;
1514 undef $guard; 1552 undef $guard;
1515 return find $path; 1553 return find $path;
1582 my ($self, $ob) = @_; 1620 my ($self, $ob) = @_;
1583 1621
1584 return find "~" . $ob->name . "/" . $self->{path} 1622 return find "~" . $ob->name . "/" . $self->{path}
1585 if $self->per_player; 1623 if $self->per_player;
1586 1624
1625# return find "?party/" . $ob->name . "/" . $self->{path}
1626# if $self->per_party;
1627
1587 $self 1628 $self
1588} 1629}
1589 1630
1590# find and load all maps in the 3x3 area around a map 1631# find and load all maps in the 3x3 area around a map
1591sub load_diag { 1632sub load_diag {
1701 1742
1702sub reset_at { 1743sub reset_at {
1703 my ($self) = @_; 1744 my ($self) = @_;
1704 1745
1705 # TODO: safety, remove and allow resettable per-player maps 1746 # TODO: safety, remove and allow resettable per-player maps
1706 return 1e99 if $self->isa ("ext::map_per_player");#d#
1707 return 1e99 if $self->{deny_reset}; 1747 return 1e99 if $self->{deny_reset};
1708 1748
1709 my $time = $self->fixed_resettime ? $self->{instantiate_time} : $self->last_access; 1749 my $time = $self->fixed_resettime ? $self->{instantiate_time} : $self->last_access;
1710 my $to = List::Util::min $MAX_RESET, $self->reset_timeout || $DEFAULT_RESET; 1750 my $to = List::Util::min $MAX_RESET, $self->reset_timeout || $DEFAULT_RESET;
1711 1751
1722 my ($self) = @_; 1762 my ($self) = @_;
1723 1763
1724 my $lock = cf::lock_acquire "map_data:$self->{path}"; 1764 my $lock = cf::lock_acquire "map_data:$self->{path}";
1725 1765
1726 return if $self->players; 1766 return if $self->players;
1727 return if $self->isa ("ext::map_per_player");#d#
1728 1767
1729 warn "resetting map ", $self->path; 1768 warn "resetting map ", $self->path;
1730 1769
1731 $self->in_memory (cf::MAP_SWAPPED); 1770 $self->in_memory (cf::MAP_SWAPPED);
1732 1771
1766 $cf::MAP{$self->path} = $self; 1805 $cf::MAP{$self->path} = $self;
1767 1806
1768 $self->reset; # polite request, might not happen 1807 $self->reset; # polite request, might not happen
1769} 1808}
1770 1809
1810=item $maps = cf::map::tmp_maps
1811
1812Returns an arrayref with all map paths of currently instantiated and saved
1813maps. May block.
1814
1815=cut
1816
1817sub tmp_maps() {
1818 [
1819 map {
1820 utf8::decode $_;
1821 /\.map$/
1822 ? normalise $_
1823 : ()
1824 } @{ aio_readdir $TMPDIR or [] }
1825 ]
1826}
1827
1828=item $maps = cf::map::random_maps
1829
1830Returns an arrayref with all map paths of currently instantiated and saved
1831random maps. May block.
1832
1833=cut
1834
1835sub random_maps() {
1836 [
1837 map {
1838 utf8::decode $_;
1839 /\.map$/
1840 ? normalise "?random/$_"
1841 : ()
1842 } @{ aio_readdir $RANDOMDIR or [] }
1843 ]
1844}
1845
1771=item cf::map::unique_maps 1846=item cf::map::unique_maps
1772 1847
1773Returns an arrayref of paths of all shared maps that have 1848Returns an arrayref of paths of all shared maps that have
1774instantiated unique items. May block. 1849instantiated unique items. May block.
1775 1850
1776=cut 1851=cut
1777 1852
1778sub unique_maps() { 1853sub unique_maps() {
1779 my $files = aio_readdir $UNIQUEDIR 1854 [
1780 or return; 1855 map {
1781
1782 my @paths;
1783
1784 for (@$files) {
1785 utf8::decode $_; 1856 utf8::decode $_;
1786 next if /\.pst$/; 1857 /\.map$/
1787 next unless /^$PATH_SEP/o; 1858 ? normalise $_
1788 1859 : ()
1789 push @paths, cf::map::normalise $_; 1860 } @{ aio_readdir $UNIQUEDIR or [] }
1790 } 1861 ]
1791
1792 \@paths
1793} 1862}
1794 1863
1795package cf; 1864package cf;
1796 1865
1797=back 1866=back

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines