/usr/share/perl5/Wx/Perl/DataWalker.pm is in libwx-perl-datawalker-perl 0.02-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Wx::Perl::DataWalker;
use 5.008001;
use strict;
use warnings;
our $VERSION = '0.02';
our @ISA = qw(Wx::Frame);
use Scalar::Util qw(reftype blessed refaddr);
use Devel::Size ();
use Wx ':everything';
use Wx::Event ':everything';
require Wx::Perl::DataWalker::CurrentLevel;
use Class::XSAccessor
getters => {
stack => 'stack',
},
accessors => {
current_head => 'current_head',
};
sub new {
my $class = shift;
my $config = shift;
my $self = $class->SUPER::new(@_);
$self->{global_head} = $config->{data} or die "Invalid data";
my $rtype = reftype($self->{global_head});
die "top-level display of CODE refs not supported!" if defined $rtype and $rtype eq 'CODE';
$self->{show_size} = $config->{show_size} || 0;
$self->{show_recur_size} = $config->{show_recur_size} || 0;
my $hsizer = Wx::BoxSizer->new(Wx::wxHORIZONTAL);
# tree view here...
# $self->{current_level2} = Wx::Button->new(
# $self, -1, "FOOO",
# Wx::wxDefaultPosition,
# Wx::wxDefaultSize,
# );
# $hsizer->Add($self->{current_level2}, Wx::wxEXPAND, Wx::wxEXPAND, Wx::wxALL, 2);
my $buttonsizer = Wx::BoxSizer->new(Wx::wxHORIZONTAL);
$self->{back_button} = Wx::Button->new( $self, -1, "<--" );
$self->{reset_button} = Wx::Button->new( $self, -1, "Reset" );
EVT_BUTTON( $self, $self->{back_button}, sub { $self->go_back(); } );
EVT_BUTTON( $self, $self->{reset_button}, sub { $self->reset_head(); } );
$buttonsizer->Add($self->{back_button}, 0, Wx::wxALL|Wx::wxALIGN_CENTER_VERTICAL, 2);
$buttonsizer->Add($self->{reset_button}, 0, Wx::wxALL|Wx::wxALIGN_CENTER_VERTICAL, 2);
# show-size radio boxes
$self->{size_radio_box} = Wx::RadioBox->new(
$self, -1, "Show approx. size",
Wx::wxDefaultPosition, Wx::wxDefaultSize,
[qw(No Yes Total)],
Wx::wxRA_SPECIFY_COLS,
);
EVT_RADIOBOX(
$self, $self->{size_radio_box}, sub {
my $flag = $_[1]->GetInt();
$self->{show_size} = $flag ? 1 : 0;
$self->{show_recur_size} = $flag==2 ? 1 : 0;
$self->update_size();
}
);
$buttonsizer->Add($self->{size_radio_box}, 0, Wx::wxLEFT|Wx::wxALIGN_CENTER_VERTICAL|Wx::wxALIGN_RIGHT, 10);
my $vsizer = Wx::BoxSizer->new(Wx::wxVERTICAL);
$vsizer->Add($buttonsizer, 0, Wx::wxEXPAND|Wx::wxALL, 2);
# the current level in the tree...
my $curl = $self->{current_level} = Wx::Perl::DataWalker::CurrentLevel->new( $self, -1, );
$self->update_size();
$vsizer->Add($self->{current_level}, Wx::wxEXPAND, Wx::wxEXPAND|Wx::wxALL, 2);
$hsizer->Add($vsizer, Wx::wxEXPAND, Wx::wxEXPAND|Wx::wxALL, 2);
$self->SetSizer( $hsizer );
$hsizer->SetSizeHints( $self );
$self->reset_head();
return $self;
}
sub update_size {
my $self = shift;
my $curl = $self->{current_level};
$curl->show_size($self->{show_size});
$curl->show_recur_size($self->{show_recur_size});
$curl->refresh();
}
sub go_down {
my $self = shift;
my $where = shift;
my $data = $self->current_head;
my $target;
my $reftype = reftype($data);
if (!$reftype) {
return();
}
elsif ($reftype eq 'SCALAR') {
$target = $$data;
}
elsif ($reftype eq 'HASH') {
$target = $data->{$where};
}
elsif ($reftype eq 'ARRAY') {
$target = $data->[$where];
}
elsif ($reftype eq 'REF') {
$target = $$data;
}
elsif ($reftype eq 'GLOB') {
$target = *{$data}{$where};
}
else {
return();
}
my $treftype = reftype($target);
if (not $treftype and reftype(\$target) eq 'GLOB') {
# work around my sucky understanding of GLOBS. Damn you, GLOB, damn you!
# $self->current_head(\$target);
# push @{$self->stack}, \$target;
# $self->{current_level}->set_data(\$target);
# return(1);
# with kudos to Yves!
no strict 'refs';
$target = \*{"$target"};
$treftype = reftype($target);
}
return() if not $treftype or $treftype eq 'CODE';
# avoid direct recursion into self
return() if $treftype eq $reftype and refaddr($target) eq refaddr($data);
$self->current_head($target);
push @{$self->stack}, $target;
$self->{current_level}->set_data($target);
return(1);
}
sub go_back {
my $self = shift;
my $stack = $self->stack;
return() if @$stack == 1;
pop(@$stack);
$self->current_head($stack->[-1]);
$self->{current_level}->set_data($stack->[-1]);
return(1);
}
sub reset_head {
my $self = shift;
$self->{stack} = [$self->{global_head}];
$self->current_head($self->{global_head});
$self->{current_level}->set_data($self->current_head);
}
1;
__END__
=head1 NAME
Wx::Perl::DataWalker - Perl extension for blah blah blah
=head1 SYNOPSIS
# alternatively, see the dataWalker.pl script in this distribution!
use Wx::Perl::DataWalker;
my $data_to_browse = {
# complex data structure.
# Good test: \%::
};
package MyWalkerDialog;
our @ISA = qw(Wx::App);
sub OnInit {
my $self = shift;
my $frame = Wx::Perl::DataWalker->new(
{data => $data_to_browse},
undef, -1,
"dataWalker",
);
$self->SetTopWindow($frame);
$frame->Show(1);
$frame->SetSize(500,500);
return 1;
}
package main;
my $app = MyWalkerDialog->new();
$app->MainLoop();
=head1 DESCRIPTION
C<Wx::Perl::DataWalker> implements a C<Wx::Frame> subclass that
shows a relatively simple Perl data structure browser.
After opening such a frame and supplying it with a reference to an
essentially arbitrary data structure, you can visually browse it
by double-clicking references.
So far, there is no tree view but only a display of the current level of the
data structure. You can traverse back up the structure with a I<back> button.
Optionally, C<Wx::Perl::DataWalker> displays the (approximate!) size of the
data structure using C<Devel::Size>.
=head1 SEE ALSO
L<Wx>, L<Devel::Size>
L<Padre::Plugin::DataWalker>
=head1 AUTHOR
Steffen Mueller, E<lt>smueller@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2009 by Steffen Mueller
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8 or,
at your option, any later version of Perl 5 you may have available.
=cut
|