App-Test-Generator
view release on metacpan or search on metacpan
lib/Devel/App/Test/Generator/LCSAJ/Runtime.pm view on Meta::CPAN
#
# Side effects: Increments %HITS{$norm}{$line}.
#
# Notes: This sub lives in the DB:: package as
# required by Perl's debugger protocol.
# It is called for every statement executed
# while the debugger is active, so it must
# be as fast as possible.
# Internal files and out-of-target files
# are skipped immediately.
# abs_path() resolution is memoised in
# %NORM_CACHE per raw $file, since the same
# file is seen on every consecutive statement.
# --------------------------------------------------
=head2 DB::DB
Perl debugger hook, automatically invoked by the interpreter before every
statement while this module is active as a C<-d:> debugger backend.
Records a per-(file, line) hit count used later for LCSAJ coverage
analysis.
=head3 Arguments
None. Perl calls this sub directly; the current execution location is
obtained internally via C<caller(0)>.
=head3 Returns
Nothing meaningful - this is a void debugger callback.
=head3 Side effects
Increments C<%HITS{$norm}{$line}> for the normalised path and line number
of the statement about to execute. Resolves each distinct raw filename
via C<Cwd::abs_path> once, memoising the result in C<%NORM_CACHE>.
=head3 Usage example
Not called directly - activated via the Perl debugger flag:
PERL5OPT='-d:App::Test::Generator::LCSAJ::Runtime -Mblib' prove -l t
=head3 API specification
=head4 input
{ }
=head4 output
{ type => UNDEF }
=cut
sub DB::DB {
my (undef, $file, $line) = caller(0);
return unless defined $file && defined $line;
# Resolve symlinks and relative components to a stable absolute path,
# cached per raw $file to avoid a stat() on every statement
my $norm = $NORM_CACHE{$file} //= _normalize(abs_path($file) // $file);
# Never record hits inside this module itself â suffix match is used
# so it works regardless of CWD or install prefix
return if $norm =~ m{(?:^|/)Devel/App/Test/Generator/LCSAJ/Runtime\.pm$};
# If a target list was provided, skip files not in it
if(%TARGET) {
return unless $TARGET{$norm};
}
$HITS{$norm}{$line}++;
}
# --------------------------------------------------
# _write_results
#
# Serialise %HITS to a per-process JSON
# file in the output directory.
#
# Entry: None. Reads %HITS and $OUT_DIR.
#
# Exit: Returns nothing. Writes a JSON file.
# Returns immediately if %HITS is empty.
#
# Side effects: Creates $OUT_DIR if absent.
# Writes cover_html/lcsaj_hits/hits_PID.json
#
# Notes: Called from END so it runs even when
# prove exits non-zero â mutation tests
# are expected to fail. PID is included
# in the filename so parallel test runs
# produce separate files without collision.
# --------------------------------------------------
sub _write_results {
return unless %HITS;
# Include PID in filename to support parallel test runs
my $out_file = "$OUT_DIR/hits_$$.json";
make_path($OUT_DIR) unless -d $OUT_DIR;
# autodie is disabled for this open -- under "use autodie qw(open)"
# open() never returns false on failure, it throws its own exception
# instead, which would silently make the "or croak" below dead code
no autodie qw(open);
open my $fh, '>', $out_file or croak "Cannot write $out_file: $!";
print $fh encode_json(\%HITS);
close $fh;
}
1;
__END__
=head1 OUTPUT FORMAT
C<cover_html/lcsaj_hits/hits_PID.json> is a JSON object of the form:
( run in 0.492 second using v1.01-cache-2.11-cpan-0fb53d1c279 )