Makefile.ksplice: Rewrite ksplice-cow-check as a wrapper function.
[ksplice.git] / Verbose.pm
bloba353f426be7c59fdbc35c5b99800d19e93141e4d
1 package Verbose;
2 use strict;
3 use warnings;
5 our $AUTOLOAD;
6 our $level = 0;
8 sub import {
9 my $self = shift;
10 my $minlevel = 0;
11 foreach (@_) {
12 if (m/^:(\d+)$/) {
13 $minlevel = $1;
14 } else {
15 &make_verbose($minlevel, $_, (caller)[0]);
20 sub AUTOLOAD {
21 &make_verbose($AUTOLOAD, (caller)[0]);
22 goto &$AUTOLOAD;
25 sub debugcall {
26 my ($minlevel, $name, @args) = @_;
27 local $" = ', ';
28 print "+ $name(@args)\n" if ($level >= $minlevel);
31 sub make_verbose {
32 no strict 'refs';
33 no warnings qw(redefine prototype);
34 my ($minlevel, $sym, $pkg) = @_;
35 $sym = "${pkg}::$sym" unless $sym =~ /::/;
36 my $name = $sym;
37 $name =~ s/.*::// or $name =~ s/^&//;
38 my ($sref, $call, $proto);
39 if (defined(&$sym)) {
40 $sref = \&$sym;
41 $call = '&$sref';
42 $proto = prototype $sref;
43 } else {
44 $call = "CORE::$name";
45 $proto = prototype $call;
47 $proto = '@' unless defined($proto);
48 my $code = "package $pkg; sub ($proto) { Verbose::debugcall($minlevel, \"$name\", \@_); $call(\@_); }";
49 *{$sym} = eval($code);