/usr/lib/perl5/AnyEvent/Debug.pm is in libanyevent-perl 7.010-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 | =head1 NAME
AnyEvent::Debug - debugging utilities for AnyEvent
=head1 SYNOPSIS
use AnyEvent::Debug;
# create an interactive shell into the program
my $shell = AnyEvent::Debug::shell "unix/", "/home/schmorp/myshell";
# then on the shell: "socat readline /home/schmorp/myshell"
=head1 DESCRIPTION
This module provides functionality hopefully useful for debugging.
At the moment, "only" an interactive shell is implemented. This shell
allows you to interactively "telnet into" your program and execute Perl
code, e.g. to look at global variables.
=head1 FUNCTIONS
=over 4
=cut
package AnyEvent::Debug;
use B ();
use Carp ();
use Errno ();
use AnyEvent (); BEGIN { AnyEvent::common_sense }
use AnyEvent::Util ();
use AnyEvent::Socket ();
use AnyEvent::Log ();
our $TRACE = 1; # trace status
our ($TRACE_LOGGER, $TRACE_ENABLED);
# cache often-used strings, purely to save memory, at the expense of speed
our %STRCACHE;
=item $shell = AnyEvent::Debug::shell $host, $service
This function binds on the given host and service port and returns a
shell object, which determines the lifetime of the shell. Any number
of conenctions are accepted on the port, and they will give you a very
primitive shell that simply executes every line you enter.
All commands will be executed "blockingly" with the socket C<select>ed for
output. For a less "blocking" interface see L<Coro::Debug>.
The commands will be executed in the C<AnyEvent::Debug::shell> package,
which currently has "help" and a few other commands, and can be freely
modified by all shells. Code is evaluated under C<use strict 'subs'>.
Every shell has a logging context (C<$LOGGER>) that is attached to
C<$AnyEvent::Log::COLLECT>), which is especially useful to gether debug
and trace messages.
As a general programming guide, consider the beneficial aspects of
using more global (C<our>) variables than local ones (C<my>) in package
scope: Earlier all my modules tended to hide internal variables inside
C<my> variables, so users couldn't accidentally access them. Having
interactive access to your programs changed that: having internal
variables still in the global scope means you can debug them easier.
As no authentication is done, in most cases it is best not to use a TCP
port, but a unix domain socket, whcih can be put wherever you can access
it, but not others:
our $SHELL = AnyEvent::Debug::shell "unix/", "/home/schmorp/shell";
Then you can use a tool to connect to the shell, such as the ever
versatile C<socat>, which in addition can give you readline support:
socat readline /home/schmorp/shell
# or:
cd /home/schmorp; socat readline unix:shell
Socat can even give you a persistent history:
socat readline,history=.anyevent-history unix:shell
Binding on C<127.0.0.1> (or C<::1>) might be a less secure but sitll not
totally insecure (on single-user machines) alternative to let you use
other tools, such as telnet:
our $SHELL = AnyEvent::Debug::shell "127.1", "1357";
And then:
telnet localhost 1357
=cut
sub shell($$) {
local $TRACE = 0;
AnyEvent::Socket::tcp_server $_[0], $_[1], sub {
my ($fh, $host, $port) = @_;
syswrite $fh, "Welcome, $host:$port, use 'help' for more info!\015\012> ";
my $rbuf;
my $logger = new AnyEvent::Log::Ctx
log_cb => sub {
syswrite $fh, shift;
0
};
my $logger_guard = AnyEvent::Util::guard {
$AnyEvent::Log::COLLECT->detach ($logger);
};
$AnyEvent::Log::COLLECT->attach ($logger);
local $TRACE = 0;
my $rw; $rw = AE::io $fh, 0, sub {
my $len = sysread $fh, $rbuf, 1024, length $rbuf;
$logger_guard if 0; # reference it
if (defined $len ? $len == 0 : $! != Errno::EAGAIN) {
undef $rw;
} else {
while ($rbuf =~ s/^(.*)\015?\012//) {
my $line = $1;
AnyEvent::Util::fh_nonblocking $fh, 0;
if ($line =~ /^\s*exit\b/) {
syswrite $fh, "sorry, no... if you want to execute exit, try CORE::exit.\015\012";
} else {
package AnyEvent::Debug::shell;
no strict 'vars';
local $LOGGER = $logger;
my $old_stdout = select $fh;
local $| = 1;
my @res = eval $line;
select $old_stdout;
syswrite $fh, "$@" if $@;
syswrite $fh, "\015\012";
if (@res > 1) {
syswrite $fh, "$_: $res[$_]\015\012" for 0 .. $#res;
} elsif (@res == 1) {
syswrite $fh, "$res[0]\015\012";
}
}
syswrite $fh, "> ";
AnyEvent::Util::fh_nonblocking $fh, 1;
}
}
};
}
}
{
package AnyEvent::Debug::shell;
our $LOGGER;
sub help() {
<<EOF
help this command
wr [level] sets wrap level to level (or toggles if missing)
v [level] sets verbosity (or toggles between 0 and 9 if missing)
wl 'regex' print wrapped watchers matching the regex (or all if missing)
i id,... prints the watcher with the given ids in more detail
t enable tracing for newly created watchers (enabled by default)
ut disable tracing for newly created watchers
t id,... enable tracing for the given watcher (enabled by default)
ut id,... disable tracing for the given weatcher
w id,... converts the watcher ids to watcher objects (for scripting)
EOF
}
sub wl(;$) {
my $re = @_ ? qr<$_[0]>i : qr<.>;
my %res;
while (my ($k, $v) = each %AnyEvent::Debug::Wrapped) {
my $s = "$v";
$res{$s} = $k . (exists $v->{error} ? "*" : " ")
if $s =~ $re;
}
join "", map "$res{$_} $_\n", sort keys %res
}
sub w {
map {
$AnyEvent::Debug::Wrapped{$_} || do {
print "$_: no such wrapped watcher.\n";
()
}
} @_
}
sub i {
join "",
map $_->id . " $_\n" . $_->verbose . "\n",
&w
}
sub wr {
AnyEvent::Debug::wrap (@_);
"wrap level now $AnyEvent::Debug::WRAP_LEVEL"
}
sub t {
if (@_) {
@_ = &w;
$_->trace (1)
for @_;
"tracing enabled for @_."
} else {
$AnyEvent::Debug::TRACE = 1;
"tracing for newly created watchers is now enabled."
}
}
sub u {
if (@_) {
@_ = &w;
$_->trace (0)
for @_;
"tracing disabled for @_."
} else {
$AnyEvent::Debug::TRACE = 0;
"tracing for newly created watchers is now disabled."
}
}
sub v {
$LOGGER->level (@_ ? $_[0] : $LOGGER->[1] ? 0 : 9);
"verbose logging is now " . ($LOGGER->[1] ? "enabled" : "disabled") . "."
}
}
=item AnyEvent::Debug::wrap [$level]
Sets the instrumenting/wrapping level of all watchers that are being
created after this call. If no C<$level> has been specified, then it
toggles between C<0> and C<1>.
The default wrap level is C<0>, or whatever
C<$ENV{PERL_ANYEVENT_DEBUG_WRAP}> specifies.
A level of C<0> disables wrapping, i.e. AnyEvent works normally, and in
its most efficient mode.
A level of C<1> or higher enables wrapping, which replaces all watchers
by AnyEvent::Debug::Wrapped objects, stores the location where a
watcher was created and wraps the callback to log all invocations at
"trace" loglevel if tracing is enabled fore the watcher. The initial
state of tracing when creating a watcher is taken from the global
variable C<$AnyEvent:Debug::TRACE>. The default value of that variable
is C<1>, but it can make sense to set it to C<0> and then do C<< local
$AnyEvent::Debug::TRACE = 1 >> in a block where you create "interesting"
watchers. Tracing can also be enabled and disabled later by calling the
watcher's C<trace> method.
The wrapper will also count how many times the callback was invoked and
will record up to ten runtime errors with corresponding backtraces. It
will also log runtime errors at "error" loglevel.
To see the trace messages, you can invoke your program with
C<PERL_ANYEVENT_VERBOSE=9>, or you can use AnyEvent::Log to divert
the trace messages in any way you like (the EXAMPLES section in
L<AnyEvent::Log> has some examples).
A level of C<2> does everything that level C<1> does, but also stores a
full backtrace of the location the watcher was created, which slows down
watcher creation considerably.
Every wrapped watcher will be linked into C<%AnyEvent::Debug::Wrapped>,
with its address as key. The C<wl> command in the debug shell can be used
to list watchers.
Instrumenting can increase the size of each watcher multiple times, and,
especially when backtraces are involved, also slows down watcher creation
a lot.
Also, enabling and disabling instrumentation will not recover the full
performance that you had before wrapping (the AE::xxx functions will stay
slower, for example).
If you are developing your program, also consider using AnyEvent::Strict
to check for common mistakes.
=cut
our $WRAP_LEVEL;
our $TRACE_CUR;
our $POST_DETECT;
sub wrap(;$) {
my $PREV_LEVEL = $WRAP_LEVEL;
$WRAP_LEVEL = @_ ? 0+shift : $WRAP_LEVEL ? 0 : 1;
if ($AnyEvent::MODEL) {
if ($WRAP_LEVEL && !$PREV_LEVEL) {
$TRACE_LOGGER = AnyEvent::Log::logger trace => \$TRACE_ENABLED;
AnyEvent::_isa_hook 0 => "AnyEvent::Debug::Wrap", 1;
AnyEvent::Debug::Wrap::_reset ();
} elsif (!$WRAP_LEVEL && $PREV_LEVEL) {
AnyEvent::_isa_hook 0 => undef;
}
} else {
$POST_DETECT ||= AnyEvent::post_detect {
undef $POST_DETECT;
return unless $WRAP_LEVEL;
(my $level, $WRAP_LEVEL) = ($WRAP_LEVEL, undef);
require AnyEvent::Strict unless $AnyEvent::Strict::VERSION;
AnyEvent::post_detect { # make sure we run after AnyEvent::Strict
wrap ($level);
};
};
}
}
=item AnyEvent::Debug::path2mod $path
Tries to replace a path (e.g. the file name returned by caller)
by a module name. Returns the path unchanged if it fails.
Example:
print AnyEvent::Debug::path2mod "/usr/lib/perl5/AnyEvent/Debug.pm";
# might print "AnyEvent::Debug"
=cut
sub path2mod($) {
keys %INC; # reset iterator
while (my ($k, $v) = each %INC) {
if ($_[0] eq $v) {
$k =~ s%/%::%g if $k =~ s/\.pm$//;
return $k;
}
}
my $path = shift;
$path =~ s%^\./%%;
$path
}
=item AnyEvent::Debug::cb2str $cb
Using various gambits, tries to convert a callback (e.g. a code reference)
into a more useful string.
Very useful if you debug a program and have some callback, but you want to
know where in the program the callback is actually defined.
=cut
sub cb2str($) {
my $cb = shift;
"CODE" eq ref $cb
or return "$cb";
eval {
my $cv = B::svref_2object ($cb);
my $gv = $cv->GV
or return "$cb";
my $name = $gv->NAME;
return (AnyEvent::Debug::path2mod $gv->FILE) . ":" . $gv->LINE
if $name eq "__ANON__";
$gv->STASH->NAME . "::" . $name;
} || "$cb"
}
sub sv2str($) {
if (ref $_[0]) {
if (ref $_[0] eq "CODE") {
return "$_[0]=" . cb2str $_[0];
} else {
return "$_[0]";
}
} else {
for ("\'$_[0]\'") { # make copy
substr $_, $Carp::MaxArgLen, length, "'..."
if length > $Carp::MaxArgLen;
return $_;
}
}
}
=item AnyEvent::Debug::backtrace [$skip]
Creates a backtrace (actually an AnyEvent::Debug::Backtrace object
that you can stringify), not unlike the Carp module would. Unlike the
Carp module it resolves some references (such as callbacks) to more
user-friendly strings, has a more succinct output format and most
importantly: doesn't leak memory like hell.
The reason it creates an object is to save time, as formatting can be
done at a later time. Still, creating a backtrace is a relatively slow
operation.
=cut
sub backtrace(;$) {
my $w = shift;
my (@bt, @c);
my ($modlen, $sub);
for (;;) {
# 0 1 2 3 4 5 6 7 8 9 10
# ($package, $filename, $line, $subroutine, $hasargs, $wantarray, $evaltext, $is_require, $hints, $bitmask, $hinthash)
package DB;
@c = caller $w++
or last;
package AnyEvent::Debug; # no block for speed reasons
if ($c[7]) {
$sub = "require $c[6]";
} elsif (defined $c[6]) {
$sub = "eval \"\"";
} else {
$sub = ($c[4] ? "" : "&") . $c[3];
$sub .= "("
. (join ",",
map sv2str $DB::args[$_],
0 .. (@DB::args < $Carp::MaxArgNums ? @DB::args : $Carp::MaxArgNums) - 1)
. ")"
if $c[4];
}
push @bt, [\($STRCACHE{$c[1]} ||= $c[1]), $c[2], $sub];
}
@DB::args = ();
bless \@bt, "AnyEvent::Debug::Backtrace"
}
=back
=cut
package AnyEvent::Debug::Wrap;
use AnyEvent (); BEGIN { AnyEvent::common_sense }
use Scalar::Util ();
use Carp ();
sub _reset {
for my $name (qw(io timer signal child idle)) {
my $super = "SUPER::$name";
*$name = sub {
my ($self, %arg) = @_;
my $w;
my $t = $TRACE;
my ($pkg, $file, $line, $sub);
$w = 0;
do {
($pkg, $file, $line) = caller $w++;
} while $pkg =~ /^(?:AE|AnyEvent::(?:Socket|Handle|Util|Debug|Strict|Base|CondVar|CondVar::Base|Impl::.*)|Coro::AnyEvent::CondVar)$/;
$sub = (caller $w)[3];
my $cb = $arg{cb};
$arg{cb} = sub {
++$w->{called};
local $TRACE_CUR = $w;
$TRACE_LOGGER->("enter $w") if $TRACE_ENABLED && $t;
eval {
local $SIG{__DIE__} = sub {
die $_[0] . AnyEvent::Debug::backtrace
if defined $^S;
};
&$cb;
};
if ($@) {
my $err = "$@";
push @{ $w->{error} }, [AE::now, $err]
if @{ $w->{error} } < 10;
AE::log die => "($w) $err"
or warn "($w) $err";
}
$TRACE_LOGGER->("leave $w") if $TRACE_ENABLED && $t;
};
$self = bless {
type => $name,
w => $self->$super (%arg),
rfile => \($STRCACHE{$file} ||= $file),
line => $line,
sub => $sub,
cur => "$TRACE_CUR",
now => AE::now,
arg => \%arg,
cb => $cb,
called => 0,
rt => \$t,
}, "AnyEvent::Debug::Wrapped";
delete $arg{cb};
$self->{bt} = AnyEvent::Debug::backtrace 1
if $WRAP_LEVEL >= 2;
Scalar::Util::weaken ($w = $self);
Scalar::Util::weaken ($AnyEvent::Debug::Wrapped{Scalar::Util::refaddr $self} = $self);
$TRACE_LOGGER->("creat $w") if $TRACE_ENABLED && $t;
$self
};
}
}
package AnyEvent::Debug::Wrapped;
=head1 THE AnyEvent::Debug::Wrapped CLASS
All watchers created while the wrap level is non-zero will be wrapped
inside an AnyEvent::Debug::Wrapped object. The address of the
wrapped watcher will become its ID - every watcher will be stored in
C<$AnyEvent::Debug::Wrapped{$id}>.
These wrapper objects can be stringified and have some methods defined on
them.
For debugging, of course, it can be helpful to look into these objects,
which is why this is documented here, but this might change at any time in
future versions.
Each object is a relatively standard hash with the following members:
type => name of the method used ot create the watcher (e.g. C<io>, C<timer>).
w => the actual watcher
rfile => reference to the filename of the file the watcher was created in
line => line number where it was created
sub => function name (or a special string) which created the watcher
cur => if created inside another watcher callback, this is the string rep of the other watcher
now => the timestamp (AE::now) when the watcher was created
arg => the arguments used to create the watcher (sans C<cb>)
cb => the original callback used to create the watcher
called => the number of times the callback was called
Each object supports the following mehtods (warning: these are only
available on wrapped watchers, so are best for interactive use via the
debug shell).
=over 4
=cut
use AnyEvent (); BEGIN { AnyEvent::common_sense }
use overload
'""' => sub {
$_[0]{str} ||= do {
my ($pkg, $line) = @{ $_[0]{caller} };
my $mod = AnyEvent::Debug::path2mod ${ $_[0]{rfile} };
my $sub = $_[0]{sub};
if (defined $sub) {
$sub =~ s/^\Q$mod\E:://;
$sub = "($sub)";
}
"$mod:$_[0]{line}$sub>$_[0]{type}>"
. (AnyEvent::Debug::cb2str $_[0]{cb})
};
},
fallback => 1,
;
=item $w->id
Returns the numerical id of the watcher, as used in the debug shell.
=cut
sub id {
Scalar::Util::refaddr shift
}
=item $w->verbose
Returns a multiline textual description of the watcher, including the
first ten exceptions caught while executing the callback.
=cut
sub verbose {
my ($self) = @_;
my $res = "type: $self->{type} watcher\n"
. "args: " . (join " ", %{ $self->{arg} }) . "\n" # TODO: decode fh?
. "created: " . (AnyEvent::Log::ft $self->{now}) . " ($self->{now})\n"
. "file: ${ $self->{rfile} }\n"
. "line: $self->{line}\n"
. "subname: $self->{sub}\n"
. "context: $self->{cur}\n"
. "tracing: " . (${ $self->{rt} } ? "enabled" : "disabled") . "\n"
. "cb: $self->{cb} (" . (AnyEvent::Debug::cb2str $self->{cb}) . ")\n"
. "invoked: $self->{called} times\n";
if (exists $self->{bt}) {
$res .= "created\n$self->{bt}";
}
if (exists $self->{error}) {
$res .= "errors: " . @{$self->{error}} . "\n";
$res .= "error: " . (AnyEvent::Log::ft $_->[0]) . " ($_->[0]) $_->[1]\n"
for @{$self->{error}};
}
$res
}
=item $w->trace ($on)
Enables (C<$on> is true) or disables (C<$on> is false) tracing on this
watcher.
To get tracing messages, both the global logging settings must have trace
messages enabled for the context C<AnyEvent::Debug> and tracing must be
enabled for the wrapped watcher.
To enable trace messages globally, the simplest way is to start the
program with C<PERL_ANYEVENT_VERBOSE=9> in the environment.
Tracing for each individual watcher is enabled by default (unless
C<$AnyEvent::Debug::TRACE> has been set to false).
=cut
sub trace {
${ $_[0]{rt} } = $_[1];
}
sub DESTROY {
$TRACE_LOGGER->("dstry $_[0]") if $TRACE_ENABLED && ${ $_[0]{rt} };
delete $AnyEvent::Debug::Wrapped{Scalar::Util::refaddr $_[0]};
}
=back
=cut
package AnyEvent::Debug::Backtrace;
use AnyEvent (); BEGIN { AnyEvent::common_sense }
sub as_string {
my ($self) = @_;
my @bt;
my $modlen;
for (@$self) {
my ($rpath, $line, $sub) = @$_;
$rpath = (AnyEvent::Debug::path2mod $$rpath) . " line $line";
$modlen = length $rpath if $modlen < length $rpath;
$sub =~ s/\r/\\r/g;
$sub =~ s/\n/\\n/g;
$sub =~ s/([\x00-\x1f\x7e-\xff])/sprintf "\\x%02x", ord $1/ge;
$sub =~ s/([^\x20-\x7e])/sprintf "\\x{%x}", ord $1/ge;
push @bt, [$rpath, $sub];
}
join "",
map { sprintf "%*s %s\n", -$modlen, $_->[0], $_->[1] }
@bt
}
use overload
'""' => \&as_string,
fallback => 1,
;
=head1 AUTHOR
Marc Lehmann <schmorp@schmorp.de>
http://anyevent.schmorp.de
=cut
1
|