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.28 by root, Sun Jul 30 17:42:14 2006 UTC vs.
Revision 1.43 by root, Fri Aug 25 17:11:53 2006 UTC

5use Storable; 5use Storable;
6use Opcode; 6use Opcode;
7use Safe; 7use Safe;
8use Safe::Hole; 8use Safe::Hole;
9 9
10use Time::HiRes;
10use Event; 11use Event;
11$Event::Eval = 1; # no idea why this is required, but it is 12$Event::Eval = 1; # no idea why this is required, but it is
12 13
13use strict; 14use strict;
14 15
15our %COMMAND; 16our %COMMAND = ();
16our @EVENT; 17our @EVENT;
18our @PLUGIN_EVENT;
17our %PROP_TYPE; 19our %PROP_TYPE;
18our %PROP_IDX; 20our %PROP_IDX;
19our $LIBDIR = maps_directory "perl"; 21our $LIBDIR = maps_directory "perl";
20 22
23our $TICK = MAX_TIME * 1e-6;
24our $TICK_WATCHER;
25our $NEXT_TICK;
26
21BEGIN { 27BEGIN {
22 @EVENT = map lc, @EVENT; 28 @PLUGIN_EVENT = map lc, @PLUGIN_EVENT;
23 29
24 *CORE::GLOBAL::warn = sub { 30 *CORE::GLOBAL::warn = sub {
25 my $msg = join "", @_; 31 my $msg = join "", @_;
26 $msg .= "\n" 32 $msg .= "\n"
27 unless $msg =~ /\n$/; 33 unless $msg =~ /\n$/;
65prop_gen MAP_PROP => "cf::map"; 71prop_gen MAP_PROP => "cf::map";
66prop_gen ARCH_PROP => "cf::arch"; 72prop_gen ARCH_PROP => "cf::arch";
67 73
68# guessed hierarchies 74# guessed hierarchies
69 75
70@ext::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object'; 76@safe::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
71@ext::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object'; 77@safe::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object';
72 78
73# we bless all objects into derived classes to force a method lookup 79# we bless all objects into (empty) derived classes to force a method lookup
74# within the Safe compartment. 80# within the Safe compartment.
75for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region)) { 81for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region cf::arch)) {
76 no strict 'refs'; 82 no strict 'refs';
77 @{"ext::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg; 83 @{"safe::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
78} 84}
79 85
80$Event::DIED = sub { 86$Event::DIED = sub {
81 warn "error in event callback: @_"; 87 warn "error in event callback: @_";
82}; 88};
85my @exts; 91my @exts;
86my @hook; 92my @hook;
87my %command; 93my %command;
88my %extcmd; 94my %extcmd;
89 95
96#############################################################################
97# "new" plug-in system
98
99=item cf::object::attach ... # NYI
100
101=item cf::attach_global ...
102
103=item cf::attach_to_type ...
104
105=item cf::attach_to_objects ...
106
107=item cf::attach_to_players ...
108
109=item cf::attach_to_maps ...
110
111 prio => $number, # lower is earlier
112 on_xxx => \&cb,
113 package => package::,
114
115=cut
116
117# the following variables are defined in .xs and must not be re-created
118our @CB_GLOBAL = (); # registry for all global events
119our @CB_OBJECT = ();
120our @CB_PLAYER = ();
121our @CB_TYPE = (); # registry for type (cf-object class) based events
122our @CB_MAP = ();
123
124sub _attach_cb($\%$$$) {
125 my ($registry, $undo, $event, $prio, $cb) = @_;
126
127 use sort 'stable';
128
129 $cb = [$prio, $cb];
130
131 @{$registry->[$event]} = sort
132 { $a->[0] cmp $b->[0] }
133 @{$registry->[$event] || []}, $cb;
134
135 push @{$undo->{cb}}, [$event, $cb];
136}
137
138# attach handles attaching event callbacks
139# the only thing the caller has to do is pass the correct
140# registry (== where the callback attaches to).
141sub _attach(\@$\@) {
142 my ($registry, $klass, $arg) = @_;
143
144 my $prio = 0;
145
146 my %undo = (
147 registry => $registry,
148 cb => [],
149 );
150
151 my %cb_id = map +("on_" . lc $EVENT[$_][0], $_) , grep $EVENT[$_][1] == $klass, 0 .. $#EVENT;
152
153 while (@$arg) {
154 my $type = shift @$arg;
155
156 if ($type eq "prio") {
157 $prio = shift @$arg;
158
159 } elsif ($type eq "package") {
160 my $pkg = shift @$arg;
161
162 while (my ($name, $id) = each %cb_id) {
163 if (my $cb = $pkg->can ($name)) {
164 _attach_cb $registry, %undo, $id, $prio, $cb;
165 }
166 }
167
168 } elsif (exists $cb_id{$type}) {
169 _attach_cb $registry, %undo, $cb_id{$type}, $prio, shift @$arg;
170
171 } elsif (ref $type) {
172 warn "attaching objects not supported, ignoring.\n";
173
174 } else {
175 shift @$arg;
176 warn "attach argument '$type' not supported, ignoring.\n";
177 }
178 }
179
180 \%undo
181}
182
183sub cf::object::attach {
184 die;
185}
186
187sub attach_global {
188 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
189}
190
191sub attach_to_type {
192 my $type = shift;
193 _attach @{$CB_TYPE[$type]}, KLASS_OBJECT, @_
194}
195
196sub attach_to_objects {
197 _attach @CB_OBJECT, KLASS_OBJECT, @_
198}
199
200sub attach_to_players {
201 _attach @CB_PLAYER, KLASS_PLAYER, @_
202}
203
204sub attach_to_maps {
205 _attach @CB_MAP, KLASS_MAP, @_
206}
207
208our $override;
209
210sub override() {
211 $override = 1
212}
213
214sub invoke {
215 my $event = shift;
216 my $callbacks = shift;
217
218 local $override;
219
220 for (@$callbacks) {
221 eval { &{$_->[1]} };
222
223 if ($@) {
224 warn "$@";
225 warn "... while processing $EVENT[$event][0] event, skipping processing altogether.\n";
226 override;
227 }
228
229 return 1 if $override;
230 }
231
232 0
233}
234
235#############################################################################
236# old plug-in events
237
90sub inject_event { 238sub inject_event {
91 my $extension = shift; 239 my $extension = shift;
92 my $event_code = shift; 240 my $event_code = shift;
93 241
94 my $cb = $hook[$event_code]{$extension} 242 my $cb = $hook[$event_code]{$extension}
136} 284}
137 285
138sub register { 286sub register {
139 my ($base, $pkg) = @_; 287 my ($base, $pkg) = @_;
140 288
141 for my $idx (0 .. $#EVENT) { 289 for my $idx (0 .. $#PLUGIN_EVENT) {
142 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) { 290 if (my $ref = $pkg->can ("on_$PLUGIN_EVENT[$idx]")) {
143 #warn "registering $EVENT[$idx] hook to '$pkg'\n"; 291 #warn "registering $PLUGIN_EVENT[$idx] hook to '$pkg'\n";
144 $hook[$idx]{$base} = $ref; 292 $hook[$idx]{$base} = $ref;
145 } 293 }
146 } 294 }
147} 295}
148 296
151 299
152 $path =~ /([^\/\\]+)\.ext$/ or die "$path"; 300 $path =~ /([^\/\\]+)\.ext$/ or die "$path";
153 my $base = $1; 301 my $base = $1;
154 my $pkg = $1; 302 my $pkg = $1;
155 $pkg =~ s/[^[:word:]]/_/g; 303 $pkg =~ s/[^[:word:]]/_/g;
156 $pkg = "cf::ext::$pkg"; 304 $pkg = "ext::$pkg";
157 305
158 warn "loading '$path' into '$pkg'\n"; 306 warn "loading '$path' into '$pkg'\n";
159 307
160 open my $fh, "<:utf8", $path 308 open my $fh, "<:utf8", $path
161 or die "$path: $!"; 309 or die "$path: $!";
181sub unload_extension { 329sub unload_extension {
182 my ($pkg) = @_; 330 my ($pkg) = @_;
183 331
184 warn "removing extension $pkg\n"; 332 warn "removing extension $pkg\n";
185 333
186 if (my $cb = $pkg->can ("on_unload")) {
187 $cb->($pkg);
188 }
189
190 # remove hooks 334 # remove hooks
191 for my $idx (0 .. $#EVENT) { 335 for my $idx (0 .. $#PLUGIN_EVENT) {
192 delete $hook[$idx]{$pkg}; 336 delete $hook[$idx]{$pkg};
193 } 337 }
194 338
195 # remove commands 339 # remove commands
196 for my $name (keys %command) { 340 for my $name (keys %command) {
208 # remove extcmds 352 # remove extcmds
209 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) { 353 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
210 delete $extcmd{$name}; 354 delete $extcmd{$name};
211 } 355 }
212 356
357 if (my $cb = $pkg->can ("unload")) {
358 eval {
359 $cb->($pkg);
360 1
361 } or warn "$pkg unloaded, but with errors: $@";
362 }
363
213 Symbol::delete_package $pkg; 364 Symbol::delete_package $pkg;
214} 365}
215 366
216sub load_extensions { 367sub load_extensions {
217 my $LIBDIR = maps_directory "perl"; 368 my $LIBDIR = maps_directory "perl";
223 1 374 1
224 } or warn "$ext not loaded: $@"; 375 } or warn "$ext not loaded: $@";
225 } 376 }
226} 377}
227 378
379sub _perl_reload(&) {
380 my ($msg) = @_;
381
382 $msg->("reloading...");
383
384 eval {
385 # 1. cancel all watchers
386 $_->cancel for Event::all_watchers;
387
388 # 2. unload all extensions
389 for (@exts) {
390 $msg->("unloading <$_>");
391 unload_extension $_;
392 }
393
394 # 3. unload all modules loaded from $LIBDIR
395 while (my ($k, $v) = each %INC) {
396 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
397
398 $msg->("removing <$k>");
399 delete $INC{$k};
400
401 $k =~ s/\.pm$//;
402 $k =~ s/\//::/g;
403
404 if (my $cb = $k->can ("unload_module")) {
405 $cb->();
406 }
407
408 Symbol::delete_package $k;
409 }
410
411 # 4. get rid of safe::, as good as possible
412 Symbol::delete_package "safe::$_"
413 for qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region);
414
415 # 5. remove register_script_function callbacks
416 # TODO
417
418 # 6. unload cf.pm "a bit"
419 delete $INC{"cf.pm"};
420
421 # don't, removes xs symbols, too,
422 # and global variables created in xs
423 #Symbol::delete_package __PACKAGE__;
424
425 # 7. reload cf.pm
426 $msg->("reloading cf.pm");
427 require cf;
428 };
429 $msg->($@) if $@;
430
431 $msg->("reloaded");
432};
433
434sub perl_reload() {
435 _perl_reload {
436 warn $_[0];
437 print "$_[0]\n";
438 };
439}
440
228register_command "perl-reload", 0, sub { 441register_command "perl-reload", 0, sub {
229 my ($who, $arg) = @_; 442 my ($who, $arg) = @_;
230 443
231 if ($who->flag (FLAG_WIZ)) { 444 if ($who->flag (FLAG_WIZ)) {
232 $who->message ("reloading..."); 445 _perl_reload {
233 446 warn $_[0];
234 warn "reloading...\n"; 447 $who->message ($_[0]);
235 eval {
236 # 1. cancel all watchers
237 $_->cancel for Event::all_watchers;
238
239 # 2. unload all extensions
240 for (@exts) {
241 $who->message ("unloading <$_>");
242 unload_extension $_;
243 }
244
245 # 3. unload all modules loaded from $LIBDIR
246 while (my ($k, $v) = each %INC) {
247 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
248
249 $who->message ("removing <$k>");
250 delete $INC{$k};
251
252 $k =~ s/\.pm$//;
253 $k =~ s/\//::/g;
254
255 if (my $cb = $k->can ("unload_module")) {
256 $cb->();
257 }
258
259 Symbol::delete_package $k;
260 }
261
262 # 4. get rid of ext::, as good as possible
263 Symbol::delete_package "ext::$_"
264 for qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region);
265
266 # 5. remove register_script_function callbacks
267 # TODO
268
269 # 6. unload cf.pm "a bit"
270 delete $INC{"cf.pm"};
271
272 # don't, removes xs symbols, too
273 #Symbol::delete_package __PACKAGE__;
274
275 # 7. reload cf.pm
276 $who->message ("reloading cf.pm");
277 require cf;
278 }; 448 };
279 warn $@ if $@;
280 $who->message ($@) if $@;
281 warn "reloaded\n";
282
283 $who->message ("reloaded");
284 } else {
285 $who->message ("Intruder Alert!");
286 } 449 }
287}; 450};
288 451
289############################################################################# 452#############################################################################
290# utility functions 453# utility functions
291 454
292use JSON::Syck (); # TODO# replace by JSON::PC once working 455use JSON::Syck (); # TODO# replace by JSON::PC once working
293 456
294$JSON::Syck::ImplicitUnicode = 1;
295
296sub from_json($) { 457sub from_json($) {
458 $JSON::Syck::ImplicitUnicode = 1; # work around JSON::Syck bugs
297 JSON::Syck::Load $_[0] 459 JSON::Syck::Load $_[0]
298} 460}
299 461
300sub to_json($) { 462sub to_json($) {
463 $JSON::Syck::ImplicitUnicode = 0; # work around JSON::Syck bugs
301 JSON::Syck::Dump $_[0] 464 JSON::Syck::Dump $_[0]
302} 465}
303 466
304############################################################################# 467#############################################################################
305# extcmd framework, basically convert ext <msg> 468# extcmd framework, basically convert ext <msg>
306# into pkg::->on_extcmd_arg1 (...) while shortcutting a few 469# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
307 470
308sub on_extcmd { 471attach_global
472 on_extcmd => sub {
309 my ($pl, $buf) = @_; 473 my ($pl, $buf) = @_;
310 474
311 my $msg = eval { from_json $buf }; 475 my $msg = eval { from_json $buf };
312 476
313 if (ref $msg) { 477 if (ref $msg) {
314 if (my $cb = $extcmd{$msg->{msgtype}}) { 478 if (my $cb = $extcmd{$msg->{msgtype}}) {
315 if (my %reply = $cb->[0]->($pl, $msg)) { 479 if (my %reply = $cb->[0]->($pl, $msg)) {
316 $pl->ext_reply ($msg->{msgid}, %reply); 480 $pl->ext_reply ($msg->{msgid}, %reply);
481 }
317 } 482 }
483 } else {
484 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
318 } 485 }
319 } else { 486
320 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n"; 487 cf::override;
321 } 488 },
322 489;
323 1
324}
325 490
326############################################################################# 491#############################################################################
327# load/save/clean perl data associated with a map 492# load/save/clean perl data associated with a map
328 493
329*on_mapclean = sub { 494*cf::mapsupport::on_clean = sub {
330 my ($map) = @_; 495 my ($map) = @_;
331 496
332 my $path = $map->tmpname; 497 my $path = $map->tmpname;
333 defined $path or return; 498 defined $path or return;
334 499
335 unlink "$path.cfperl"; 500 unlink "$path.cfperl";
336}; 501};
337 502
338*on_mapin = 503*cf::mapsupport::on_swapin =
339*on_mapload = sub { 504*cf::mapsupport::on_load = sub {
340 my ($map) = @_; 505 my ($map) = @_;
341 506
342 my $path = $map->tmpname; 507 my $path = $map->tmpname;
343 $path = $map->path unless defined $path; 508 $path = $map->path unless defined $path;
344 509
351 or return; # too new 516 or return; # too new
352 517
353 $map->_set_obs ($data->{obs}); 518 $map->_set_obs ($data->{obs});
354}; 519};
355 520
356*on_mapout = sub { 521*cf::mapsupport::on_swapout = sub {
357 my ($map) = @_; 522 my ($map) = @_;
358 523
359 my $path = $map->tmpname; 524 my $path = $map->tmpname;
360 $path = $map->path unless defined $path; 525 $path = $map->path unless defined $path;
361 526
378 } else { 543 } else {
379 unlink "$path.cfperl"; 544 unlink "$path.cfperl";
380 } 545 }
381}; 546};
382 547
548attach_to_maps prio => -10000, package => cf::mapsupport::;
549
383############################################################################# 550#############################################################################
384# load/save perl data associated with player->ob objects 551# load/save perl data associated with player->ob objects
385 552
386*on_player_load = sub { 553sub all_objects(@) {
554 @_, map all_objects ($_->inv), @_
555}
556
557attach_to_players
558 on_load => sub {
387 my ($ob, $path) = @_; 559 my ($pl, $path) = @_;
388 560
389 for my $o ($ob, $ob->inv) { 561 for my $o (all_objects $pl->ob) {
390 if (my $value = $o->get_ob_key_value ("_perl_data")) { 562 if (my $value = $o->get_ob_key_value ("_perl_data")) {
391 $o->set_ob_key_value ("_perl_data"); 563 $o->set_ob_key_value ("_perl_data");
392 564
393 %$o = %{ Storable::thaw pack "H*", $value }; 565 %$o = %{ Storable::thaw pack "H*", $value };
566 }
394 } 567 }
395 } 568 },
396}; 569 on_save => sub {
397
398*on_player_save = sub {
399 my ($ob, $path) = @_; 570 my ($pl, $path) = @_;
400 571
401 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_) 572 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
402 for grep %$_, $ob, $ob->inv; 573 for grep %$_, all_objects $pl->ob;
403}; 574 },
575;
404 576
405############################################################################# 577#############################################################################
406# core extensions - in perl 578# core extensions - in perl
407 579
408=item cf::player::exists $login 580=item cf::player::exists $login
454} 626}
455 627
456############################################################################# 628#############################################################################
457# map scripting support 629# map scripting support
458 630
459our $safe = new Safe "ext"; 631our $safe = new Safe "safe";
460our $safe_hole = new Safe::Hole; 632our $safe_hole = new Safe::Hole;
461 633
462$SIG{FPE} = 'IGNORE'; 634$SIG{FPE} = 'IGNORE';
463 635
464$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time)); 636$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
470 ["cf::object::player" => qw(player)], 642 ["cf::object::player" => qw(player)],
471 ["cf::player" => qw(peaceful)], 643 ["cf::player" => qw(peaceful)],
472) { 644) {
473 no strict 'refs'; 645 no strict 'refs';
474 my ($pkg, @funs) = @$_; 646 my ($pkg, @funs) = @$_;
475 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"}) 647 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
476 for @funs; 648 for @funs;
477} 649}
478 650
479sub safe_eval($;@) { 651sub safe_eval($;@) {
480 my ($code, %vars) = @_; 652 my ($code, %vars) = @_;
482 my $qcode = $code; 654 my $qcode = $code;
483 $qcode =~ s/"/‟/g; # not allowed in #line filenames 655 $qcode =~ s/"/‟/g; # not allowed in #line filenames
484 $qcode =~ s/\n/\\n/g; 656 $qcode =~ s/\n/\\n/g;
485 657
486 local $_; 658 local $_;
487 local @ext::cf::_safe_eval_args = values %vars; 659 local @safe::cf::_safe_eval_args = values %vars;
488 660
489 $code = 661 my $eval =
490 "do {\n" 662 "do {\n"
491 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n" 663 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
492 . "#line 0 \"{$qcode}\"\n" 664 . "#line 0 \"{$qcode}\"\n"
493 . $code 665 . $code
494 . "\n}" 666 . "\n}"
495 ; 667 ;
496 668
497 sub_generation_inc; 669 sub_generation_inc;
498 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code); 670 my @res = wantarray ? $safe->reval ($eval) : scalar $safe->reval ($eval);
499 sub_generation_inc; 671 sub_generation_inc;
672
673 if ($@) {
674 warn "$@";
675 warn "while executing safe code '$code'\n";
676 warn "with arguments " . (join " ", %vars) . "\n";
677 }
500 678
501 wantarray ? @res : $res[0] 679 wantarray ? @res : $res[0]
502} 680}
503 681
504sub register_script_function { 682sub register_script_function {
505 my ($fun, $cb) = @_; 683 my ($fun, $cb) = @_;
506 684
507 no strict 'refs'; 685 no strict 'refs';
508 *{"ext::$fun"} = $safe_hole->wrap ($cb); 686 *{"safe::$fun"} = $safe_hole->wrap ($cb);
687}
688
689#############################################################################
690# the server's main()
691
692sub main {
693 Event::loop;
509} 694}
510 695
511############################################################################# 696#############################################################################
512# initialisation 697# initialisation
513 698
515 700
516unshift @INC, $LIBDIR; 701unshift @INC, $LIBDIR;
517 702
518load_extensions; 703load_extensions;
519 704
705$TICK_WATCHER = Event->timer (
706 prio => 1,
707 at => $NEXT_TICK || 1,
708 cb => sub {
709 cf::server_tick; # one server iteration
710
711 my $NOW = Event::time;
712 $NEXT_TICK += $TICK;
713
714 # if we are delayed by four ticks, skip them all
715 $NEXT_TICK = $NOW if $NOW >= $NEXT_TICK + $TICK * 4;
716
717 $TICK_WATCHER->at ($NEXT_TICK);
718 $TICK_WATCHER->start;
719 },
720);
721
5201 7221
521 723

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines