| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | #line 1 | 
| 2 | 2 |  |  | 2 |  | 11 | package Spiffy; | 
|  | 2 |  |  |  |  | 5 |  | 
|  | 2 |  |  |  |  | 80 |  | 
| 3 | 2 |  |  | 2 |  | 38 | use strict; | 
|  | 2 |  |  |  |  | 8 |  | 
|  | 2 |  |  |  |  | 76 |  | 
| 4 | 2 |  |  | 2 |  | 10 | use 5.006001; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 81 |  | 
| 5 | 2 |  |  | 2 |  | 11 | use warnings; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 1071 |  | 
| 6 |  |  |  |  |  |  | use Carp; | 
| 7 |  |  |  |  |  |  | require Exporter; | 
| 8 |  |  |  |  |  |  | our $VERSION = '0.30'; | 
| 9 |  |  |  |  |  |  | our @EXPORT = (); | 
| 10 |  |  |  |  |  |  | our @EXPORT_BASE = qw(field const stub super); | 
| 11 |  |  |  |  |  |  | our @EXPORT_OK = (@EXPORT_BASE, qw(id WWW XXX YYY ZZZ)); | 
| 12 |  |  |  |  |  |  | our %EXPORT_TAGS = (XXX => [qw(WWW XXX YYY ZZZ)]); | 
| 13 |  |  |  |  |  |  |  | 
| 14 |  |  |  |  |  |  | my $stack_frame = 0; | 
| 15 |  |  |  |  |  |  | my $dump = 'yaml'; | 
| 16 |  |  |  |  |  |  | my $bases_map = {}; | 
| 17 |  |  |  |  |  |  |  | 
| 18 |  |  |  |  |  |  | sub WWW; sub XXX; sub YYY; sub ZZZ; | 
| 19 |  |  |  |  |  |  |  | 
| 20 |  |  |  |  |  |  | # This line is here to convince "autouse" into believing we are autousable. | 
| 21 | 207 | 50 | 33 | 207 | 0 | 1820 | sub can { | 
| 22 |  |  |  |  |  |  | ($_[1] eq 'import' and caller()->isa('autouse')) | 
| 23 |  |  |  |  |  |  | ? \&Exporter::import        # pacify autouse's equality test | 
| 24 |  |  |  |  |  |  | : $_[0]->SUPER::can($_[1])  # normal case | 
| 25 |  |  |  |  |  |  | } | 
| 26 |  |  |  |  |  |  |  | 
| 27 |  |  |  |  |  |  | # TODO | 
| 28 |  |  |  |  |  |  | # | 
| 29 |  |  |  |  |  |  | # Exported functions like field and super should be hidden so as not to | 
| 30 |  |  |  |  |  |  | # be confused with methods that can be inherited. | 
| 31 |  |  |  |  |  |  | # | 
| 32 |  |  |  |  |  |  |  | 
| 33 | 110 |  |  | 110 | 0 | 144 | sub new { | 
| 34 | 110 |  | 33 |  |  | 395 | my $class = shift; | 
| 35 | 110 |  |  |  |  | 262 | $class = ref($class) || $class; | 
| 36 | 110 |  |  |  |  | 260 | my $self = bless {}, $class; | 
| 37 | 0 |  |  |  |  | 0 | while (@_) { | 
| 38 | 0 |  |  |  |  | 0 | my $method = shift; | 
| 39 |  |  |  |  |  |  | $self->$method(shift); | 
| 40 | 110 |  |  |  |  | 249 | } | 
| 41 |  |  |  |  |  |  | return $self; | 
| 42 |  |  |  |  |  |  | } | 
| 43 |  |  |  |  |  |  |  | 
| 44 |  |  |  |  |  |  | my $filtered_files = {}; | 
| 45 |  |  |  |  |  |  | my $filter_dump = 0; | 
| 46 |  |  |  |  |  |  | my $filter_save = 0; | 
| 47 |  |  |  |  |  |  | our $filter_result = ''; | 
| 48 | 2 |  |  | 2 |  | 19 | sub import { | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 60 |  | 
| 49 | 2 |  |  | 2 |  | 10 | no strict 'refs'; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 2954 |  | 
| 50 | 14 |  |  | 14 |  | 48 | no warnings; | 
| 51 |  |  |  |  |  |  | my $self_package = shift; | 
| 52 |  |  |  |  |  |  |  | 
| 53 |  |  |  |  |  |  | # XXX Using parse_arguments here might cause confusion, because the | 
| 54 |  |  |  |  |  |  | # subclass's boolean_arguments and paired_arguments can conflict, causing | 
| 55 | 14 |  |  |  |  | 23 | # difficult debugging. Consider using something truly local. | 
| 56 |  |  |  |  |  |  | my ($args, @export_list) = do { | 
| 57 | 14 |  |  | 14 |  | 47 | local *boolean_arguments = sub { | 
| 58 |  |  |  |  |  |  | qw( | 
| 59 |  |  |  |  |  |  | -base -Base -mixin -selfless | 
| 60 |  |  |  |  |  |  | -XXX -dumper -yaml | 
| 61 |  |  |  |  |  |  | -filter_dump -filter_save | 
| 62 | 14 |  |  |  |  | 71 | ) | 
| 63 | 14 |  |  | 14 |  | 49 | }; | 
|  | 14 |  |  |  |  | 26 |  | 
| 64 | 14 |  |  |  |  | 77 | local *paired_arguments = sub { qw(-package) }; | 
| 65 |  |  |  |  |  |  | $self_package->parse_arguments(@_); | 
| 66 | 14 | 50 |  |  |  | 53 | }; | 
| 67 |  |  |  |  |  |  | return spiffy_mixin_import(scalar(caller(0)), $self_package, @export_list) | 
| 68 |  |  |  |  |  |  | if $args->{-mixin}; | 
| 69 | 14 | 50 |  |  |  | 37 |  | 
| 70 | 14 | 50 |  |  |  | 40 | $filter_dump = 1 if $args->{-filter_dump}; | 
| 71 | 14 | 50 |  |  |  | 43 | $filter_save = 1 if $args->{-filter_save}; | 
| 72 | 14 | 50 |  |  |  | 31 | $dump = 'yaml' if $args->{-yaml}; | 
| 73 |  |  |  |  |  |  | $dump = 'dumper' if $args->{-dumper}; | 
| 74 | 14 |  |  |  |  | 49 |  | 
| 75 |  |  |  |  |  |  | local @EXPORT_BASE = @EXPORT_BASE; | 
| 76 | 14 | 50 |  |  |  | 42 |  | 
| 77 | 0 | 0 |  |  |  | 0 | if ($args->{-XXX}) { | 
|  | 0 |  |  |  |  | 0 |  | 
| 78 |  |  |  |  |  |  | push @EXPORT_BASE, @{$EXPORT_TAGS{XXX}} | 
| 79 |  |  |  |  |  |  | unless grep /^XXX$/, @EXPORT_BASE; | 
| 80 |  |  |  |  |  |  | } | 
| 81 |  |  |  |  |  |  |  | 
| 82 | 14 | 100 | 66 |  |  | 146 | spiffy_filter() | 
|  |  |  | 66 |  |  |  |  | 
| 83 |  |  |  |  |  |  | if ($args->{-selfless} or $args->{-Base}) and | 
| 84 |  |  |  |  |  |  | not $filtered_files->{(caller($stack_frame))[1]}++; | 
| 85 | 14 |  | 33 |  |  | 170 |  | 
| 86 | 14 | 100 | 100 |  |  | 93 | my $caller_package = $args->{-package} || caller($stack_frame); | 
|  | 8 |  |  |  |  | 138 |  | 
| 87 |  |  |  |  |  |  | push @{"$caller_package\::ISA"}, $self_package | 
| 88 |  |  |  |  |  |  | if $args->{-Base} or $args->{-base}; | 
| 89 | 14 |  |  |  |  | 30 |  | 
|  | 14 |  |  |  |  | 41 |  | 
| 90 | 22 | 50 |  |  |  | 150 | for my $class (@{all_my_bases($self_package)}) { | 
| 91 | 220 |  |  |  |  | 928 | next unless $class->isa('Spiffy'); | 
| 92 | 220 |  |  |  |  | 247 | my @export = grep { | 
|  | 22 |  |  |  |  | 151 |  | 
| 93 | 12 |  |  |  |  | 45 | not defined &{"$caller_package\::$_"}; | 
| 94 |  |  |  |  |  |  | } ( @{"$class\::EXPORT"}, | 
| 95 | 22 | 100 | 100 |  |  | 34 | ($args->{-Base} or $args->{-base}) | 
| 96 |  |  |  |  |  |  | ? @{"$class\::EXPORT_BASE"} : (), | 
| 97 | 126 |  |  |  |  | 517 | ); | 
| 98 | 126 |  |  |  |  | 131 | my @export_ok = grep { | 
|  | 22 |  |  |  |  | 78 |  | 
| 99 | 22 |  |  |  |  | 29 | not defined &{"$caller_package\::$_"}; | 
| 100 |  |  |  |  |  |  | } @{"$class\::EXPORT_OK"}; | 
| 101 |  |  |  |  |  |  |  | 
| 102 |  |  |  |  |  |  | # Avoid calling the expensive Exporter::export | 
| 103 | 22 |  |  |  |  | 36 | # if there is nothing to do (optimization) | 
|  | 314 |  |  |  |  | 552 |  | 
| 104 | 22 | 100 |  |  |  | 123 | my %exportable = map { ($_, 1) } @export, @export_ok; | 
| 105 |  |  |  |  |  |  | next unless keys %exportable; | 
| 106 | 18 |  |  |  |  | 24 |  | 
|  | 18 |  |  |  |  | 70 |  | 
| 107 | 18 |  |  |  |  | 2877 | my @export_save = @{"$class\::EXPORT"}; | 
|  | 18 |  |  |  |  | 621 |  | 
| 108 | 18 |  |  |  |  | 28 | my @export_ok_save = @{"$class\::EXPORT_OK"}; | 
|  | 18 |  |  |  |  | 78 |  | 
| 109 | 18 |  |  |  |  | 34 | @{"$class\::EXPORT"} = @export; | 
|  | 18 |  |  |  |  | 68 |  | 
| 110 | 4 |  |  |  |  | 18 | @{"$class\::EXPORT_OK"} = @export_ok; | 
| 111 | 18 |  |  |  |  | 53 | my @list = grep { | 
| 112 | 4 | 50 |  |  |  | 20 | (my $v = $_) =~ s/^[\!\:]//; | 
|  | 0 |  |  |  |  | 0 |  | 
| 113 |  |  |  |  |  |  | $exportable{$v} or ${"$class\::EXPORT_TAGS"}{$v}; | 
| 114 | 18 |  |  |  |  | 2315 | } @export_list; | 
| 115 | 18 |  |  |  |  | 30 | Exporter::export($class, $caller_package, @list); | 
|  | 18 |  |  |  |  | 85 |  | 
| 116 | 18 |  |  |  |  | 31 | @{"$class\::EXPORT"} = @export_save; | 
|  | 18 |  |  |  |  | 2061 |  | 
| 117 |  |  |  |  |  |  | @{"$class\::EXPORT_OK"} = @export_ok_save; | 
| 118 |  |  |  |  |  |  | } | 
| 119 |  |  |  |  |  |  | } | 
| 120 |  |  |  |  |  |  |  | 
| 121 | 6 |  |  | 6 | 0 | 3218 | sub spiffy_filter { | 
| 122 | 6 |  |  |  |  | 11612 | require Filter::Util::Call; | 
| 123 |  |  |  |  |  |  | my $done = 0; | 
| 124 |  |  |  |  |  |  | Filter::Util::Call::filter_add( | 
| 125 | 8 | 100 |  | 8 |  | 311 | sub { | 
| 126 | 6 |  |  |  |  | 17 | return 0 if $done; | 
| 127 | 6 |  |  |  |  | 64 | my ($data, $end) = ('', ''); | 
| 128 | 1940 | 50 |  |  |  | 3065 | while (my $status = Filter::Util::Call::filter_read()) { | 
| 129 | 1940 | 100 |  |  |  | 3153 | return $status if $status < 0; | 
| 130 | 4 |  |  |  |  | 12 | if (/^__(?:END|DATA)__\r?$/) { | 
| 131 | 4 |  |  |  |  | 11 | $end = $_; | 
| 132 |  |  |  |  |  |  | last; | 
| 133 | 1936 |  |  |  |  | 2053 | } | 
| 134 | 1936 |  |  |  |  | 5440 | $data .= $_; | 
| 135 |  |  |  |  |  |  | $_ = ''; | 
| 136 | 6 |  |  |  |  | 71 | } | 
| 137 | 6 |  |  |  |  | 10 | $_ = $data; | 
| 138 | 6 |  |  |  |  | 636 | my @my_subs; | 
| 139 |  |  |  |  |  |  | s[^(sub\s+\w+\s+\{)(.*\n)] | 
| 140 | 6 |  |  |  |  | 414 | [${1}my \$self = shift;$2]gm; | 
| 141 |  |  |  |  |  |  | s[^(sub\s+\w+)\s*\(\s*\)(\s+\{.*\n)] | 
| 142 | 6 |  |  |  |  | 180 | [${1}${2}]gm; | 
| 143 | 0 |  |  |  |  | 0 | s[^my\s+sub\s+(\w+)(\s+\{)(.*)((?s:.*?\n))\}\n] | 
|  | 0 |  |  |  |  | 0 |  | 
| 144 | 6 |  |  |  |  | 15 | [push @my_subs, $1; "\$$1 = sub$2my \$self = shift;$3$4\};\n"]gem; | 
| 145 | 6 | 50 |  |  |  | 21 | my $preclare = ''; | 
| 146 | 0 |  |  |  |  | 0 | if (@my_subs) { | 
| 147 | 0 |  |  |  |  | 0 | $preclare = join ',', map "\$$_", @my_subs; | 
| 148 |  |  |  |  |  |  | $preclare = "my($preclare);"; | 
| 149 | 6 |  |  |  |  | 103 | } | 
| 150 | 6 | 50 |  |  |  | 28 | $_ = "use strict;use warnings;$preclare${_};1;\n$end"; | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 0 |  |  |  |  | 0 |  | 
| 151 | 6 | 50 |  |  |  | 16 | if ($filter_dump) { print; exit } | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 0 |  |  |  |  | 0 |  | 
| 152 | 6 |  |  |  |  | 287 | if ($filter_save) { $filter_result = $_; $_ = $filter_result; } | 
| 153 |  |  |  |  |  |  | $done = 1; | 
| 154 | 6 |  |  |  |  | 57 | } | 
| 155 |  |  |  |  |  |  | ); | 
| 156 |  |  |  |  |  |  | } | 
| 157 |  |  |  |  |  |  |  | 
| 158 | 0 |  |  | 0 | 0 | 0 | sub base { | 
| 159 | 0 |  |  |  |  | 0 | push @_, -base; | 
| 160 |  |  |  |  |  |  | goto &import; | 
| 161 |  |  |  |  |  |  | } | 
| 162 |  |  |  |  |  |  |  | 
| 163 | 20 |  |  | 20 | 0 | 31 | sub all_my_bases { | 
| 164 |  |  |  |  |  |  | my $class = shift; | 
| 165 | 20 | 100 |  |  |  | 89 |  | 
| 166 |  |  |  |  |  |  | return $bases_map->{$class} | 
| 167 |  |  |  |  |  |  | if defined $bases_map->{$class}; | 
| 168 | 8 |  |  |  |  | 16 |  | 
| 169 | 2 |  |  | 2 |  | 16 | my @bases = ($class); | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 553 |  | 
| 170 | 8 |  |  |  |  | 11 | no strict 'refs'; | 
|  | 8 |  |  |  |  | 37 |  | 
| 171 | 6 |  |  |  |  | 10 | for my $base_class (@{"${class}::ISA"}) { | 
|  | 6 |  |  |  |  | 19 |  | 
| 172 |  |  |  |  |  |  | push @bases, @{all_my_bases($base_class)}; | 
| 173 | 8 |  |  |  |  | 15 | } | 
| 174 | 8 |  |  |  |  | 15 | my $used = {}; | 
|  | 16 |  |  |  |  | 71 |  | 
| 175 |  |  |  |  |  |  | $bases_map->{$class} = [grep {not $used->{$_}++} @bases]; | 
| 176 |  |  |  |  |  |  | } | 
| 177 |  |  |  |  |  |  |  | 
| 178 |  |  |  |  |  |  | my %code = ( | 
| 179 |  |  |  |  |  |  | sub_start => | 
| 180 |  |  |  |  |  |  | "sub {\n", | 
| 181 |  |  |  |  |  |  | set_default => | 
| 182 |  |  |  |  |  |  | "  \$_[0]->{%s} = %s\n    unless exists \$_[0]->{%s};\n", | 
| 183 |  |  |  |  |  |  | init => | 
| 184 |  |  |  |  |  |  | "  return \$_[0]->{%s} = do { my \$self = \$_[0]; %s }\n" . | 
| 185 |  |  |  |  |  |  | "    unless \$#_ > 0 or defined \$_[0]->{%s};\n", | 
| 186 |  |  |  |  |  |  | weak_init => | 
| 187 |  |  |  |  |  |  | "  return do {\n" . | 
| 188 |  |  |  |  |  |  | "    \$_[0]->{%s} = do { my \$self = \$_[0]; %s };\n" . | 
| 189 |  |  |  |  |  |  | "    Scalar::Util::weaken(\$_[0]->{%s}) if ref \$_[0]->{%s};\n" . | 
| 190 |  |  |  |  |  |  | "    \$_[0]->{%s};\n" . | 
| 191 |  |  |  |  |  |  | "  } unless \$#_ > 0 or defined \$_[0]->{%s};\n", | 
| 192 |  |  |  |  |  |  | return_if_get => | 
| 193 |  |  |  |  |  |  | "  return \$_[0]->{%s} unless \$#_ > 0;\n", | 
| 194 |  |  |  |  |  |  | set => | 
| 195 |  |  |  |  |  |  | "  \$_[0]->{%s} = \$_[1];\n", | 
| 196 |  |  |  |  |  |  | weaken => | 
| 197 |  |  |  |  |  |  | "  Scalar::Util::weaken(\$_[0]->{%s}) if ref \$_[0]->{%s};\n", | 
| 198 |  |  |  |  |  |  | sub_end => | 
| 199 |  |  |  |  |  |  | "  return \$_[0]->{%s};\n}\n", | 
| 200 |  |  |  |  |  |  | ); | 
| 201 |  |  |  |  |  |  |  | 
| 202 | 34 |  |  | 34 | 0 | 69 | sub field { | 
| 203 | 34 |  |  |  |  | 38 | my $package = caller; | 
| 204 | 2 |  |  | 2 |  | 13 | my ($args, @values) = do { | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 801 |  | 
| 205 | 34 |  |  | 34 |  | 126 | no warnings; | 
|  | 34 |  |  |  |  | 67 |  | 
| 206 | 34 |  |  | 34 |  | 103 | local *boolean_arguments = sub { (qw(-weak)) }; | 
|  | 34 |  |  |  |  | 68 |  | 
| 207 | 34 |  |  |  |  | 112 | local *paired_arguments = sub { (qw(-package -init)) }; | 
| 208 |  |  |  |  |  |  | Spiffy->parse_arguments(@_); | 
| 209 | 34 |  |  |  |  | 70 | }; | 
| 210 | 34 | 50 |  |  |  | 92 | my ($field, $default) = @values; | 
| 211 | 34 | 50 | 66 |  |  | 107 | $package = $args->{-package} if defined $args->{-package}; | 
| 212 |  |  |  |  |  |  | die "Cannot have a default for a weakened field ($field)" | 
| 213 | 34 | 50 |  |  |  | 37 | if defined $default && $args->{-weak}; | 
|  | 34 |  |  |  |  | 183 |  | 
| 214 | 34 | 50 |  |  |  | 82 | return if defined &{"${package}::$field"}; | 
| 215 | 34 | 100 | 100 |  |  | 194 | require Scalar::Util if $args->{-weak}; | 
|  |  | 100 | 66 |  |  |  |  | 
| 216 |  |  |  |  |  |  | my $default_string = | 
| 217 |  |  |  |  |  |  | ( ref($default) eq 'ARRAY' and not @$default ) | 
| 218 |  |  |  |  |  |  | ? '[]' | 
| 219 |  |  |  |  |  |  | : (ref($default) eq 'HASH' and not keys %$default ) | 
| 220 |  |  |  |  |  |  | ? '{}' | 
| 221 |  |  |  |  |  |  | : default_as_code($default); | 
| 222 | 34 |  |  |  |  | 62 |  | 
| 223 | 34 | 100 |  |  |  | 91 | my $code = $code{sub_start}; | 
| 224 | 8 | 50 |  |  |  | 20 | if ($args->{-init}) { | 
| 225 | 8 |  |  |  |  | 36 | my $fragment = $args->{-weak} ? $code{weak_init} : $code{init}; | 
| 226 |  |  |  |  |  |  | $code .= sprintf $fragment, $field, $args->{-init}, ($field) x 4; | 
| 227 | 34 | 100 |  |  |  | 137 | } | 
| 228 |  |  |  |  |  |  | $code .= sprintf $code{set_default}, $field, $default_string, $field | 
| 229 | 34 |  |  |  |  | 102 | if defined $default; | 
| 230 | 34 |  |  |  |  | 59 | $code .= sprintf $code{return_if_get}, $field; | 
| 231 | 34 | 50 |  |  |  | 1363 | $code .= sprintf $code{set}, $field; | 
| 232 |  |  |  |  |  |  | $code .= sprintf $code{weaken}, $field, $field | 
| 233 | 34 |  |  |  |  | 73 | if $args->{-weak}; | 
| 234 |  |  |  |  |  |  | $code .= sprintf $code{sub_end}, $field; | 
| 235 | 34 | 100 | 100 | 10 |  | 3944 |  | 
|  | 10 | 100 | 33 |  |  | 73 |  | 
|  | 2 | 100 | 66 |  |  | 5 |  | 
|  | 2 | 50 | 100 |  |  | 47 |  | 
|  | 8 | 100 |  |  |  | 36 |  | 
|  | 1 | 50 |  |  |  | 14 |  | 
|  | 1 | 100 |  |  |  | 4 |  | 
|  | 32 | 100 |  |  |  | 111 |  | 
|  | 31 | 50 |  |  |  | 160 |  | 
|  | 0 | 100 |  |  |  | 0 |  | 
|  | 1 | 100 |  |  |  | 11 |  | 
|  | 152 | 50 |  |  |  | 2254 |  | 
|  | 7 | 0 |  |  |  | 14 |  | 
|  | 8 | 50 |  |  |  | 21 |  | 
|  | 2 | 50 |  |  |  | 15 |  | 
|  | 1 | 100 |  |  |  | 11 |  | 
|  | 0 | 100 |  |  |  | 0 |  | 
|  | 30 | 100 |  |  |  | 448 |  | 
|  | 2 | 100 |  |  |  | 6 |  | 
|  | 2 | 100 |  |  |  | 6 |  | 
|  | 6 | 100 |  |  |  | 26 |  | 
|  | 6 | 100 |  |  |  | 34 |  | 
|  | 1 | 100 |  |  |  | 7 |  | 
|  | 1 | 100 |  |  |  | 9 |  | 
|  | 7 | 100 |  |  |  | 26 |  | 
|  | 7 | 50 |  |  |  | 64 |  | 
|  | 1 | 50 |  |  |  | 2 |  | 
|  | 1 | 100 |  |  |  | 4 |  | 
|  | 1 |  |  |  |  | 11 |  | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 2 |  |  |  |  | 23 |  | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 12 |  | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 1 |  |  |  |  | 11 |  | 
|  | 1 |  |  |  |  | 10 |  | 
|  | 8 |  |  |  |  | 50 |  | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 3 |  |  |  |  | 56 |  | 
|  | 9 |  |  |  |  | 39 |  | 
|  | 2 |  |  |  |  | 7 |  | 
|  | 3 |  |  |  |  | 25 |  | 
|  | 32 |  |  |  |  | 126 |  | 
|  | 32 |  |  |  |  | 299 |  | 
|  | 2 |  |  |  |  | 11 |  | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 21 |  |  |  |  | 140 |  | 
|  | 13 |  |  |  |  | 55 |  | 
|  | 13 |  |  |  |  | 63 |  | 
|  | 1 |  |  |  |  | 11 |  | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 16 |  |  |  |  | 49 |  | 
|  | 48 |  |  |  |  | 144 |  | 
|  | 48 |  |  |  |  | 219 |  | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 4 |  | 
|  | 3 |  |  |  |  | 21 |  | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 3 |  |  |  |  | 25 |  | 
|  | 3 |  |  |  |  | 12 |  | 
|  | 2 |  |  |  |  | 33 |  | 
|  | 2 |  |  |  |  | 11 |  | 
|  | 7 |  |  |  |  | 17 |  | 
|  | 7 |  |  |  |  | 21 |  | 
|  | 7 |  |  |  |  | 19 |  | 
|  | 1 |  |  |  |  | 11 |  | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 89 |  |  |  |  | 255 |  | 
|  | 85 |  |  |  |  | 204 |  | 
|  | 85 |  |  |  |  | 172 |  | 
| 236 | 34 | 50 |  |  |  | 1490 | my $sub = eval $code; | 
| 237 | 2 |  |  | 2 |  | 27 | die $@ if $@; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 599 |  | 
| 238 | 34 |  |  |  |  | 38 | no strict 'refs'; | 
|  | 34 |  |  |  |  | 162 |  | 
| 239 | 34 | 50 |  |  |  | 141 | *{"${package}::$field"} = $sub; | 
| 240 |  |  |  |  |  |  | return $code if defined wantarray; | 
| 241 |  |  |  |  |  |  | } | 
| 242 |  |  |  |  |  |  |  | 
| 243 | 28 |  |  | 28 | 0 | 3316 | sub default_as_code { | 
| 244 | 28 |  |  |  |  | 31444 | require Data::Dumper; | 
| 245 | 28 |  |  |  |  | 75 | local $Data::Dumper::Sortkeys = 1; | 
| 246 | 28 |  |  |  |  | 1482 | my $code = Data::Dumper::Dumper(shift); | 
| 247 | 28 |  |  |  |  | 71 | $code =~ s/^\$VAR1 = //; | 
| 248 | 28 |  |  |  |  | 68 | $code =~ s/;$//; | 
| 249 |  |  |  |  |  |  | return $code; | 
| 250 |  |  |  |  |  |  | } | 
| 251 |  |  |  |  |  |  |  | 
| 252 | 0 |  |  | 0 | 0 | 0 | sub const { | 
| 253 | 0 |  |  |  |  | 0 | my $package = caller; | 
| 254 | 2 |  |  | 2 |  | 25 | my ($args, @values) = do { | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 342 |  | 
| 255 | 0 |  |  | 0 |  | 0 | no warnings; | 
|  | 0 |  |  |  |  | 0 |  | 
| 256 | 0 |  |  |  |  | 0 | local *paired_arguments = sub { (qw(-package)) }; | 
| 257 |  |  |  |  |  |  | Spiffy->parse_arguments(@_); | 
| 258 | 0 |  |  |  |  | 0 | }; | 
| 259 | 0 | 0 |  |  |  | 0 | my ($field, $default) = @values; | 
| 260 | 2 |  |  | 2 |  | 12 | $package = $args->{-package} if defined $args->{-package}; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 375 |  | 
| 261 | 0 | 0 |  |  |  | 0 | no strict 'refs'; | 
|  | 0 |  |  |  |  | 0 |  | 
| 262 | 0 |  |  | 0 |  | 0 | return if defined &{"${package}::$field"}; | 
|  | 0 |  |  |  |  | 0 |  | 
| 263 | 0 |  |  |  |  | 0 | *{"${package}::$field"} = sub { $default } | 
| 264 |  |  |  |  |  |  | } | 
| 265 |  |  |  |  |  |  |  | 
| 266 | 0 |  |  | 0 | 0 | 0 | sub stub { | 
| 267 | 0 |  |  |  |  | 0 | my $package = caller; | 
| 268 | 2 |  |  | 2 |  | 13 | my ($args, @values) = do { | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 416 |  | 
| 269 | 0 |  |  | 0 |  | 0 | no warnings; | 
|  | 0 |  |  |  |  | 0 |  | 
| 270 | 0 |  |  |  |  | 0 | local *paired_arguments = sub { (qw(-package)) }; | 
| 271 |  |  |  |  |  |  | Spiffy->parse_arguments(@_); | 
| 272 | 0 |  |  |  |  | 0 | }; | 
| 273 | 0 | 0 |  |  |  | 0 | my ($field, $default) = @values; | 
| 274 | 2 |  |  | 2 |  | 12 | $package = $args->{-package} if defined $args->{-package}; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 1329 |  | 
| 275 | 0 | 0 |  |  |  | 0 | no strict 'refs'; | 
|  | 0 |  |  |  |  | 0 |  | 
| 276 | 0 |  |  |  |  | 0 | return if defined &{"${package}::$field"}; | 
| 277 |  |  |  |  |  |  | *{"${package}::$field"} = | 
| 278 | 0 |  |  | 0 |  | 0 | sub { | 
| 279 | 0 |  |  |  |  | 0 | require Carp; | 
| 280 |  |  |  |  |  |  | Carp::confess | 
| 281 |  |  |  |  |  |  | "Method $field in package $package must be subclassed"; | 
| 282 | 0 |  |  |  |  | 0 | } | 
| 283 |  |  |  |  |  |  | } | 
| 284 |  |  |  |  |  |  |  | 
| 285 | 48 |  |  | 48 | 0 | 64 | sub parse_arguments { | 
| 286 | 48 |  |  |  |  | 98 | my $class = shift; | 
| 287 | 48 |  |  |  |  | 137 | my ($args, @values) = ({}, ()); | 
|  | 160 |  |  |  |  | 382 |  | 
| 288 | 48 |  |  |  |  | 152 | my %booleans = map { ($_, 1) } $class->boolean_arguments; | 
|  | 82 |  |  |  |  | 191 |  | 
| 289 | 48 |  |  |  |  | 145 | my %pairs = map { ($_, 1) } $class->paired_arguments; | 
| 290 | 68 |  |  |  |  | 185 | while (@_) { | 
| 291 | 68 | 100 | 66 |  |  | 551 | my $elem = shift; | 
|  |  | 100 | 66 |  |  |  |  | 
|  |  |  | 66 |  |  |  |  | 
| 292 | 8 | 50 | 33 |  |  | 48 | if (defined $elem and defined $booleans{$elem}) { | 
| 293 |  |  |  |  |  |  | $args->{$elem} = (@_ and $_[0] =~ /^[01]$/) | 
| 294 |  |  |  |  |  |  | ? shift | 
| 295 |  |  |  |  |  |  | : 1; | 
| 296 |  |  |  |  |  |  | } | 
| 297 | 8 |  |  |  |  | 26 | elsif (defined $elem and defined $pairs{$elem} and @_) { | 
| 298 |  |  |  |  |  |  | $args->{$elem} = shift; | 
| 299 |  |  |  |  |  |  | } | 
| 300 | 52 |  |  |  |  | 140 | else { | 
| 301 |  |  |  |  |  |  | push @values, $elem; | 
| 302 |  |  |  |  |  |  | } | 
| 303 | 48 | 50 |  |  |  | 506 | } | 
| 304 |  |  |  |  |  |  | return wantarray ? ($args, @values) : $args; | 
| 305 |  |  |  |  |  |  | } | 
| 306 | 0 |  |  | 0 | 0 | 0 |  | 
| 307 | 0 |  |  | 0 | 0 | 0 | sub boolean_arguments { () } | 
| 308 |  |  |  |  |  |  | sub paired_arguments { () } | 
| 309 |  |  |  |  |  |  |  | 
| 310 |  |  |  |  |  |  | # get a unique id for any node | 
| 311 | 0 | 0 |  | 0 | 0 | 0 | sub id { | 
| 312 | 0 | 0 |  |  |  | 0 | if (not ref $_[0]) { | 
| 313 | 0 | 0 |  |  |  | 0 | return 'undef' if not defined $_[0]; | 
| 314 | 0 |  |  |  |  | 0 | \$_[0] =~ /\((\w+)\)$/o or die; | 
| 315 |  |  |  |  |  |  | return "$1-S"; | 
| 316 | 0 |  |  |  |  | 0 | } | 
| 317 | 0 | 0 |  |  |  | 0 | require overload; | 
| 318 | 0 |  |  |  |  | 0 | overload::StrVal($_[0]) =~ /\((\w+)\)$/o or die; | 
| 319 |  |  |  |  |  |  | return $1; | 
| 320 |  |  |  |  |  |  | } | 
| 321 |  |  |  |  |  |  |  | 
| 322 |  |  |  |  |  |  | #=============================================================================== | 
| 323 |  |  |  |  |  |  | # It's super, man. | 
| 324 |  |  |  |  |  |  | #=============================================================================== | 
| 325 |  |  |  |  |  |  | package DB; | 
| 326 | 2 |  |  | 2 |  | 16 | { | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 825 |  | 
| 327 |  |  |  |  |  |  | no warnings 'redefine'; | 
| 328 | 0 | 0 |  | 0 | 0 | 0 | sub super_args { | 
| 329 | 0 |  |  |  |  | 0 | my @dummy = caller(@_ ? $_[0] : 2); | 
| 330 |  |  |  |  |  |  | return @DB::args; | 
| 331 |  |  |  |  |  |  | } | 
| 332 |  |  |  |  |  |  | } | 
| 333 |  |  |  |  |  |  |  | 
| 334 |  |  |  |  |  |  | package Spiffy; | 
| 335 | 0 |  |  | 0 | 0 | 0 | sub super { | 
| 336 | 0 |  |  |  |  | 0 | my $method; | 
| 337 | 0 |  |  |  |  | 0 | my $frame = 1; | 
| 338 | 0 | 0 |  |  |  | 0 | while ($method = (caller($frame++))[3]) { | 
| 339 |  |  |  |  |  |  | $method =~ s/.*::// and last; | 
| 340 | 0 |  |  |  |  | 0 | } | 
| 341 | 0 | 0 |  |  |  | 0 | my @args = DB::super_args($frame); | 
| 342 | 0 | 0 |  |  |  | 0 | @_ = @_ ? ($args[0], @_) : @args; | 
| 343 | 0 |  |  |  |  | 0 | my $class = ref $_[0] ? ref $_[0] : $_[0]; | 
| 344 | 0 |  |  |  |  | 0 | my $caller_class = caller; | 
| 345 | 0 | 0 | 0 |  |  | 0 | my $seen = 0; | 
| 346 | 0 |  |  |  |  | 0 | my @super_classes = reverse grep { | 
| 347 | 0 |  |  |  |  | 0 | ($seen or $seen = ($_ eq $caller_class)) ? 0 : 1; | 
| 348 | 0 |  |  |  |  | 0 | } reverse @{all_my_bases($class)}; | 
| 349 | 2 |  |  | 2 |  | 11 | for my $super_class (@super_classes) { | 
|  | 2 |  |  |  |  | 5 |  | 
|  | 2 |  |  |  |  | 456 |  | 
| 350 | 0 | 0 |  |  |  | 0 | no strict 'refs'; | 
| 351 | 0 | 0 |  |  |  | 0 | next if $super_class eq $class; | 
|  | 0 |  |  |  |  | 0 |  | 
| 352 | 0 | 0 |  |  |  | 0 | if (defined &{"${super_class}::$method"}) { | 
|  | 0 |  |  |  |  | 0 |  | 
|  | 0 |  |  |  |  | 0 |  | 
| 353 |  |  |  |  |  |  | ${"$super_class\::AUTOLOAD"} = ${"$class\::AUTOLOAD"} | 
| 354 | 0 |  |  |  |  | 0 | if $method eq 'AUTOLOAD'; | 
|  | 0 |  |  |  |  | 0 |  | 
| 355 |  |  |  |  |  |  | return &{"${super_class}::$method"}; | 
| 356 |  |  |  |  |  |  | } | 
| 357 | 0 |  |  |  |  | 0 | } | 
| 358 |  |  |  |  |  |  | return; | 
| 359 |  |  |  |  |  |  | } | 
| 360 |  |  |  |  |  |  |  | 
| 361 |  |  |  |  |  |  | #=============================================================================== | 
| 362 |  |  |  |  |  |  | # This code deserves a spanking, because it is being very naughty. | 
| 363 |  |  |  |  |  |  | # It is exchanging base.pm's import() for its own, so that people | 
| 364 |  |  |  |  |  |  | # can use base.pm with Spiffy modules, without being the wiser. | 
| 365 |  |  |  |  |  |  | #=============================================================================== | 
| 366 |  |  |  |  |  |  | my $real_base_import; | 
| 367 |  |  |  |  |  |  | my $real_mixin_import; | 
| 368 |  |  |  |  |  |  |  | 
| 369 | 2 | 50 |  | 2 |  | 54 | BEGIN { | 
| 370 | 2 |  | 50 |  |  | 17 | require base unless defined $INC{'base.pm'}; | 
| 371 | 2 |  |  |  |  | 5 | $INC{'mixin.pm'} ||= 'Spiffy/mixin.pm'; | 
| 372 | 2 |  |  |  |  | 7 | $real_base_import = \&base::import; | 
| 373 | 2 |  |  | 2 |  | 12 | $real_mixin_import = \&mixin::import; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 148 |  | 
| 374 | 2 |  |  |  |  | 31 | no warnings; | 
| 375 | 2 |  |  |  |  | 107 | *base::import = \&spiffy_base_import; | 
| 376 |  |  |  |  |  |  | *mixin::import = \&spiffy_mixin_import; | 
| 377 |  |  |  |  |  |  | } | 
| 378 |  |  |  |  |  |  |  | 
| 379 |  |  |  |  |  |  | # my $i = 0; | 
| 380 |  |  |  |  |  |  | # while (my $caller = caller($i++)) { | 
| 381 |  |  |  |  |  |  | #     next unless $caller eq 'base' or $caller eq 'mixin'; | 
| 382 |  |  |  |  |  |  | #     croak < | 
| 383 |  |  |  |  |  |  | # Spiffy.pm must be loaded before calling 'use base' or 'use mixin' with a | 
| 384 |  |  |  |  |  |  | # Spiffy module. See the documentation of Spiffy.pm for details. | 
| 385 |  |  |  |  |  |  | # END | 
| 386 |  |  |  |  |  |  | # } | 
| 387 |  |  |  |  |  |  |  | 
| 388 | 22 |  |  | 22 | 0 | 503087 | sub spiffy_base_import { | 
| 389 | 22 |  |  |  |  | 50 | my @base_classes = @_; | 
| 390 | 2 |  |  | 2 |  | 13 | shift @base_classes; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 1144 |  | 
| 391 | 24 |  |  |  |  | 593 | no strict 'refs'; | 
| 392 |  |  |  |  |  |  | goto &$real_base_import | 
| 393 | 22 | 100 |  |  |  | 54 | unless grep { | 
|  | 24 | 50 |  |  |  | 41 |  | 
| 394 | 24 |  |  |  |  | 33573 | eval "require $_" unless %{"$_\::"}; | 
| 395 |  |  |  |  |  |  | $_->isa('Spiffy'); | 
| 396 | 0 |  |  |  |  |  | } @base_classes; | 
| 397 | 0 |  |  |  |  |  | my $inheritor = caller(0); | 
| 398 | 0 | 0 |  |  |  |  | for my $base_class (@base_classes) { | 
| 399 | 0 | 0 |  |  |  |  | next if $inheritor->isa($base_class); | 
| 400 |  |  |  |  |  |  | croak "Can't mix Spiffy and non-Spiffy classes in 'use base'.\n", | 
| 401 |  |  |  |  |  |  | "See the documentation of Spiffy.pm for details\n  " | 
| 402 | 0 |  |  |  |  |  | unless $base_class->isa('Spiffy'); | 
| 403 | 0 |  |  |  |  |  | $stack_frame = 1; # tell import to use different caller | 
| 404 | 0 |  |  |  |  |  | import($base_class, '-base'); | 
| 405 |  |  |  |  |  |  | $stack_frame = 0; | 
| 406 |  |  |  |  |  |  | } | 
| 407 |  |  |  |  |  |  | } | 
| 408 |  |  |  |  |  |  |  | 
| 409 | 0 |  |  | 0 | 0 |  | sub mixin { | 
| 410 | 0 |  |  |  |  |  | my $self = shift; | 
| 411 | 0 |  |  |  |  |  | my $target_class = ref($self); | 
| 412 |  |  |  |  |  |  | spiffy_mixin_import($target_class, @_) | 
| 413 |  |  |  |  |  |  | } | 
| 414 |  |  |  |  |  |  |  | 
| 415 | 0 |  |  | 0 | 0 |  | sub spiffy_mixin_import { | 
| 416 | 0 | 0 |  |  |  |  | my $target_class = shift; | 
| 417 |  |  |  |  |  |  | $target_class = caller(0) | 
| 418 | 0 | 0 |  |  |  |  | if $target_class eq 'mixin'; | 
| 419 |  |  |  |  |  |  | my $mixin_class = shift | 
| 420 | 0 |  |  |  |  |  | or die "Nothing to mixin"; | 
| 421 | 0 |  |  |  |  |  | eval "require $mixin_class"; | 
| 422 | 0 |  |  |  |  |  | my @roles = @_; | 
| 423 | 0 |  |  |  |  |  | my $pseudo_class = join '-', $target_class, $mixin_class, @roles; | 
| 424 | 2 |  |  | 2 |  | 14 | my %methods = spiffy_mixin_methods($mixin_class, @roles); | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 77 |  | 
| 425 | 2 |  |  | 2 |  | 11 | no strict 'refs'; | 
|  | 2 |  |  |  |  | 4 |  | 
|  | 2 |  |  |  |  | 403 |  | 
| 426 | 0 |  |  |  |  |  | no warnings; | 
|  | 0 |  |  |  |  |  |  | 
|  | 0 |  |  |  |  |  |  | 
| 427 | 0 |  |  |  |  |  | @{"$pseudo_class\::ISA"} = @{"$target_class\::ISA"}; | 
|  | 0 |  |  |  |  |  |  | 
| 428 | 0 |  |  |  |  |  | @{"$target_class\::ISA"} = ($pseudo_class); | 
| 429 | 0 |  |  |  |  |  | for (keys %methods) { | 
|  | 0 |  |  |  |  |  |  | 
| 430 |  |  |  |  |  |  | *{"$pseudo_class\::$_"} = $methods{$_}; | 
| 431 |  |  |  |  |  |  | } | 
| 432 |  |  |  |  |  |  | } | 
| 433 |  |  |  |  |  |  |  | 
| 434 | 0 |  |  | 0 | 0 |  | sub spiffy_mixin_methods { | 
| 435 | 2 |  |  | 2 |  | 13 | my $mixin_class = shift; | 
|  | 2 |  |  |  |  | 3 |  | 
|  | 2 |  |  |  |  | 1210 |  | 
| 436 | 0 |  |  |  |  |  | no strict 'refs'; | 
| 437 | 0 |  |  |  |  |  | my %methods = spiffy_all_methods($mixin_class); | 
| 438 | 0 | 0 |  |  |  |  | map { | 
| 439 | 0 |  |  |  |  |  | $methods{$_} | 
| 440 | 0 | 0 |  |  |  |  | ? ($_, \ &{"$methods{$_}\::$_"}) | 
| 441 |  |  |  |  |  |  | : ($_, \ &{"$mixin_class\::$_"}) | 
| 442 |  |  |  |  |  |  | } @_ | 
| 443 |  |  |  |  |  |  | ? (get_roles($mixin_class, @_)) | 
| 444 |  |  |  |  |  |  | : (keys %methods); | 
| 445 |  |  |  |  |  |  | } | 
| 446 |  |  |  |  |  |  |  | 
| 447 | 0 |  |  | 0 | 0 |  | sub get_roles { | 
| 448 | 0 |  |  |  |  |  | my $mixin_class = shift; | 
| 449 | 0 |  |  |  |  |  | my @roles = @_; | 
| 450 | 0 |  |  |  |  |  | while (grep /^!*:/, @roles) { | 
| 451 | 0 |  |  |  |  |  | @roles = map { | 
| 452 |  |  |  |  |  |  | s/!!//g; | 
| 453 | 0 |  |  |  |  |  | /^!:(.*)/ ? do { | 
| 454 | 0 |  |  |  |  |  | my $m = "_role_$1"; | 
| 455 |  |  |  |  |  |  | map("!$_", $mixin_class->$m); | 
| 456 | 0 | 0 |  |  |  |  | } : | 
|  |  | 0 |  |  |  |  |  | 
| 457 | 0 |  |  |  |  |  | /^:(.*)/ ? do { | 
| 458 | 0 |  |  |  |  |  | my $m = "_role_$1"; | 
| 459 |  |  |  |  |  |  | ($mixin_class->$m); | 
| 460 |  |  |  |  |  |  | } : | 
| 461 |  |  |  |  |  |  | ($_) | 
| 462 |  |  |  |  |  |  | } @roles; | 
| 463 | 0 | 0 | 0 |  |  |  | } | 
| 464 | 0 |  |  |  |  |  | if (@roles and $roles[0] =~ /^!/) { | 
| 465 | 0 |  |  |  |  |  | my %methods = spiffy_all_methods($mixin_class); | 
| 466 |  |  |  |  |  |  | unshift @roles, keys(%methods); | 
| 467 | 0 |  |  |  |  |  | } | 
| 468 | 0 |  |  |  |  |  | my %roles; | 
| 469 | 0 |  |  |  |  |  | for (@roles) { | 
| 470 | 0 | 0 |  |  |  |  | s/!!//g; | 
| 471 |  |  |  |  |  |  | delete $roles{$1}, next | 
| 472 | 0 |  |  |  |  |  | if /^!(.*)/; | 
| 473 |  |  |  |  |  |  | $roles{$_} = 1; | 
| 474 | 0 |  |  |  |  |  | } | 
| 475 |  |  |  |  |  |  | keys %roles; | 
| 476 |  |  |  |  |  |  | } | 
| 477 |  |  |  |  |  |  |  | 
| 478 | 2 |  |  | 2 |  | 14 | sub spiffy_all_methods { | 
|  | 2 |  |  |  |  | 3 |  | 
|  | 2 |  |  |  |  | 704 |  | 
| 479 | 0 |  |  | 0 | 0 |  | no strict 'refs'; | 
| 480 | 0 | 0 |  |  |  |  | my $class = shift; | 
| 481 | 0 |  |  |  |  |  | return if $class eq 'Spiffy'; | 
| 482 | 0 |  |  |  |  |  | my %methods = map { | 
| 483 |  |  |  |  |  |  | ($_, $class) | 
| 484 | 0 | 0 |  |  |  |  | } grep { | 
|  | 0 |  |  |  |  |  |  | 
| 485 | 0 |  |  |  |  |  | defined &{"$class\::$_"} and not /^_/ | 
| 486 | 0 |  |  |  |  |  | } keys %{"$class\::"}; | 
| 487 | 0 |  |  |  |  |  | my %super_methods; | 
|  | 0 |  |  |  |  |  |  | 
| 488 | 0 | 0 |  |  |  |  | %super_methods = spiffy_all_methods(${"$class\::ISA"}[0]) | 
| 489 | 0 |  |  |  |  |  | if @{"$class\::ISA"}; | 
|  | 0 |  |  |  |  |  |  | 
| 490 |  |  |  |  |  |  | %{{%super_methods, %methods}}; | 
| 491 |  |  |  |  |  |  | } | 
| 492 |  |  |  |  |  |  |  | 
| 493 |  |  |  |  |  |  |  | 
| 494 |  |  |  |  |  |  | # END of naughty code. | 
| 495 |  |  |  |  |  |  | #=============================================================================== | 
| 496 |  |  |  |  |  |  | # Debugging support | 
| 497 |  |  |  |  |  |  | #=============================================================================== | 
| 498 | 2 |  |  | 2 |  | 18 | sub spiffy_dump { | 
|  | 2 |  |  |  |  | 5 |  | 
|  | 2 |  |  |  |  | 997 |  | 
| 499 | 0 | 0 |  | 0 | 0 |  | no warnings; | 
| 500 | 0 |  |  |  |  |  | if ($dump eq 'dumper') { | 
| 501 | 0 |  |  |  |  |  | require Data::Dumper; | 
| 502 | 0 |  |  |  |  |  | $Data::Dumper::Sortkeys = 1; | 
| 503 | 0 |  |  |  |  |  | $Data::Dumper::Indent = 1; | 
| 504 |  |  |  |  |  |  | return Data::Dumper::Dumper(@_); | 
| 505 | 0 |  |  |  |  |  | } | 
| 506 | 0 |  |  |  |  |  | require YAML; | 
| 507 | 0 |  |  |  |  |  | $YAML::UseVersion = 0; | 
| 508 |  |  |  |  |  |  | return YAML::Dump(@_) . "...\n"; | 
| 509 |  |  |  |  |  |  | } | 
| 510 |  |  |  |  |  |  |  | 
| 511 | 0 |  |  | 0 | 0 |  | sub at_line_number { | 
| 512 | 0 |  |  |  |  |  | my ($file_path, $line_number) = (caller(1))[1,2]; | 
| 513 |  |  |  |  |  |  | "  at $file_path line $line_number\n"; | 
| 514 |  |  |  |  |  |  | } | 
| 515 |  |  |  |  |  |  |  | 
| 516 | 0 |  |  | 0 | 0 |  | sub WWW { | 
| 517 | 0 | 0 |  |  |  |  | warn spiffy_dump(@_) . at_line_number; | 
| 518 |  |  |  |  |  |  | return wantarray ? @_ : $_[0]; | 
| 519 |  |  |  |  |  |  | } | 
| 520 |  |  |  |  |  |  |  | 
| 521 | 0 |  |  | 0 | 0 |  | sub XXX { | 
| 522 |  |  |  |  |  |  | die spiffy_dump(@_) . at_line_number; | 
| 523 |  |  |  |  |  |  | } | 
| 524 |  |  |  |  |  |  |  | 
| 525 | 0 |  |  | 0 | 0 |  | sub YYY { | 
| 526 | 0 | 0 |  |  |  |  | print spiffy_dump(@_) . at_line_number; | 
| 527 |  |  |  |  |  |  | return wantarray ? @_ : $_[0]; | 
| 528 |  |  |  |  |  |  | } | 
| 529 |  |  |  |  |  |  |  | 
| 530 | 0 |  |  | 0 | 0 |  | sub ZZZ { | 
| 531 | 0 |  |  |  |  |  | require Carp; | 
| 532 |  |  |  |  |  |  | Carp::confess spiffy_dump(@_); | 
| 533 |  |  |  |  |  |  | } | 
| 534 |  |  |  |  |  |  |  | 
| 535 |  |  |  |  |  |  | 1; | 
| 536 |  |  |  |  |  |  |  | 
| 537 |  |  |  |  |  |  | __END__ |