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 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
|
# Copyright 2001-2012, Paul Johnson (paul@pjcj.net)
# This software is free. It is licensed under the same terms as Perl itself.
# The latest version of this software should be available from my homepage:
# http://www.pjcj.net
package Devel::Cover;
use strict;
use warnings;
our $VERSION = '0.89'; # VERSION
our $LVERSION = do { eval '$VERSION' || "0.001" }; # for development purposes
use DynaLoader ();
our @ISA = "DynaLoader";
use Devel::Cover::DB;
use Devel::Cover::DB::Digests;
use Devel::Cover::Inc;
use B qw( class ppname main_cv main_start main_root walksymtable OPf_KIDS );
use B::Debug;
use B::Deparse;
use Carp;
use Config;
use Cwd "abs_path";
use File::Spec;
use Devel::Cover::Dumper;
BEGIN
{
# Use Pod::Coverage if it is available.
eval "use Pod::Coverage 0.06";
# If there is any error other than a failure to locate, report it.
die $@ if $@ && $@ !~ m/Can't locate Pod\/Coverage.+pm in \@INC/;
# We'll prefer Pod::Coverage::CountParents
eval "use Pod::Coverage::CountParents";
die $@ if $@ && $@ !~ m/Can't locate Pod\/Coverage.+pm in \@INC/;
}
# $SIG{__DIE__} = \&Carp::confess;
my $Initialised; # import() has been called.
my $Dir; # Directory in which coverage will be
# collected.
my $DB = "cover_db"; # DB name.
my $Merge = 1; # Merge databases.
my $Summary = 1; # Output coverage summary.
my $Subs_only = 0; # Coverage only for sub bodies.
my $Self_cover_run = 0; # Covering Devel::Cover now.
my @Ignore; # Packages to ignore.
my @Inc; # Original @INC to ignore.
my @Select; # Packages to select.
my @Ignore_re; # Packages to ignore.
my @Inc_re; # Original @INC to ignore.
my @Select_re; # Packages to select.
my $Pod = $INC{"Pod/Coverage/CountParents.pm"} ? "Pod::Coverage::CountParents" :
$INC{"Pod/Coverage.pm"} ? "Pod::Coverage" :
""; # Type of pod coverage available.
my %Pod; # Pod coverage data.
my @Cvs; # All the Cvs we want to cover.
my @Subs; # All the subs we want to cover.
my $Cv; # Cv we are looking in.
my $Sub_name; # Name of the sub we are looking in.
my $Sub_count; # Count for multiple subs on same line.
my $Coverage; # Raw coverage data.
my $Structure; # Structure of the files.
my $Digests; # Digests of the files.
my %Criteria; # Names of coverage criteria.
my %Coverage; # Coverage criteria to collect.
my %Coverage_options; # Options for overage criteria.
my %Run; # Data collected from the run.
my $Const_right = qr/^(?:const|s?refgen|gelem|die|undef|bless|anon(?:list|hash)|
scalar|return|last|next|redo|goto)$/x;
# constant ops
use vars '$File', # Last filename we saw. (localised)
'$Line', # Last line number we saw. (localised)
'$Collect', # Whether or not we are collecting
# coverage data. We make two passes
# over conditions. (localised)
'%Files', # Whether we are interested in files.
# Used in runops function.
'$Replace_ops', # Whether we are replacing ops.
'$Silent', # Output nothing. Can be used anywhere.
'$Self_cover'; # Coverage of Devel::Cover.
BEGIN
{
($File, $Line, $Collect) = ("", 0, 1);
$Silent = ($ENV{HARNESS_PERL_SWITCHES} || "") =~ /Devel::Cover/ ||
($ENV{PERL5OPT} || "") =~ /Devel::Cover/;
*OUT = $ENV{DEVEL_COVER_DEBUG} ? *STDERR : *STDOUT;
@Inc = @Devel::Cover::Inc::Inc;
@Ignore = ("/Devel/Cover[./]") unless $Self_cover = $ENV{DEVEL_COVER_SELF};
# $^P = 0x004 | 0x010 | 0x100 | 0x200;
# $^P = 0x004 | 0x100 | 0x200;
$^P |= 0x004 | 0x100;
}
sub version { $LVERSION }
if (0 && $Config{useithreads})
{
eval "use threads";
no warnings "redefine";
my $original_join;
BEGIN { $original_join = \&threads::join }
# print STDERR "original_join: $original_join\n";
# $original_join = sub { print STDERR "j\n" };
# sub threads::join
*threads::join = sub
{
# print STDERR "threads::join- ", \&threads::join, "\n";
# print STDERR "original_join- $original_join\n";
my $self = shift;
print STDERR "(joining thread ", $self->tid, ")\n";
my @ret = $original_join->($self, @_);
print STDERR "(returning <@ret>)\n";
@ret
};
my $original_destroy;
BEGIN { $original_destroy = \&threads::DESTROY }
*threads::DESTROY = sub
{
my $self = shift;
print STDERR "(destroying thread ", $self->tid, ")\n";
$original_destroy->($self, @_);
};
# print STDERR "threads::join: ", \&threads::join, "\n";
my $new = \&threads::new;
*threads::new = *threads::create = sub
{
my $class = shift;
my $sub = shift;
my $wantarray = wantarray;
$new->($class,
sub
{
print STDERR "Starting thread\n";
set_coverage(keys %Coverage);
my $ret = [ $sub->(@_) ];
print STDERR "Ending thread\n";
report() if $Initialised;
print STDERR "Ended thread\n";
$wantarray ? @{$ret} : $ret->[0];
},
@_
);
};
}
{
sub check
{
return unless $Initialised;
check_files();
set_coverage(keys %Coverage);
my @coverage = get_coverage();
%Coverage = map { $_ => 1 } @coverage;
delete $Coverage{path}; # not done yet
my $nopod = "";
if (!$Pod && exists $Coverage{pod})
{
delete $Coverage{pod}; # Pod::Coverage unavailable
$nopod = <<EOM;
Pod coverage is unavailable. Please install Pod::Coverage from CPAN.
EOM
}
set_coverage(keys %Coverage);
@coverage = get_coverage();
my $last = pop @coverage || "";
print OUT __PACKAGE__, " $LVERSION: Collecting coverage data for ",
join(", ", @coverage),
@coverage ? " and " : "",
"$last.\n",
$nopod,
$Subs_only ? " Collecting for subroutines only.\n" : "",
$ENV{MOD_PERL} ? " Collecting under $ENV{MOD_PERL}\n" : "",
"Selecting packages matching:", join("\n ", "", @Select), "\n",
"Ignoring packages matching:", join("\n ", "", @Ignore), "\n",
"Ignoring packages in:", join("\n ", "", @Inc), "\n"
unless $Silent;
$Run{OS} = $^O;
$Run{perl} = $] < 5.010 ? join ".", map ord, split //, $^V
: sprintf "%vd", $^V;
$Run{run} = $0;
$Run{start} = get_elapsed() / 1e6;
}
no warnings "void"; # avoid "Too late to run CHECK block" warning
CHECK { check }
}
{
my $run_end = 0;
sub first_end
{
# print STDERR "**** END 1 - $run_end\n";
set_last_end() unless $run_end++
}
my $run_init = 0;
sub first_init
{
# print STDERR "**** INIT 1 - $run_init\n";
collect_inits() unless $run_init++
}
}
sub last_end
{
# print STDERR "**** END 2 - [$Initialised]\n";
report() if $Initialised;
# print STDERR "**** END 2 - ended\n";
}
{
no warnings "void"; # avoid "Too late to run ... block" warning
INIT {} # dummy sub to make sure PL_initav is set up and populated
END {} # dummy sub to make sure PL_endav is set up and populated
CHECK { set_first_init_and_end() } # we really want to be first
}
sub CLONE
{
# return;
print STDERR <<EOM;
Unfortunately, Devel::Cover does not yet work with threads. I have done
some work in this area, but there is still more to be done.
EOM
require POSIX;
POSIX::_exit(1);
}
$Replace_ops = !$Self_cover;
sub import
{
return if $Initialised;
my $class = shift;
my @o = (@_, split ",", $ENV{DEVEL_COVER_OPTIONS} || "");
# print STDERR __PACKAGE__, ": Parsing options from [@o]\n";
my $blib = -d "blib";
@Inc = () if "@o" =~ /-inc /;
@Ignore = () if "@o" =~ /-ignore /;
@Select = () if "@o" =~ /-select /;
while (@o)
{
local $_ = shift @o;
/^-silent/ && do { $Silent = shift @o; next };
/^-dir/ && do { $Dir = shift @o; next };
/^-db/ && do { $DB = shift @o; next };
/^-merge/ && do { $Merge = shift @o; next };
/^-summary/ && do { $Summary = shift @o; next };
/^-blib/ && do { $blib = shift @o; next };
/^-subs_only/ && do { $Subs_only = shift @o; next };
/^-replace_ops/ && do { $Replace_ops = shift @o; next };
/^-coverage/ &&
do { $Coverage{+shift @o} = 1 while @o && $o[0] !~ /^[-+]/; next };
/^[-+]ignore/ &&
do { push @Ignore, shift @o while @o && $o[0] !~ /^[-+]/; next };
/^[-+]inc/ &&
do { push @Inc, shift @o while @o && $o[0] !~ /^[-+]/; next };
/^[-+]select/ &&
do { push @Select, shift @o while @o && $o[0] !~ /^[-+]/; next };
warn __PACKAGE__ . ": Unknown option $_ ignored\n";
}
if ($blib)
{
eval "use blib";
for (@INC) { $_ = $1 if /(.*)/ } # Die tainting.
push @Ignore, "^t/", '\\.t$', '^test\\.pl$';
}
my $ci = $^O eq "MSWin32";
@Select_re = map qr/$_/, @Select;
@Ignore_re = map qr/$_/, @Ignore;
@Inc_re = map $ci ? qr/^\Q$_\//i : qr/^\Q$_\//, @Inc;
if ($LVERSION > 0.002)
{
# Usual situation in production from a full release.
bootstrap Devel::Cover $LVERSION;
}
else
{
# Usual situation in development.
bootstrap Devel::Cover;
}
if (defined $Dir)
{
# Die tainting.
# Anyone using this module can do worse things than messing with
# tainting.
$Dir = $1 if $Dir =~ /(.*)/;
chdir $Dir or die __PACKAGE__ . ": Can't chdir $Dir: $!\n";
}
else
{
$Dir = $1 if Cwd::getcwd() =~ /(.*)/;
}
unless (mkdir $DB)
{
die "Can't mkdir $DB: $!" unless -d $DB;
}
$DB = $1 if abs_path($DB) =~ /(.*)/;
Devel::Cover::DB->delete($DB) unless $Merge;
%Files = (); # start gathering file information from scratch
for my $c (Devel::Cover::DB->new->criteria)
{
my $func = "coverage_$c";
no strict "refs";
$Criteria{$c} = $func->();
}
%Coverage = (all => 1) unless keys %Coverage;
for (keys %Coverage)
{
my @c = split /-/, $_;
if (@c > 1)
{
$Coverage{shift @c} = \@c;
delete $Coverage{$_};
}
}
%Coverage_options = %Coverage;
$Initialised = 1;
if ($ENV{MOD_PERL})
{
eval "BEGIN {}";
check();
set_first_init_and_end();
}
}
sub cover_names_to_val
{
my $val = 0;
for my $c (@_)
{
if (exists $Criteria{$c})
{
$val |= $Criteria{$c};
}
elsif ($c eq "all" || $c eq "none")
{
my $func = "coverage_$c";
no strict "refs";
$val |= $func->();
}
else
{
warn __PACKAGE__ . qq(: Unknown coverage criterion "$c" ignored.\n);
}
}
$val;
}
sub set_coverage
{
set_criteria(cover_names_to_val(@_));
}
sub add_coverage
{
add_criteria(cover_names_to_val(@_));
}
sub remove_coverage
{
remove_criteria(cover_names_to_val(@_));
}
sub get_coverage
{
return unless defined wantarray;
my @names;
my $val = get_criteria();
for my $c (sort keys %Criteria)
{
push @names, $c if $val & $Criteria{$c};
}
return wantarray ? @names : "@names";
}
{
my %File_cache;
# Recursion in normalised_file() is bad. It can happen if a call from the sub
# evals something which wants to load a new module. This has happened with
# the Storable backend. I don't think it happens with the JSON backend.
my $Normalising;
sub normalised_file
{
my ($file) = @_;
return $File_cache{$file} if exists $File_cache{$file};
return $file if $Normalising;
$Normalising = 1;
my $f = $file;
$file =~ s/ \(autosplit into .*\)$//;
$file =~ s/^\(eval in .*\) //;
# print STDERR "file is <$file>\ncoverage: ", Dumper coverage(0);
if (exists coverage(0)->{module} && exists coverage(0)->{module}{$file} &&
!File::Spec->file_name_is_absolute($file))
{
my $m = coverage(0)->{module}{$file};
# print STDERR "Loaded <$file> <$m->[0]> from <$m->[1]> ";
$file = File::Spec->rel2abs($file, $m->[1]);
# print STDERR "as <$file> ";
}
if ($] >= 5.008)
{
my $inc;
$inc ||= $file =~ $_ for @Inc_re;
# warn "inc for [$file] is [$inc] @Inc_re";
if ($inc && ($^O eq "MSWin32" || $^O eq "cygwin"))
{
# Windows' Cwd::_win32_cwd() calls eval which will recurse back
# here if we call abs_path, so we just assume it's normalised.
# warn "giving up on getting normalised filename from <$file>\n";
}
else
{
# print STDERR "getting abs_path <$file> ";
if (-e $file) # Windows likes the file to exist
{
my $abs;
$abs = abs_path($file) unless -l $file; # leave symbolic links
# print STDERR "giving <$abs> ";
$file = $abs if defined $abs;
}
}
# print STDERR "finally <$file> <$Dir>\n";
}
$file =~ s|\\|/|g if $^O eq "MSWin32";
$file =~ s|^\Q$Dir\E/|| if defined $Dir;
$Digests ||= Devel::Cover::DB::Digests->new(db => $DB);
$file = $Digests->canonical_file($file);
# print STDERR "File: $f => $file\n";
$Normalising = 0;
$File_cache{$f} = $file
}
}
sub get_location
{
my ($op) = @_;
$File = $op->file;
$Line = $op->line;
# warn "${File}::$Line\n";
# If there's an eval, get the real filename. Enabled from $^P & 0x100.
while ($File =~ /^\(eval \d+\)\[(.*):(\d+)\]/) {
($File, $Line) = ($1, $2);
}
$File = normalised_file($File);
if (!exists $Run{vec}{$File} && $Run{collected})
{
my %vec;
@vec{@{$Run{collected}}} = ();
delete $vec{time};
$vec{subroutine}++ if exists $vec{pod};
@{$Run{vec}{$File}{$_}}{"vec", "size"} = ("", 0) for keys %vec;
}
}
my $find_filename = qr/
(?:^\(eval\s \d+\)\[(.+):\d+\]) |
(?:^\(eval\sin\s\w+\)\s(.+)) |
(?:\(defined\sat\s(.+)\sline\s\d+\)) |
(?:\[from\s(.+)\sline\s\d+\])
/x;
sub use_file
{
my ($file) = @_;
# print STDERR "use_file($file)\n";
# die "bad file" unless length $file;
# just don't call your filenames 0
while ($file =~ $find_filename) { $file = $1 || $2 || $3 || $4 }
$file =~ s/ \(autosplit into .*\)$//;
# print STDERR "==> use_file($file)\n";
return $Files{$file} if exists $Files{$file};
return 0 if $file =~ /\(eval \d+\)/ ||
$file =~ /^\.\.[\/\\]\.\.[\/\\]lib[\/\\](?:Storable|POSIX).pm$/;
my $f = normalised_file($file);
# print STDERR "checking <$file> <$f>\n";
# print STDERR "checking <$file> <$f> against ",
# "select(@Select_re), ignore(@Ignore_re), inc(@Inc_re)\n";
for (@Select_re) { return $Files{$file} = 1 if $f =~ $_ }
for (@Ignore_re) { return $Files{$file} = 0 if $f =~ $_ }
for (@Inc_re) { return $Files{$file} = 0 if $f =~ $_ }
# system "pwd; ls -l '$file'";
$Files{$file} = -e $file ? 1 : 0;
print STDERR __PACKAGE__ . qq(: Can't find file "$file" (@_): ignored.\n)
unless $Files{$file} || $Silent
|| $file =~ $Devel::Cover::DB::Ignore_filenames;
$Files{$file}
}
sub check_file
{
my ($cv) = @_;
return unless ref($cv) eq "B::CV";
my $op = $cv->START;
return unless ref($op) eq "B::COP";
my $file = $op->file;
my $use = use_file($file);
# printf STDERR "%6s $file\n", $use ? "use" : "ignore";
$use
}
sub B::GV::find_cv
{
my $cv = $_[0]->CV;
return unless $$cv;
# print STDERR "find_cv $$cv\n" if check_file($cv);
push @Cvs, $cv if check_file($cv);
push @Cvs, grep check_file($_), $cv->PADLIST->ARRAY->ARRAY
if $cv->can("PADLIST") &&
$cv->PADLIST->can("ARRAY") &&
$cv->PADLIST->ARRAY &&
$cv->PADLIST->ARRAY->can("ARRAY");
};
sub sub_info
{
my ($cv) = @_;
my ($name, $start) = ("--unknown--", 0);
if (!$cv->GV->isa("B::SPECIAL"))
{
return unless $cv->GV->can("SAFENAME");
$name = $cv->GV->SAFENAME;
# print STDERR "--[$name]--\n";
$name =~ s/(__ANON__)\[.+:\d+\]/$1/ if defined $name;
}
my $root = $cv->ROOT;
if ($root->can("first"))
{
my $lineseq = $root->first;
if ($lineseq->can("first"))
{
# normal case
$start = $lineseq->first;
}
elsif ($lineseq->name eq "nextstate")
{
# completely empty sub - sub empty { }
$start = $lineseq;
}
}
($name, $start)
}
sub check_files
{
# print STDERR "Checking files\n";
@Cvs = grep check_file($_), B::main_cv->PADLIST->ARRAY->ARRAY;
my %seen_pkg;
my %seen_cv;
walksymtable(\%main::, "find_cv", sub { !$seen_pkg{$_[0]}++ });
my $l = sub
{
my ($cv) = @_;
my $line = 0;
my ($name, $start) = sub_info($cv);
if ($start)
{
local ($Line, $File);
get_location($start);
$line = $Line;
# print STDERR "$name - $File:$Line\n";
}
($line, $name)
};
@Cvs = map $_->[0],
sort { $a->[1] <=> $b->[1] || $a->[2] cmp $b->[2] }
map [ $_, $l->($_) ],
grep !$seen_cv{$$_}++,
@Cvs;
# Hack to bump up the refcount of the subs. If we don't do this then the
# subs in some modules don't seem to be around when we get to looking at
# them. I'm not sure why this is, and it seems to me that this hack could
# affect the order of destruction, but I've not seen any problems. Yet.
# object_2svref doesn't exist before 5.8.1.
@Subs = map $_->object_2svref, @Cvs if $] >= 5.008001;
}
my %Seen;
sub report
{
local $@;
eval
{
_report();
};
if ($@)
{
print STDERR <<"EOM" unless $Silent;
Devel::Cover: Oops, it looks like something went wrong writing the coverage.
It's possible that more bad things may happen but we'll try to
carry on anyway as if nothing happened. At a minimum you'll
probably find that you are missing coverage. If you're
interested, the problem was:
$@
EOM
}
return unless $Self_cover;
$Self_cover_run = 1;
_report();
}
sub _report
{
local @SIG{qw(__DIE__ __WARN__)};
$Run{finish} = get_elapsed() / 1e6;
die "Devel::Cover::import() not run: " .
"did you require instead of use Devel::Cover?\n"
unless defined $Dir;
my @collected = get_coverage();
return unless @collected;
set_coverage("none") unless $Self_cover;
my $starting_dir = $1 if Cwd::getcwd() =~ /(.*)/;
chdir $Dir or die __PACKAGE__ . ": Can't chdir $Dir: $!\n";
$Run{collected} = \@collected;
$Structure = Devel::Cover::DB::Structure->new(base => $DB);
$Structure->read_all;
$Structure->add_criteria(@collected);
# print STDERR "Start structure: ", Dumper $Structure;
# print STDERR "Processing cover data\n@Inc\n";
$Coverage = coverage(1) || die "No coverage data available.\n";
# print STDERR Dumper $Coverage;
check_files();
unless ($Subs_only)
{
get_cover(main_cv, main_root);
get_cover($_)
for B::begin_av()->isa("B::AV") ? B::begin_av()->ARRAY : ();
if (exists &B::check_av)
{
get_cover($_)
for B::check_av()->isa("B::AV") ? B::check_av()->ARRAY : ();
}
# get_ends includes INIT blocks
get_cover($_)
for get_ends()->isa("B::AV") ? get_ends()->ARRAY : ();
}
# print STDERR "--- @Cvs\n";
get_cover($_) for @Cvs;
my %files;
$files{$_}++ for keys %{$Run{count}}, keys %{$Run{vec}};
for my $file (sort keys %files)
{
# print STDERR "looking at $file\n";
unless (use_file($file))
{
# print STDERR "deleting $file\n";
delete $Run{count}->{$file};
delete $Run{vec} ->{$file};
$Structure->delete_file($file);
next;
}
# $Structure->add_digest($file, \%Run);
for my $run (keys %{$Run{vec}{$file}})
{
delete $Run{vec}{$file}{$run} unless $Run{vec}{$file}{$run}{size};
}
$Structure->store_counts($file);
}
# print STDERR "End structure: ", Dumper $Structure;
my $run = time . ".$$." . sprintf "%05d", rand 2 ** 16;
my $cover = Devel::Cover::DB->new
(
base => $DB,
runs => { $run => \%Run },
structure => $Structure,
);
my $dbrun = "$DB/runs";
unless (mkdir $dbrun)
{
die "Can't mkdir $dbrun $!" unless -d $dbrun;
}
$dbrun .= "/$run";
print OUT __PACKAGE__, ": Writing coverage database to $dbrun\n"
unless $Silent;
$cover->write($dbrun);
$Digests->write;
$cover->print_summary if $Summary && !$Silent;
if ( $Self_cover && !$Self_cover_run) {
$cover->delete;
delete $Run{vec};
}
chdir $starting_dir;
}
sub add_subroutine_cover
{
my ($op) = @_;
get_location($op);
return unless $File;
# print STDERR "Subroutine $Sub_name $File:$Line: ", $op->name, "\n";
my $key = get_key($op);
my $val = $Coverage->{statement}{$key} || 0;
my ($n, $new) = $Structure->add_count("subroutine");
# print STDERR "******* subroutine $n - $new\n";
$Structure->add_subroutine($File, [ $Line, $Sub_name ]) if $new;
$Run{count}{$File}{subroutine}[$n] += $val;
my $vec = $Run{vec}{$File}{subroutine};
vec($vec->{vec}, $n, 1) = $val ? 1 : 0;
$vec->{size} = $n + 1;
}
sub add_statement_cover
{
my ($op) = @_;
get_location($op);
return unless $File;
# print STDERR "Stmt $File:$Line: $op $$op ", $op->name, "\n";
$Run{digests}{$File} ||= $Structure->set_file($File);
my $key = get_key($op);
my $val = $Coverage->{statement}{$key} || 0;
my ($n, $new) = $Structure->add_count("statement");
$Structure->add_statement($File, $Line) if $new;
$Run{count}{$File}{statement}[$n] += $val;
my $vec = $Run{vec}{$File}{statement};
vec($vec->{vec}, $n, 1) = $val ? 1 : 0;
$vec->{size} = $n + 1;
no warnings "uninitialized";
$Run{count}{$File}{time}[$n] += $Coverage->{time}{$key}
if exists $Coverage->{time} && exists $Coverage->{time}{$key};
}
sub add_branch_cover
{
return unless $Collect && $Coverage{branch};
my ($op, $type, $text, $file, $line) = @_;
# return unless $Seen{branch}{$$op}++;
$text =~ s/^\s+//;
$text =~ s/\s+$//;
my $key = get_key($op);
my $c = $Coverage->{condition}{$key};
no warnings "uninitialized";
# warn "add_branch_cover $File:$Line [$type][@{[join ', ', @$c]}]\n";
if ($type eq "and" ||
$type eq "or" ||
($type eq "elsif" && !exists $Coverage->{branch}{$key}))
{
# and => this could also be a plain if with no else or elsif
# or => this could also be an unless with no else or elsif
# elsif => no subsequent elsifs or elses
# True path taken if not short circuited.
# False path taken if short circuited.
$c = [ $c->[1] + $c->[2], $c->[3] ];
# print STDERR "branch $type [@$c]\n";
}
else
{
$c = $Coverage->{branch}{$key} || [0, 0];
}
my ($n, $new) = $Structure->add_count("branch");
$Structure->add_branch($file, [ $line, { text => $text } ]) if $new;
my $ccount = $Run{count}{$file};
if (exists $ccount->{branch}[$n])
{
$ccount->{branch}[$n][$_] += $c->[$_] for 0 .. $#$c;
}
else
{
$ccount->{branch}[$n] = $c;
my $vec = $Run{vec}{$File}{branch};
vec($vec->{vec}, $vec->{size}++, 1) = $_ ||= 0 ? 1 : 0 for @$c;
}
# warn "branch $type %x [@$c] => [@{$ccount->{branch}[$n]}]\n", $$op;
}
my %condition_locations;
sub add_condition_cover
{
my ($op, $strop, $left, $right) = @_;
unless ($Collect)
{
# $condition_locations{$$op} = [ $File, $Line ];
return
}
# local ($File, $Line) = @{$condition_locations{$$op}}
# if exists $condition_locations{$$op};
my $key = get_key($op);
# warn "Condition cover $$op from $File:$Line\n";
# print STDERR "left: [$left]\nright: [$right]\n";
# use Carp "cluck"; cluck("from here");
my $type = $op->name;
# print STDERR "type: [$type]\n";
$type =~ s/assign$//;
$type = "or" if $type eq "dor";
# print STDERR "type: [$type]\n";
my $c = $Coverage->{condition}{$key};
# print STDERR "Condition: ", Dumper $c;
no warnings "uninitialized";
my $count;
if ($type eq "or" || $type eq "and")
{
my $r = $op->first->sibling;
my $name = $r->name;
$name = $r->first->name if $name eq "sassign";
# TODO - exec? any others?
# print STDERR "Name [$name]\n";
if ($c->[5] || $name =~ $Const_right)
{
$c = [ $c->[3], $c->[1] + $c->[2] ];
$count = 2;
# print STDERR "Special short circuit\n";
}
else
{
@$c = @{$c}[$type eq "or" ? (3, 2, 1) : (3, 1, 2)];
$count = 3;
}
# print STDERR "$type 3 $name [@$c] $File:$Line\n";
}
elsif ($type eq "xor")
{
# !l&&!r l&&!r l&&r !l&&r
@$c = @{$c}[3, 2, 4, 1];
$count = 4;
}
else
{
die qq(Unknown type "$type" for conditional);
}
my $structure =
{
type => "${type}_${count}",
op => $strop,
left => $left,
right => $right,
};
my ($n, $new) = $Structure->add_count("condition");
$Structure->add_condition($File, [ $Line, $structure ]) if $new;
my $ccount = $Run{count}{$File};
if (exists $ccount->{condition}[$n])
{
$ccount->{condition}[$n][$_] += $c->[$_] for 0 .. $#$c;
}
else
{
$ccount->{condition}[$n] = $c;
my $vec = $Run{vec}{$File}{condition};
vec($vec->{vec}, $vec->{size}++, 1) = $_ ||= 0 ? 1 : 0 for @$c;
}
}
*is_scope = \&B::Deparse::is_scope;
*is_state = \&B::Deparse::is_state;
*is_ifelse_cont = \&B::Deparse::is_ifelse_cont;
{
my %Original;
BEGIN
{
$Original{deparse} = \&B::Deparse::deparse;
$Original{logop} = \&B::Deparse::logop;
$Original{logassignop} = \&B::Deparse::logassignop;
}
sub deparse
{
my $self = shift;
my ($op, $cx) = @_;
my $deparse;
if ($Collect)
{
my $class = class($op);
my $null = $class eq "NULL";
my $name = $op->can("name") ? $op->name : "Unknown";
# print STDERR "$class:$name at $File:$Line\n";
{
# Collect everything under here.
local ($File, $Line) = ($File, $Line);
$deparse = eval { local $^W; $Original{deparse}->($self, @_) };
$deparse =~ s/^\010+//mg if defined $deparse;
$deparse = "Deparse error: $@" if $@;
# print STDERR "Collect Deparse $op $$op => <$deparse>\n";
}
# Get the coverage on this op.
if ($class eq "COP" && $Coverage{statement})
{
add_statement_cover($op) unless $Seen{statement}{$$op}++;
}
elsif (!$null && $name eq "null"
&& ppname($op->targ) eq "pp_nextstate"
&& $Coverage{statement})
{
# If the current op is null, but it was nextstate, we can still
# get at the file and line number, but we need to get dirty.
bless $op, "B::COP";
add_statement_cover($op) unless $Seen{statement}{$$op}++;
bless $op, "B::$class";
}
elsif ($Seen{other}{$$op}++)
{
return "" # Only report on each op once.
}
elsif ($name eq "cond_expr")
{
local ($File, $Line) = ($File, $Line);
my $cond = $op->first;
my $true = $cond->sibling;
my $false = $true->sibling;
if (!($cx < 1 && (is_scope($true) && $true->name ne "null") &&
(is_scope($false) || is_ifelse_cont($false))
&& $self->{'expand'} < 7))
{
{ local $Collect; $cond = $self->deparse($cond, 8) }
add_branch_cover($op, "if", "$cond ? :", $File, $Line);
}
else
{
{ local $Collect; $cond = $self->deparse($cond, 1) }
add_branch_cover($op, "if", "if ($cond) { }", $File, $Line);
while (class($false) ne "NULL" && is_ifelse_cont($false))
{
my $newop = $false->first;
my $newcond = $newop->first;
my $newtrue = $newcond->sibling;
if ($newcond->name eq "lineseq")
{
# lineseq to ensure correct line numbers in elsif()
# Bug #37302 fixed by change #33710.
$newcond = $newcond->first->sibling;
}
# last in chain is OP_AND => no else
$false = $newtrue->sibling;
{ local $Collect; $newcond = $self->deparse($newcond, 1) }
add_branch_cover($newop, "elsif", "elsif ($newcond) { }",
$File, $Line);
}
}
}
}
else
{
local ($File, $Line) = ($File, $Line);
$deparse = eval { local $^W; $Original{deparse}->($self, @_) };
$deparse =~ s/^\010+//mg if defined $deparse;
$deparse = "Deparse error: $@" if $@;
# print STDERR "Deparse => <$deparse>\n";
}
$deparse
}
sub logop
{
my $self = shift;
my ($op, $cx, $lowop, $lowprec, $highop, $highprec, $blockname) = @_;
my $left = $op->first;
my $right = $op->first->sibling;
# print STDERR "left [$left], right [$right]\n";
my ($file, $line) = ($File, $Line);
if ($cx < 1 && is_scope($right) && $blockname && $self->{expand} < 7)
{
# print STDERR 'if ($a) {$b}', "\n";
# if ($a) {$b}
{
# local $Collect;
$left = $self->deparse($left, 1);
$right = $self->deparse($right, 0);
}
add_branch_cover($op, $lowop, "$blockname ($left)", $file, $line)
unless $Seen{branch}{$$op}++;
return "$blockname ($left) {\n\t$right\n\b}\cK"
}
elsif ($cx < 1 && $blockname && !$self->{parens} && $self->{expand} < 7)
{
# print STDERR '$b if $a', "\n";
# $b if $a
{
# local $Collect;
$right = $self->deparse($right, 1);
$left = $self->deparse($left, 1);
}
add_branch_cover($op, $lowop, "$blockname $left", $file, $line)
unless $Seen{branch}{$$op}++;
return "$right $blockname $left"
}
elsif ($cx > $lowprec && $highop)
{
# print STDERR '$a && $b', "\n";
# $a && $b
{
local $Collect;
$left = $self->deparse_binop_left ($op, $left, $highprec);
$right = $self->deparse_binop_right($op, $right, $highprec);
}
# print STDERR "left [$left], right [$right]\n";
add_condition_cover($op, $highop, $left, $right)
unless $Seen{condition}{$$op}++;
return $self->maybe_parens("$left $highop $right", $cx, $highprec)
}
else
{
# print STDERR '$a and $b', "\n";
# $a and $b
{
# local $Collect;
$left = $self->deparse_binop_left ($op, $left, $lowprec);
$right = $self->deparse_binop_right($op, $right, $lowprec);
}
add_condition_cover($op, $lowop, $left, $right)
unless $Seen{condition}{$$op}++;
return $self->maybe_parens("$left $lowop $right", $cx, $lowprec)
}
}
sub logassignop
{
my $self = shift;
my ($op, $cx, $opname) = @_;
my $left = $op->first;
my $right = $op->first->sibling->first; # skip sassign
$left = $self->deparse($left, 7);
$right = $self->deparse($right, 7);
add_condition_cover($op, $opname, $left, $right);
return $self->maybe_parens("$left $opname $right", $cx, 7);
}
}
sub get_cover
{
my $deparse = B::Deparse->new;
my $cv = $deparse->{curcv} = shift;
($Sub_name, my $start) = sub_info($cv);
# warn "get_cover: <$Sub_name>\n";
return unless defined $Sub_name; # Only happens within Safe.pm, AFAIK.
# return unless length $Sub_name; # Only happens with Self_cover, AFAIK.
get_location($start) if $start;
# print STDERR "[[$File:$Line]]\n";
# return unless length $File;
return if length $File && !use_file($File);
return if !$Self_cover_run && $File =~ /Devel\/Cover/;
return if $Self_cover_run && $File !~ /Devel\/Cover/;
return if $Self_cover_run &&
$File =~ /Devel\/Cover\.pm$/ &&
$Sub_name eq "import";
# printf STDERR "getting cover for $Sub_name ($start), %x\n", $$cv;
if ($start)
{
no warnings "uninitialized";
if ($File eq $Structure->get_file && $Line == $Structure->get_line &&
$Sub_name eq "__ANON__" && $Structure->get_sub_name eq "__ANON__")
{
# Merge instances of anonymous subs into one.
# TODO - multiple anonymous subs on the same line.
}
else
{
my $count = $Sub_count->{$File}{$Line}{$Sub_name}++;
$Structure->set_subroutine($Sub_name, $File, $Line, $count);
add_subroutine_cover($start)
if $Coverage{subroutine} || $Coverage{pod}; # pod requires subs
}
}
if ($Pod && $Coverage{pod})
{
unless ($cv->GV->isa("B::SPECIAL"))
{
my $stash = $cv->GV->STASH;
my $pkg = $stash->NAME;
my $file = $cv->FILE;
my %opts;
$Run{digests}{$File} ||= $Structure->set_file($File);
if (ref $Coverage_options{pod})
{
my $p;
for (@{$Coverage_options{pod}})
{
if (/^package|private|also_private|trust_me|pod_from|nocp$/)
{
$opts{$p = $_} = [];
}
elsif ($p)
{
push @{$opts{$p}}, $_;
}
}
for $p (qw( private also_private trust_me ))
{
next unless exists $opts{$p};
$_ = qr/$_/ for @{$opts{$p}};
}
}
$Pod = "Pod::Coverage" if delete $opts{nocp};
# print STDERR "$Pod, ", Dumper \%opts;
if ($Pod{$file} ||= $Pod->new(package => $pkg, %opts))
{
my $covered;
for ($Pod{$file}->covered)
{
$covered = 1, last if $_ eq $Sub_name;
}
unless ($covered)
{
for ($Pod{$file}->uncovered)
{
$covered = 0, last if $_ eq $Sub_name;
}
}
if (defined $covered)
{
my ($n, $new) = $Structure->add_count("pod");
$Structure->add_pod($File, [ $Line, $Sub_name ]) if $new;
$Run{count}{$File}{pod}[$n] += $covered;
my $vec = $Run{vec}{$File}{pod};
vec($vec->{vec}, $n, 1) = $covered ? 1 : 0;
$vec->{size} = $n + 1;
}
}
}
}
# my $dd = @_ && ref $_[0]
# ? $deparse->deparse($_[0], 0)
# : $deparse->deparse_sub($cv, 0);
# print STDERR "get_cover: <$Sub_name>\n";
# print STDERR "[[$File:$Line]]\n";
# print STDERR "<$dd>\n";
no warnings "redefine";
local *B::Deparse::deparse = \&deparse;
local *B::Deparse::logop = \&logop;
local *B::Deparse::logassignop = \&logassignop;
my $de = @_ && ref $_[0]
? $deparse->deparse($_[0], 0)
: $deparse->deparse_sub($cv, 0);
# print STDERR "<$de>\n";
$de
}
1
__END__
=head1 NAME
Devel::Cover - Code coverage metrics for Perl
=head1 VERSION
version 0.89
=head1 SYNOPSIS
To get coverage for an uninstalled module:
cover -test
or
cover -delete
HARNESS_PERL_SWITCHES=-MDevel::Cover make test
cover
To get coverage for an uninstalled module which uses Module::Build (0.26 or
later):
./Build testcover
If the module does not use the t/*.t framework:
PERL5OPT=-MDevel::Cover make test
If you want to get coverage for a program:
perl -MDevel::Cover yourprog args
cover
perl -MDevel::Cover=-db,cover_db,-coverage,statement,time yourprog args
=head1 DESCRIPTION
This module provides code coverage metrics for Perl. Code coverage metrics
describe how thoroughly tests exercise code. By using Devel::Cover you can
discover areas of code not exercised by your tests and determine which tests
to create to increase coverage. Code coverage can be considered as an
indirect measure of quality.
Although it is still being developed, Devel::Cover is now quite stable and
provides many of the features to be expected in a useful coverage tool.
Statement, branch, condition, subroutine, and pod coverage information is
reported. Statement coverage data should be reasonable. Branch and condition
coverage data should be mostly accurate too, although not always what one
might initially expect. Subroutine coverage should be as accurate as
statement coverage. Pod coverage comes from L<Pod::Coverage>. If
L<Pod::Coverage::CountParents> is available it will be used instead. Coverage
data for other criteria are not yet collected.
The F<cover> program can be used to generate coverage reports. Devel::Cover
ships with a number of different reports including various types of HTML
output, textual reports, a report to display missing coverage in the same
format as compilation errors and a report to display coverage information
within the Vim editor.
It is possible to add annotations to reports, for example you could add a
column to an HTML report showing who last changed a line, as determined by git
blame. Some annotation modules are shipped with Devel::Cover and you can
easily create your own.
The F<gcov2perl> program can be used to convert gcov files to C<Devel::Cover>
databases. This allows you to display your C or XS code coverage together
with your Perl coverage, or to use any of the Devel::Cvoer reports to display
your C coverage data.
You may find that the coverage results don't match your expectations. This
could be due to a bug in Devel::Cover, but code coverage can be unintuitive to
newcomers, and especially so with Perl, so you may want to reconsider your
expectations as well.
Code coverage data are collected by replacing perl ops with functions which
count how many times the ops are executed. These data are then mapped back to
reality using the B compiler modules. There is also a statement profiling
facility which should not be relied on. For proper profiling use
Devel::NYTProf. Previous versions of Devel::Cover collected coverage data by
replacing perl's runops function. It is still possible to switch to that mode
of operation, but this now gets little testing and will probably be removed
soon. You probably don't care about any of this.
The most appropriate mailing list on which to discuss this module would be
perl-qa. Discussion has migrated there from perl-qa-metrics which is now
defunct. See L<http://lists.perl.org/list/perl-qa.html>.
The Devel::Cover repository can be found at
L<http://github.com/pjcj/Devel--Cover>.
=head1 REQUIREMENTS AND RECOMMENDED MODULES
=head2 REQUIREMENTS
=over
=item * Perl 5.6.1 or greater. Perl 5.8.8 or greater is recommended.
Perl 5.7 is unsupported. Perl 5.8.8 or greater is recommended. Perl 5.8.7
has problems and may crash. Whilst Perl 5.6 should mostly work you will
probably miss out on coverage information which would be available using a
more modern version and will likely run into bugs in perl. Different versions
of perl may give slightly different results due to changes in the op tree.
=item * The ability to compile XS extensions.
This means a working C compiler and make program at least. If you built perl
from source you will have these already and they will be used automatically.
If your perl was built in some other way, for example you may have installed
it using your Operating System's packaging mechanism, you will need to ensure
that the appropriate tools are installed.
=item * L<Storable> and L<Digest::MD5>
Both are in the core in Perl 5.8.0 and above.
=back
=head2 OPTIONAL MODULES
=over
=item * L<Template>, and either L<PPI::HTML> or L<Perl::Tidy>
Needed if you want syntax highlighted HTML reports.
=item * L<Pod::Coverage> (0.06 or above) or L<Pod::Coverage::CountParents>
One is needed if you want Pod coverage. If L<Pod::Coverage::CountParents> is
installed, it is preferred.
=item * L<Test::More>
Required if you want to run Devel::Cover's own tests.
=item * L<Test::Warn>
Some of Devel::Cover's own tests require it.
=item * L<Test::Differences>
if the tests fail and you would like nice output telling you why.
=item * L<Template>, and L<Parallel::Iterator>
Needed if you want to run cpancover.
=back
=head2 Use with mod_perl
By adding C<use Devel::Cover;> to your mod_perl startup script, you should be
able to collect coverage information when running under mod_perl. You can
also add any options you need at this point. I would suggest adding this as
early as possible in your startup script in order to collect as much coverage
information as possible.
=head1 OPTIONS
-blib - "use blib" and ignore files matching \bt/ (default true
iff blib directory exists).
-coverage criterion - Turn on coverage for the specified criterion. Criteria
include statement, branch, condition, path, subroutine,
pod, time, all and none (default all available).
-db cover_db - Store results in coverage db (default ./cover_db).
-dir path - Directory in which coverage will be collected (default
cwd).
-ignore RE - Set REs of files to ignore (default "/Devel/Cover\b").
+ignore RE - Append to REs of files to ignore.
-inc path - Set prefixes of files to ignore (default @INC).
+inc path - Append to prefixes of files to ignore.
-merge val - Merge databases, for multiple test benches (default on).
-select RE - Set REs of files to select (default none).
+select RE - Append to REs of files to select.
-silent val - Don't print informational messages (default off).
-subs_only val - Only cover code in subroutine bodies (default off).
-replace_ops val - Use op replacing rather than runops (default on).
-summary val - Print summary information iff val is true (default on).
=head2 More on Coverage Options
You can specify options to some coverage criteria. At the moment only pod
coverage takes any options. These are the parameters which are passed into
the Pod::Coverage constructor. The extra options are separated by dashes, and
you may specify as many as you wish. For example, to specify that all
subroutines containing xx are private, call Devel::Cover with the option
-coverage,pod-also_private-xx.
=head1 SELECTING FILES TO COVER
You may select the files for which you want to collect coverage data using the
select, ignore and inc options. The system uses the following procedure to
decide whether a file will be included in coverage reports:
=over
=item * If the file matches a RE given as a select option, it will be
included.
=item * Otherwise, if it matches a RE given as an ignore option, it won't be
included.
=item * Otherwise, if it is in one of the inc directories, it won't be
included.
=item * Otherwise, it will be included.
=back
You may add to the REs to select by using +select, or you may reset the
selections using -select. The same principle applies to the REs to ignore.
The inc directories are initially populated with the contents of the @INC
array at the time Devel::Cover was built. You may reset these directories
using -inc, or add to them using +inc.
Although these options take regular expressions, you should not enclose the RE
within // or any other quoting characters.
=head1 ENVIRONMENT
The -silent option is turned on when Devel::Cover is invoked via
$HARNESS_PERL_SWITCHES or $PERL5OPT. Devel::Cover tries to do the right thing
when $MOD_PERL is set. $DEVEL_COVER_OPTIONS is appended to any options passed
into Devel::Cover.
When running Devel::Cover's own test suite, $DEVEL_COVER_DEBUG turns on
debugging information, $DEVEL_COVER_GOLDEN_VERSION overrides Devel::Cover's
own idea of which golden results it should test against, and
$DEVEL_COVER_NO_COVERAGE runs the tests without collecting coverage. The
environment variables described in this paragraph are of interest to
Devel::Cover maintainers only.
=head1 ACKNOWLEDGEMENTS
Some code and ideas cribbed from:
Devel::OpProf
B::Concise
B::Deparse
=head1 SEE ALSO
Devel::Cover::Tutorial
B
Pod::Coverage
=head1 LIMITATIONS
There are things that Devel::Cover can't cover.
=head2 Absence of shared dependencies
Perl keeps track of which modules have been loaded (to avoid reloading
them). Because of this, it isn't possible to get coverage for a path
where a runtime import fails if the module being imported is one that
Devel::Cover uses internally. For example, suppose your program has
this function:
sub foo {
eval { require Storable };
if ($@) {
carp "Can't find Storable";
return;
}
# ...
}
You might write a test for the failure mode as
BEGIN { @INC = () }
foo();
# check for error message
Because Devel::Cover uses Storable internally, the import will succeed
(and the test will fail) under a coverage run.
Modules used by Devel::Cover while gathering coverage:
=over 4
=item * B
=item * B::Debug
=item * B::Deparse
=item * Carp
=item * Cwd
=item * Digest::MD5
=item * File::Path
=item * File::Spec
=item * Storable
=back
=head2 Redefined subroutines
If you redefine a subroutine you may find that the original subroutine is not
reported on. This is because I haven't yet found a way to locate the original
CV. Hints, tips or patches to resolve this will be gladly accepted.
=head1 BUGS
Almost certainly.
See the BUGS file, the TODO file and the bug trackers at
https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-Cover and
https://github.com/pjcj/Devel--Cover/issues?sort=created&direction=desc&state=open
=head1 LICENCE
Copyright 2001-2012, Paul Johnson (paul@pjcj.net)
This software is free. It is licensed under the same terms as Perl itself.
The latest version of this software should be available on CPAN and from my
homepage: http://www.pjcj.net/.
=cut
|