/usr/share/perl5/Sepia/Xref.pm is in sepia 0.992-6.
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 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 | package Sepia::Xref;
=head1 NAME
Sepia::Xref - Generates cross reference database for use by Perl programs.
=head1 SYNOPSIS
use Sepia::Xref qw(rebuild defs callers);
rebuild;
for (defs 'foo') {
printf "%s:%d: sub %s\::foo() defined\n", @{$_}[0..2];
}
for (callers 'foo') {
printf "%s:%d: sub foo() called by %s\::%s().\n", @{$_}[0..3];
}
=head1 DESCRIPTION
C<Sepia::Xref> is intended as a programmatic interface to the
information supplied by L<B::Xref>. It is intended to be a component
for interactive Perl development, with other packages providing a
friendly interface to the raw information it extracts. C<B::Xref>
could be seen as an example of this sort of user-level tool, if it
weren't for the fact that this module was created later, and stole
most of its code.
=cut
# use Sepia '_apropos_re';
require Sepia;
BEGIN { *_apropos_re = *Sepia::_apropos_re; }
$VERSION = '0.65';
use strict;
use Config;
use Cwd 'abs_path';
use B qw(peekop class comppadlist main_start svref_2object walksymtable
OPpLVAL_INTRO SVf_POK OPpOUR_INTRO OPf_MOD OPpDEREF_HV OPpDEREF_AV
cstring);
# stupid warnings...
no warnings 'uninitialized';
=head2 Variables
=over
=item C<%call>
A map of subs to call locations and callers
=item C<%callby>
A map of subs to subs called.
=item C<%var_use>
A map of global/package variables to uses.
=item C<%var_def>
A map of global/package variables to definitions (usually empty, since
it only picks up local (...) declarations.
=back
=cut
our %call;
our %callby;
our %var_def;
our %var_use;
require Exporter;
our @ISA = 'Exporter';
my @most = qw(redefined forget rebuild callers callees
var_defs var_uses
var_apropos);
our @EXPORT_OK = (@most,
qw(xref_definitions xref_object xref_main
%call %callby %var_use %var_def));
our %EXPORT_TAGS =
(':all' => \@EXPORT_OK,
':most' => \@most);
######################################################################
## Xref state variables:
sub UNKNOWN { ["?", "?", "?"] }
my @pad; # lexicals in current pad
# as ["(lexical)", type, name]
my @padval;
our %done; # keyed by $$op: set when each $op is done
my $top = UNKNOWN; # shadows top element of stack as
# [pack, type, name] (pack can be "(lexical)")
our $file; # shadows current filename
my $line; # shadows current line number
our $subname; # shadows current sub name
our @todo = (); # List of CVs that need processing
my $lastclass; # last bareword seen after entersub.
our $DEBUG = 0;
sub dprint {
my $type = shift;
my $res = "@_";
$res =~ s/%//g; # XXX: work around EPL's misuse of (message)
print STDERR "@_" if $DEBUG =~ /$type/;
}
my %code = (intro => "i", used => "",
subdef => "s", subused => "&",
formdef => "f", meth => "->");
=head2 Functions
=over 4
=item C<guess_module_file($pack, $ofile)>
XXX: it turns out that rooting around trying to figure out the file
ourselves is more reliable than what we grab from the op. Are we
doing this wrong?
=cut
sub guess_module_file {
my ($pack, $ofile) = @_;
my $file;
# XXX: is this why we get the bogus defs?
return undef if $ofile =~ /Exporter\.pm$/;
# Try for standard translation in %INC:
(my $fn = $pack) =~ s/::/\//g;
return unless $fn; # stupid warnings...
if (exists $INC{"$fn.pm"}) {
return $INC{"$fn.pm"};
}
# Try what they told us:
chomp $ofile;
return $ofile if -f $ofile;
# Try "parent" packages:
while ($fn =~ s|/?[^/]+$|| && !$file) {
$file ||= $INC{"$fn.pm"};
}
if ($file && $file !~ /^\//) {
$file = abs_path($file);
}
if (!$file || !-f $file) {
undef $file;
}
$file;
}
# XXX: should weed through the code below so it only generates decent
# package names, but this will fix it for now.
sub realpack {
my $p = shift;
if (!defined $p || $p eq '?' || $p eq '(method)') {
return undef;
} elsif ($p eq '') {
return 'main';
} else {
return $p;
}
}
# Turn a possibly-qualified name into a package and basename.
sub split_name {
local $_ = shift;
my ($p, $s);
if (/^(.*)::(.+)$/) {
($p, $s) = ($1, $2);
} else {
($p, $s) = ('main', $_);
}
undef $s if $s eq '?';
($p, $s);
}
sub process {
my ($var, $event) = @_;
my ($pack, $type, $name) = @$var;
$pack = realpack($pack);
dprint 'loud', "Processing $event: @$var ($subname)";
if ($type eq "*") {
if ($event eq "used" || $event eq 'set') {
return;
} elsif ($event eq "subused") {
$type = "&";
} elsif ($event eq "meth") {
$type = '->';
}
}
$type =~ s/(.)\*$/$1/g;
$file = guess_module_file($pack, $file);
if (($type eq '&' || $type eq '->') && $subname ne '(definitions)') {
# Handle caller/callee relations
my ($spack, $sname) = split_name($subname);
$call{$name}{$pack}{$subname} = 1;
$callby{$sname}{$spack}{"$pack\::$name"} = 1;
} elsif ($type eq 's' || $subname eq '(definitions)') {
# definition
} elsif ($name !~ /^[\x00-\x1f^] | ^\d+$ | ^[\W_]$
| ^(?:ENV|INC|STD(?:IN|OUT|ERR)|SIG)$ /x
&& realpack($pack)) {
# Variables, but ignore specials and lexicals
my ($spack, $sname) = split_name($subname);
if ($event eq 'intro') {
$var_def{$name}{$pack} =
{ file => $file,
package => $spack,
line => $line,
sub => $sname,
};
} elsif ($event eq 'used' || $event eq 'set') {
push @{$var_use{$name}{$pack}},
{ file => $file,
package => $spack,
line => $line,
sub => $sname,
assign => ($event eq 'set'),
};
} else {
dprint 'ignore', "Ignoring var event $event";
}
} else {
dprint 'ignore', "Ignoring $type event $event";
}
}
sub load_pad {
my $padlist = shift;
my ($namelistav, $vallistav, @namelist, $ix);
@pad = ();
@padval = ();
return if class($padlist) eq "SPECIAL";
($namelistav,$vallistav) = $padlist->ARRAY;
@namelist = $namelistav->ARRAY;
for ($ix = 1; $ix < @namelist; $ix++) {
my $namesv = $namelist[$ix];
next if class($namesv) eq "SPECIAL";
my ($type, $name) = $namesv->PV =~ /^(.)([^\0]*)(\0.*)?$/;
$pad[$ix] = [undef, $type, $name];
}
if ($Config{useithreads}) {
my (@vallist);
@vallist = $vallistav->ARRAY;
for ($ix = 1; $ix < @vallist; $ix++) {
my $valsv = $vallist[$ix];
next unless class($valsv) eq "GV";
# these pad GVs don't have corresponding names, so same @pad
# array can be used without collisions
# XXX: for some reason, on 5.10 $valsv->STASH can be a
# B::SPECIAL, which doesn't have a name.
# XXX: this segfaults on 5.10 for some reason while
# traversing File::Find::contract_name from main
next if ref $valsv->STASH eq 'B::SPECIAL';
$pad[$ix] = [$valsv->STASH->NAME, "*", $valsv->NAME];
}
}
@padval = $vallistav->ARRAY;
}
sub xref {
my $start = shift;
my $op;
for ($op = $start; $$op; $op = $op->next) {
last if $done{$$op}++;
my $opname = $op->name;
if ($opname =~ /^(or|and|mapwhile|grepwhile|range|cond_expr)$/) {
xref($op->other);
} elsif ($opname eq "match" || $opname eq "subst") {
xref($op->pmreplstart);
} elsif ($opname eq "substcont") {
xref($op->other->pmreplstart);
$op = $op->other;
redo;
} elsif ($opname eq "enterloop") {
xref($op->redoop);
xref($op->nextop);
xref($op->lastop);
} elsif ($opname eq "subst") {
xref($op->pmreplstart);
} else {
no strict 'refs';
my $ppname = "pp_$opname";
&$ppname($op) if defined(&$ppname);
}
}
}
sub xref_cv {
my $cv = shift;
my $pack = $cv->GV->STASH->NAME;
local $subname = ($pack eq "main" ? "" : "$pack\::") . $cv->GV->NAME;
load_pad($cv->PADLIST);
xref($cv->START);
}
sub xref_object {
my $cvref = shift;
local (@todo, %done);
my $cv = svref_2object($cvref);
xref_cv($cv);
dprint 'todo', "todo = (@todo)";
my $gv = $cv->GV;
process([$gv->STASH->NAME, '&', $gv->NAME], 'subdef');
}
sub xref_main {
$subname = "(main)";
load_pad(comppadlist);
xref(main_start);
while (@todo) {
xref_cv(shift @todo);
}
}
sub pp_pushmark {
my $op = shift;
my ($class, $meth);
if (($class = $op->next)->name eq 'const') {
my $sv = $class->sv;
my $classname;
# constant could be in the pad (under useithreads)
if (class($sv) ne "SPECIAL" && $sv->FLAGS & SVf_POK) {
$classname = $sv->PV;
} else {
my $pv = $padval[$class->targ];
if (class($pv) =~ /^PV/ && class($sv) eq 'SPECIAL'
## bareword flag -- should use this?
# && ($op->private & 64)
) {
$classname = $pv->PV;
}
}
$lastclass = $classname;
}
}
sub pp_nextstate {
my $op = shift;
$file = $op->file;
die "pp_nextstate: $file" if $file =~ /::/;
$line = $op->line;
$top = UNKNOWN;
}
sub use_type($) {
my ($op) = @_;
if ($op->private & (OPpLVAL_INTRO | OPpOUR_INTRO)) {
'intro';
} elsif ($op->flags & OPf_MOD
&& !($op->private & (OPpDEREF_HV | OPpDEREF_AV))) {
'set';
} else {
'used';
}
}
sub pp_padsv {
my $op = shift;
$top = $pad[$op->targ];
# process($top, $op->private & OPpLVAL_INTRO ? "intro" : "used");
}
sub pp_padav { pp_padsv(@_) }
sub pp_padhv { pp_padsv(@_) }
sub deref {
my ($op, $var, $as) = @_;
$var->[1] = $as . $var->[1];
process($var, use_type $op);
}
sub pp_rv2cv { deref(shift, $top, "&"); }
sub pp_rv2hv { deref(shift, $top, "%"); }
sub pp_rv2sv { deref(shift, $top, "\$"); }
sub pp_rv2av { deref(shift, $top, "\@"); }
sub pp_rv2gv { deref(shift, $top, "*"); }
sub pp_gvsv {
my $op = shift;
my $gv;
if ($Config{useithreads}) {
$top = $pad[$op->padix];
$top = UNKNOWN unless $top;
$top->[1] = '$';
}
else {
$gv = $op->gv;
$top = [$gv->STASH->NAME, '$', $gv->SAFENAME];
}
process($top, use_type $op);
}
sub pp_gv {
my $op = shift;
my $gv;
if ($Config{useithreads}) {
$top = $pad[$op->padix];
$top = UNKNOWN unless $top;
$top->[1] = '*';
}
else {
$gv = $op->gv;
$top = [$gv->STASH->NAME, "*", $gv->SAFENAME];
}
process($top, use_type $op);
}
sub pp_method {
my $op = shift;
$top = [$lastclass || "(method)", "->".$top->[1], $top->[2]];
dprint 'method', "pp_method($top->[1])";
undef $lastclass;
}
sub pp_method_named {
use Data::Dumper;
my $op = shift;
my $sv = $op->sv;
my $pviv = $padval[$op->targ];
if ($pviv && class($pviv) =~ /^PV/) {
my $name = $pviv->PV;
dprint 'method_named', $op->targ.": $name";
undef $top->[2] if $top->[2] eq '?';
$top = [$lastclass || "(method)", '->', $name];
undef $lastclass;
} else {
dprint 'method_named', "method_named: wtf: sizeof padval = ".@padval;
}
}
sub pp_entersub {
my $op = shift;
if ($top->[1] =~ /^(?:m$|->)/) {
dprint 'method', "call to (@$top) from $subname";
process($top, "meth");
} else {
process($top, "subused");
}
undef $lastclass;
$top = UNKNOWN;
}
#
# Stuff for cross referencing definitions of variables and subs
#
sub B::GV::xref {
my $gv = shift;
my $cv = $gv->CV;
$file = $gv->FILE;
# XXX: sometimes the "file" is a module. Why?
$line = $gv->LINE;
if ($$cv) {
#return if $done{$$cv}++;
process([$gv->STASH->NAME, "&", $gv->NAME], "subdef");
push(@todo, $cv);
}
my $form = $gv->FORM;
if ($$form) {
return if $done{$$form}++;
process([$gv->STASH->NAME, "", $gv->NAME], "formdef");
}
}
## Exclude all pragmatic modules (lowercase first letter) and the
## following problematic things, which tend to cause more harm than
## good when they get xref'd:
my %exclude;
BEGIN {
undef $exclude{"$_\::"}
for qw(B O AutoLoader DynaLoader XSLoader Config DB VMS
FileHandle Exporter Carp PerlIO::Layer);
}
sub xref_exclude {
my $x = shift;
$x =~ /^[a-z]/ || exists $exclude{$x};
}
sub xref_definitions {
my ($pack, %exclude);
$subname = "(definitions)";
no strict qw(vars refs);
walksymtable(\%{"main::"}, "xref", sub { !xref_exclude($_[0]) });
}
=item C<rebuild()>
Rebuild the Xref database.
=cut
sub rebuild {
%call = (); %callby = ();
%var_def = (); %var_use = ();
local (@todo, %done);
xref_definitions;
xref_main;
1;
}
sub unmention {
my ($h, $K, $V, $pack) = @_;
dprint 'unmention', "Unmentioning $K => $V";
while (my ($k, $v) = each %$h) {
while (my ($k2, $v2) = each %$v) {
if (ref $v2 eq 'ARRAY') {
$v->{$k2} = [grep {
$_->{$K} ne $V || !$pack || $pack ne $_->{package}
} @$v2];
delete $v->{$k2} unless @{$v->{$k2}};
} else {
delete $v->{$k2} if $k2 eq $V;
}
}
delete $h->{$k} unless keys %{$h->{$k}};
}
}
sub unmention_sub {
my ($h, $sub, $pack) = @_;
dprint 'unmention', "Unmentioning $pack\::$sub";
if ($pack) {
delete $h->{$sub}{$pack};
delete $h->{$sub} unless keys %{$h->{$sub}};
} else {
delete $h->{$sub};
}
}
=item C<forget($func [, $mod])>
Forget that C<$func> was defined.
=cut
sub forget {
my ($obj, $pack) = @_;
unmention_sub \%callby, @_;
unmention \%call, 'sub', @_;
unmention \%var_use, 'sub', @_;
unmention \%var_def, 'sub', @_;
}
=item C<redefined($func [, $pack])>
Recompute xref info for C<$func>, or C<$pack::$func> if C<$pack> given.
=cut
sub redefined {
forget @_;
{
no strict 'refs';
my ($sub, $pack) = @_;
$pack ||= 'main';
$sub = $pack eq 'main' ? $sub : "$pack\::$sub";
local $subname = '(definitions)';
xref_object \&$sub;
}
}
######################################################################
# Apropos and definition-finding:
sub _ret_list
{
my ($h, $sub, $mod) = @_;
if ($sub =~ /^(.*)::([^:]+)$/) {
$sub = $2;
$mod = $1;
}
$h = $h->{$sub};
my @r;
if ($mod) {
@r = keys %{$h->{$mod}};
} else {
# @r = map { @$_ } values %$h;
my %h;
@h{keys %$_} = 1 for values %$h;
@r = keys %h;
}
@r = sort @r;
return wantarray ? @r : \@r;
}
sub _var_ret_list
{
my ($h, $v, $mod, $assign) = @_;
if ($v =~ /^(.*)::([^:]+)$/) {
$mod = $1;
$v = $2;
}
$h = $h->{$v};
my @r;
if ($mod) {
@r = exists $h->{$mod} ? @{$h->{$mod}} : ();
} else {
## XXX: Need to revisit when this is/isn't an array!
@r = map { ref $_ eq 'ARRAY' ? @$_ : $_ } values %$h;
}
@r = grep $_->{assign}, @r if $assign;
@r = map { [@{$_}{qw(file line sub package)}] } @r;
return wantarray ? @r : \@r;
}
=item C<callers($func)>
List callers of C<$func>.
=cut
sub callers {
_ret_list \%call, @_;
}
=item C<callees($func)>
List callees of C<$func>.
=cut
sub callees {
_ret_list \%callby, @_;
}
=item C<var_defs($var)>
Find locations where C<$var> is defined.
=cut
sub var_defs {
return _var_ret_list \%var_def, @_;
}
=item C<var_uses($var)>
Find locations where C<$var> is used.
=cut
sub var_uses {
return _var_ret_list \%var_use, @_;
}
=item C<var_assigns($var)>
Find locations where C<$var> is assigned to.
=cut
sub var_assigns {
my ($v, $pack) = @_;
return _var_ret_list \%var_use, $v, $pack, 1;
}
=item C<file_modules($file)>
List the modules defined in file C<$file>.
=cut
sub file_modules {
my $file = shift;
eval {
require Module::Info;
my $mod = Module::Info->new_from_file(abs_path($file));
if ( $mod ) {
return $mod->packages_inside();
}
}
}
=item C<var_apropos($expr)>
Find variables matching C<$expr>.
=cut
sub _apropos {
my ($h, $re, $mod) = @_;
my @r = do {
if($re) {
$re = _apropos_re($re);
sort grep /$re/, keys %$h;
} else {
sort keys %$h;
}
};
if ($mod) {
$mod = _apropos_re($mod);
my %r;
for (@r) {
my $sn = $_;
for (keys %{$h->{$_}}) {
$r{$_ eq 'main' ? $sn : "$_\::$sn"} = 1 if /$mod/;
}
}
@r = sort keys %r;
}
return wantarray ? @r : \@r;
}
sub var_apropos {
_apropos \%var_use, @_;
}
1;
__END__
=back
=head1 EXPORTS
Nothing by default, but all sub and variable described above can be
imported. C<Sepia::Xref> also defines the tags C<:most> for the
above-listed functions, and C<:all> for those and the variables as
well.
=head1 BUGS
=over 4
=item See L<B::Xref>.
=item module names are ignored when looking up a sub.
=item file and line number guessing is evil
Both should be done more cleanly and effectively. This is a hack
because I don't quite understand what perl saves. We should be able
to do as well as its warning messages.
=item Some packages are not xref'd.
Some "internal" packages are deliberately not cross-referenced, either
because they are hairy and cause us problems, or because they are so
commonly included as to be uninteresting. The current list includes
all pragmatic modules, plus: B, O, AutoLoader, DynaLoader, XSLoader,
Config, DB, VMS, FileHandle, Exporter, Carp, PerlIO::Layer.
=item Tree-view is not fully functional
Ideally, clicking the function names in tree view would take you to
that function. This doesn't work. Also, more keys (like "q" to quit)
should be implemented.
=back
=head1 SEE ALSO
C<B::Xref>, of which C<Sepia::Xref> is a bastard child.
=head1 AUTHOR
L<B::Xref> by Malcolm Beattie, m(angl|odifi)ed by Sean O'Rourke
(seano@cpan.org).
=cut
|