This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
untodo the no-longer-failing todo test for rgs' patch
[perl5.git] / lib / assert.pl
1 # assert.pl
2 # tchrist@convex.com (Tom Christiansen)
3
4 # Usage:
5
6 #     &assert('@x > @y');
7 #     &assert('$var > 10', $var, $othervar, @various_info);
8
9 # That is, if the first expression evals false, we blow up.  The
10 # rest of the args, if any, are nice to know because they will
11 # be printed out by &panic, which is just the stack-backtrace
12 # routine shamelessly borrowed from the perl debugger.
13
14 warn( "The 'assert.pl' legacy library is deprecated and will be"
15       . " removed in the next major release of perl." );
16
17 sub assert {
18     &panic("ASSERTION BOTCHED: $_[$[]",$@) unless eval $_[$[];
19
20
21 sub panic {
22     package DB;
23
24     select(STDERR);
25
26     print "\npanic: @_\n";
27
28     exit 1 if $] <= 4.003;  # caller broken
29
30     # stack traceback gratefully borrowed from perl debugger
31
32     local $_;
33     my $i;
34     my ($p,$f,$l,$s,$h,$a,@a,@frames);
35     for ($i = 0; ($p,$f,$l,$s,$h,$w) = caller($i); $i++) {
36         @a = @args;
37         for (@a) {
38             if (/^StB\000/ && length($_) == length($_main{'_main'})) {
39                 $_ = sprintf("%s",$_);
40             }
41             else {
42                 s/'/\\'/g;
43                 s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;
44                 s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
45                 s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
46             }
47         }
48         $w = $w ? '@ = ' : '$ = ';
49         $a = $h ? '(' . join(', ', @a) . ')' : '';
50         push(@frames, "$w&$s$a from file $f line $l\n");
51     }
52     for ($i=0; $i <= $#frames; $i++) {
53         print $frames[$i];
54     }
55     exit 1;
56
57
58 1;