mirror of
https://codeberg.org/scip/Data-Interactive-Inspect.git
synced 2025-12-16 20:21:02 +01:00
initial commit
This commit is contained in:
930
Inspect.pm
Normal file
930
Inspect.pm
Normal file
@@ -0,0 +1,930 @@
|
||||
#!/usr/bin/perl
|
||||
#
|
||||
# Copyright (c) 2015 T.v.Dein <tlinden |AT| cpan.org>.
|
||||
# All Rights Reserved. Std. disclaimer applies.
|
||||
# Artistic License, same as perl itself. Have fun.
|
||||
#
|
||||
|
||||
|
||||
package Data::Interactive::Inspect;
|
||||
|
||||
use Carp::Heavy;
|
||||
use Carp;
|
||||
|
||||
use Term::ReadLine;
|
||||
use File::Temp qw(tempfile); # required by the 'edit' command
|
||||
use YAML; # config + export/import + 'edit' command
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
no strict 'refs';
|
||||
|
||||
$Data::Interactive::Inspect::VERSION = 0.01;
|
||||
|
||||
use vars qw(@ISA);
|
||||
|
||||
use vars qw(@ISA @EXPORT @EXPORT_OK);
|
||||
require Exporter;
|
||||
@ISA = qw(Exporter);
|
||||
@EXPORT = qw();
|
||||
@EXPORT_OK = qw();
|
||||
|
||||
|
||||
sub new {
|
||||
my ($class, @param) = @_;
|
||||
|
||||
$class = ref($class) || $class;
|
||||
|
||||
# defaults (= valid parameters)
|
||||
my $self = {
|
||||
name => '',
|
||||
begin => sub { print STDERR "unsupported\n"; },
|
||||
commit => sub { print STDERR "unsupported\n"; },
|
||||
rollback => sub { print STDERR "unsupported\n"; },
|
||||
export => sub { my ($db) = @_; return $db; },
|
||||
struct => {},
|
||||
editor => 'vi',
|
||||
more => 'more',
|
||||
silent => 0,
|
||||
};
|
||||
|
||||
bless $self, $class;
|
||||
|
||||
# by default unsupported
|
||||
$self->{transactions} = 0;
|
||||
|
||||
if ($#param >= 1) {
|
||||
# hash interface
|
||||
my %p = @param;
|
||||
foreach my $k (keys %{$self}) {
|
||||
if (exists $p{$k}) {
|
||||
$self->{$k} = $p{$k};
|
||||
}
|
||||
}
|
||||
if (exists $p{begin} && $p{commit} && $p{rollback}) {
|
||||
# user supplied the relevant functions
|
||||
$self->{transactions} = 1;
|
||||
}
|
||||
}
|
||||
elsif ($#param == 0) {
|
||||
# 1 param, the struct
|
||||
$self->{struct} = $param[0];
|
||||
}
|
||||
# else: no params given, work with defaults
|
||||
|
||||
if (! $self->{struct}) {
|
||||
croak "Sorry param 'struct' must be set to a perl data structure\n";
|
||||
}
|
||||
|
||||
# map commands+shortcuts to functions
|
||||
$self->{command} = {
|
||||
l => 'list',
|
||||
list => 'list',
|
||||
show => 'show',
|
||||
sh => 'show',
|
||||
dump => 'dump',
|
||||
d => 'dump',
|
||||
get => 'get',
|
||||
g => 'get',
|
||||
enter => 'enter',
|
||||
cd => 'enter',
|
||||
set => 'set',
|
||||
edit => 'edit',
|
||||
e => 'edit',
|
||||
append=> 'append',
|
||||
drop => 'drop',
|
||||
pop => 'mypop',
|
||||
shift => 'myshift',
|
||||
help => 'help',
|
||||
h => 'help',
|
||||
'?' => 'help',
|
||||
};
|
||||
|
||||
if ($self->{transactions}) {
|
||||
# map if supported
|
||||
foreach my $c(qw(begin commit rollback)) {
|
||||
$self->{command}->{$c} = $c;
|
||||
}
|
||||
}
|
||||
|
||||
if (! $self->{name}) {
|
||||
$self->{name} = sprintf "data\@0x%x", $self->{struct};
|
||||
}
|
||||
|
||||
# map which commands take a key param
|
||||
$self->{commandargs} = [qw(get set edit show append pop shift drop enter cd)];
|
||||
|
||||
# holds current level
|
||||
$self->{db} = $self->{struct};
|
||||
|
||||
# path to current level
|
||||
$self->{path} = [];
|
||||
|
||||
# set to 1 if transactions supported and implemented
|
||||
$self->{session} = 0;
|
||||
|
||||
return $self;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
sub inspect {
|
||||
my ($self, $__cmds) = @_;
|
||||
|
||||
if ($__cmds) {
|
||||
# unit tests
|
||||
$self->{silent} = 1;
|
||||
foreach (split /\n/, $__cmds) {
|
||||
if (! $self->process($_) ) {
|
||||
last;
|
||||
}
|
||||
}
|
||||
return $self->{struct};
|
||||
}
|
||||
|
||||
if (-t STDIN) {
|
||||
# interactive with prompt and history
|
||||
$| = 1;
|
||||
my $term = new Term::ReadLine 'Data::Interactive::Inspect';
|
||||
$term->ornaments(0);
|
||||
my $attribs = $term->Attribs;
|
||||
|
||||
$self->{term} = $term;
|
||||
$self->{complete_words} = [ map { if (length($_) > 2 ) {$_} } keys %{$self->{command}} ];
|
||||
$attribs->{completion_entry_function} = $attribs->{list_completion_function}; # avoid file completion
|
||||
$attribs->{attempted_completion_function} = sub {
|
||||
my ($begin, $line, $start, $end, $term) = @_;
|
||||
return $self->complete($begin, $line, $start, $end, $term);
|
||||
};
|
||||
|
||||
my $prompt = $self->prompt;
|
||||
while ( defined ($_ = $term->readline($prompt)) ) {
|
||||
if (! $self->process($_) ) {
|
||||
last;
|
||||
}
|
||||
$prompt = $self->prompt;
|
||||
}
|
||||
}
|
||||
else {
|
||||
while (<STDIN>) {
|
||||
if (! $self->process($_) ) {
|
||||
last;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $self->{struct};
|
||||
}
|
||||
|
||||
sub prompt {
|
||||
my $self = shift;
|
||||
my $prompt = $self->{name};
|
||||
|
||||
if (@{$self->{path}}) {
|
||||
$prompt .= " " . join('->', @{$self->{path}});
|
||||
}
|
||||
if ($self->{session}) {
|
||||
$prompt .= '%';
|
||||
}
|
||||
$prompt .= '> ';
|
||||
return $prompt;
|
||||
}
|
||||
|
||||
sub complete {
|
||||
my ($self, $begin, $line, $start, $end, $term) = @_;
|
||||
|
||||
my @matches = ();
|
||||
|
||||
my $cmd = $line;
|
||||
$cmd =~ s/\s\s*.*$//;
|
||||
$cmd =~ s/\s*$//;
|
||||
|
||||
if ($start == 0) {
|
||||
# match on a command
|
||||
@matches = $self->{term}->completion_matches ($begin, sub {
|
||||
my ($text, $state) = @_;
|
||||
my @name = @{$self->{complete_words}};
|
||||
unless ($state) {
|
||||
$self->{complete_idx} = 0;
|
||||
}
|
||||
while ($self->{complete_idx} <= $#name) {
|
||||
$self->{complete_idx}++;
|
||||
return $name[$self->{complete_idx} - 1]
|
||||
if ($name[$self->{complete_idx} - 1] =~ /^$text/);
|
||||
}
|
||||
# no match
|
||||
return undef;
|
||||
});
|
||||
}
|
||||
elsif ($line =~ /[^\s]+\s+[^\s]+\s+/) {
|
||||
# command line is complete ($cmd $arg), stop with completion
|
||||
@matches = undef;
|
||||
}
|
||||
else {
|
||||
# match on a command arg
|
||||
if (grep {$cmd eq $_} @{$self->{commandargs}}) {
|
||||
# only match for commands which support args
|
||||
@matches = $self->{term}->completion_matches ($begin, sub {
|
||||
my ($text, $state) = @_;
|
||||
my @name = keys %{$self->{db}};
|
||||
unless ($state) {
|
||||
$self->{complete_idxp} = 0;
|
||||
}
|
||||
while ($self->{complete_idxp} <= $#name) {
|
||||
$self->{complete_idxp}++;
|
||||
return $name[$self->{complete_idxp} - 1]
|
||||
if ($name[$self->{complete_idxp} - 1] =~ /^$text/);
|
||||
}
|
||||
# no match
|
||||
return undef;
|
||||
});
|
||||
}
|
||||
else {
|
||||
# command doesn't support args
|
||||
@matches = undef;
|
||||
}
|
||||
}
|
||||
|
||||
return @matches;
|
||||
}
|
||||
|
||||
sub process {
|
||||
my ($self, $line) = @_;
|
||||
|
||||
return 1 if(!defined $line);
|
||||
|
||||
my ($cmd, @args) = split /\s\s*/, $line;
|
||||
|
||||
return 1 if (!defined $cmd);
|
||||
return 1 if ($cmd =~ /^\s*$/);
|
||||
return 1 if ($cmd =~ /^#/);
|
||||
|
||||
if ($cmd eq '..') {
|
||||
$self->up;
|
||||
}
|
||||
elsif ($cmd eq 'quit') {
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
if (exists $self->{command}->{$cmd}) {
|
||||
my $func = $self->{command}->{$cmd};
|
||||
if (! grep {$cmd eq $_} @{$self->{commandargs}}) {
|
||||
@args = ();
|
||||
}
|
||||
$self->$func(@args);
|
||||
}
|
||||
else {
|
||||
if (exists $self->{db}->{$cmd}) {
|
||||
$self->enter($cmd);
|
||||
}
|
||||
else {
|
||||
print STDERR "no such command: $cmd\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
# command implementations
|
||||
sub __interactive__ {};
|
||||
|
||||
sub set {
|
||||
my($self, $key, @value) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
my $var;
|
||||
my $code = "\$var = @value;";
|
||||
{
|
||||
no strict;
|
||||
no warnings;
|
||||
eval $code;
|
||||
}
|
||||
if ($@) {
|
||||
print STDERR "failed to insert: $@\n";
|
||||
}
|
||||
else {
|
||||
$self->{db}->{$key} = $var;
|
||||
$self->done;
|
||||
}
|
||||
}
|
||||
|
||||
sub append {
|
||||
my($self, $key, @value) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
if (exists $self->{db}->{$key}) {
|
||||
if (ref($self->{db}->{$key}) !~ /array/i) {
|
||||
print STDERR "\"$key\" already exists and is not an array\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
my $var;
|
||||
my $code = "\$var = @value;";
|
||||
eval $code;
|
||||
if ($@) {
|
||||
print STDERR "failed to insert: $@\n";
|
||||
}
|
||||
else {
|
||||
push @{$self->{db}->{$key}}, $var;
|
||||
$self->done;
|
||||
}
|
||||
}
|
||||
|
||||
sub drop {
|
||||
my($self, $key) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
if (exists $self->{db}->{$key}) {
|
||||
delete $self->{db}->{$key};
|
||||
$self->done;
|
||||
}
|
||||
else {
|
||||
print STDERR "no such key: \"$key\"\n";
|
||||
}
|
||||
}
|
||||
|
||||
sub mypop {
|
||||
my($self, $key) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
if (exists $self->{db}->{$key}) {
|
||||
if (ref($self->{db}->{$key}) !~ /array/i) {
|
||||
print STDERR "\"$key\" is not an array\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
my $ignore = pop @{$self->{db}->{$key}};
|
||||
$self->done;
|
||||
}
|
||||
|
||||
sub myshift {
|
||||
my($self, $key) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
if (exists $self->{db}->{$key}) {
|
||||
if (ref($self->{db}->{$key}) !~ /array/i) {
|
||||
print STDERR "\"$key\" is not an array\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
my $ignore = shift @{$self->{db}->{$key}};
|
||||
$self->done;
|
||||
}
|
||||
|
||||
sub get {
|
||||
my($self, $key, $search) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
my $out;
|
||||
my @K;
|
||||
if ($key =~ /^\/.*\/$/) {
|
||||
# regex
|
||||
$key =~ s#^/##;
|
||||
$key =~ s#/$##;
|
||||
foreach my $k (keys %{$self->{db}}) {
|
||||
if ($k =~ /$key/) {
|
||||
push @K, $k;
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (exists $self->{db}->{$key}) {
|
||||
push @K, $key;
|
||||
}
|
||||
else {
|
||||
print STDERR "no such key: \"$key\"\n";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
foreach my $key (@K) {
|
||||
if (ref($self->{db}->{$key}) =~ /hash/i || ref($self->{db}->{$key}) =~ /array/i) {
|
||||
# FIXME: something nicer
|
||||
$out .= "$key =>\n" . &dump($self->{db}->{$key}, 1)
|
||||
}
|
||||
else {
|
||||
$out .= "$key => \"$self->{db}->{$key}\"\n";
|
||||
}
|
||||
}
|
||||
print $out;
|
||||
}
|
||||
|
||||
sub dump {
|
||||
my ($self, $obj, $noprint) = @_;
|
||||
my $out;
|
||||
if ($obj) {
|
||||
$out = YAML::Dump($self->{export}->($obj));
|
||||
}
|
||||
else {
|
||||
$out = YAML::Dump($self->{export}->($self->{db}));
|
||||
}
|
||||
|
||||
if ($noprint) {
|
||||
return $out;
|
||||
}
|
||||
else {
|
||||
if (open LESS, "|$self->{more}") {
|
||||
print LESS $out;
|
||||
close LESS;
|
||||
}
|
||||
else {
|
||||
print $out;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub edit {
|
||||
my ($self, $key) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
if (exists $self->{db}->{$key}) {
|
||||
my $data = YAML::Dump($self->{export}->($self->{db}->{$key}));
|
||||
my ($fh, $filename) = tempfile();
|
||||
print $fh $data;
|
||||
close $fh;
|
||||
system("$self->{editor}", $filename);
|
||||
open IN, "<$filename";
|
||||
my $newdata = join '', <IN>;
|
||||
close IN;
|
||||
if ($newdata eq $data) {
|
||||
# FIXME: use checksum or something else which is faster
|
||||
print "unchanged\n";
|
||||
}
|
||||
else {
|
||||
my $perl;
|
||||
eval {
|
||||
$perl = YAML::Load($newdata);
|
||||
};
|
||||
if ($@) {
|
||||
print STDERR "$@\n";
|
||||
}
|
||||
else {
|
||||
$self->{db}->{$key} = $perl;
|
||||
$self->done;
|
||||
}
|
||||
}
|
||||
unlink($filename);
|
||||
}
|
||||
else {
|
||||
print STDERR "no such key: \"$key\"\n";
|
||||
}
|
||||
}
|
||||
|
||||
sub list {
|
||||
my $self = shift;
|
||||
print join "\n", sort keys %{$self->{db}};
|
||||
print "\n";
|
||||
}
|
||||
|
||||
sub show {
|
||||
my $self = shift;
|
||||
foreach my $key (sort keys %{$self->{db}}) {
|
||||
printf "%-30s", $key;
|
||||
if (ref($self->{db}->{$key}) =~ /hash/i) {
|
||||
print "{ .. }\n";
|
||||
}
|
||||
elsif (ref($self->{db}->{$key}) =~ /array/i) {
|
||||
print "[ .. ]\n";
|
||||
}
|
||||
else {
|
||||
print "\"$self->{db}->{$key}\"\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub enter {
|
||||
my ($self, $key) = @_;
|
||||
if (!$key) {
|
||||
print STDERR "<key> parameter missing\n";
|
||||
return;
|
||||
}
|
||||
|
||||
if ($key eq '..') {
|
||||
$self->up;
|
||||
}
|
||||
else {
|
||||
if (exists $self->{db}->{$key}) {
|
||||
if (ref($self->{db}->{$key}) =~ /hash/i) {
|
||||
# "changedir" to the key
|
||||
push @{$self->{prev}}, $self->{db};
|
||||
push @{$self->{path}}, $key;
|
||||
$self->{db} = $self->{db}->{$key};
|
||||
print "=> $key\n";
|
||||
}
|
||||
else {
|
||||
print STDERR "not a hash: \"$key\"\n";
|
||||
}
|
||||
}
|
||||
else {
|
||||
print STDERR "unknown command \"$key\"\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub up {
|
||||
my $self = shift;
|
||||
if (@{$self->{prev}}) {
|
||||
$self->{db} = pop @{$self->{prev}};
|
||||
pop @{$self->{path}};
|
||||
print "<=\n";
|
||||
}
|
||||
else {
|
||||
print STDERR "already on top level\n";
|
||||
}
|
||||
}
|
||||
|
||||
sub done {
|
||||
my $self = shift;
|
||||
if (! $self->{silent}) {
|
||||
print "ok\n";
|
||||
}
|
||||
}
|
||||
|
||||
sub help {
|
||||
my $self = shift;
|
||||
print qq(Display commands:
|
||||
list - list keys of current level
|
||||
show - same as list but with values
|
||||
dump - dump everything from current level
|
||||
get <key> | /regex/ - display value of <key>, or the value
|
||||
of all keys matching /regex/
|
||||
|
||||
Navigation commands:
|
||||
enter <key> - change level into sub-hash of <key>
|
||||
|
||||
Edit commands:
|
||||
set <key> <value> - set <key> to <value>
|
||||
edit <key> - edit structure behind <key> [1]
|
||||
append <key> <value> - append <value> to array <key>
|
||||
drop <key> - delete key <key>
|
||||
pop <key> - remove last element of array <key>
|
||||
shift <key> - remove first element of array <key>
|
||||
);
|
||||
|
||||
if ($self->{transactions}) {
|
||||
print qq(
|
||||
Transaction commands:
|
||||
begin - start a transaction session
|
||||
commit - store everything changed within session
|
||||
rollback - discard changes
|
||||
);
|
||||
}
|
||||
|
||||
print qq(
|
||||
Misc commands:
|
||||
help - get help
|
||||
ctrl-d | quit - exit
|
||||
|
||||
Shortcuts:
|
||||
.. - go one level up
|
||||
l - list
|
||||
d - dump
|
||||
sh - show
|
||||
cd - enter
|
||||
<key> - enter <key> [2]
|
||||
|
||||
Hints:
|
||||
[1] <value> can be perl code, e.g: set pw { user => 'max' }
|
||||
[2] doesn't work if <key> correlates to a command
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
1;
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Data::Interactive::Inspect - Inspect and manipulate perl data structures interactively
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use Data::Interactive::Inspect;
|
||||
my $data = foo(); # get a hash ref from somewhere
|
||||
|
||||
# new shell object, the simple way
|
||||
my $shell = Data::Interactive::Inspect->new($data);
|
||||
|
||||
# or
|
||||
my $shell = Data::Interactive::Inspect->new(
|
||||
struct => $data,
|
||||
name => 'verkehrswege',
|
||||
begin => sub { .. },
|
||||
commit => sub { .. },
|
||||
rollback => sub { .. },
|
||||
editor => 'emacs',
|
||||
more => 'less'
|
||||
);
|
||||
|
||||
$data = $shell->inspect(); # opens a shell and returns modified hash ref on quit
|
||||
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
This module provides an interactive shell which can be used to inspect and modify
|
||||
a perl data structure.
|
||||
|
||||
=head1 METHODS
|
||||
|
||||
=head2 new
|
||||
|
||||
The B<new()> function takes either one parameter (a hash reference) or a hash reference
|
||||
with parameters. The following parameters are supported:
|
||||
|
||||
=over
|
||||
|
||||
=item B<struct>
|
||||
|
||||
The hash reference to inspect.
|
||||
|
||||
=item B<name>
|
||||
|
||||
Will be displayed on the prompt of the shell.
|
||||
|
||||
=item B<editor>
|
||||
|
||||
By default L<Data::Interactive::Inspect> opens B<vi> if the user issues the B<edit>
|
||||
command. Use this parameter to instruct it otherwise.
|
||||
|
||||
=item B<more>
|
||||
|
||||
By default L<Data::Interactive::Inspect> uses B<more> to display data which doesn't
|
||||
fit the terminal window. Use this parameter to instruct it otherwise.
|
||||
|
||||
=item B<begin> B<commit> B<rollback>
|
||||
|
||||
If your data is tied to some backend which supports transactions, you can provide
|
||||
functions to implement this. If all three are defined, the user can use transaction
|
||||
commands in the shell.
|
||||
|
||||
=back
|
||||
|
||||
=head2 inspect
|
||||
|
||||
The B<inspect> method starts the shell. Ii does return if the user leaves it, otherwise
|
||||
it runs forever.
|
||||
|
||||
The shell runs on a terminal and with STDIN.
|
||||
|
||||
The interactive shell supports command line editing, history and completion (for
|
||||
commands and hash keys), if L<Term::ReadLine::GNU> or L<Term::ReadLine::Perl> is
|
||||
installed.
|
||||
|
||||
=head1 INTERACTIVE COMMANDS
|
||||
|
||||
=head2 DISPLAY COMMANDS
|
||||
|
||||
=over
|
||||
|
||||
=item B<list>
|
||||
|
||||
Lists the keys of the current level of the structure.
|
||||
|
||||
Shortcut: B<l>.
|
||||
|
||||
=item B<show>
|
||||
|
||||
Does nearly the same as B<list> but also shows the content of the
|
||||
keys. If a key points to a structure (like a hash or an array), B<show>
|
||||
whill not display anything of it, but instead indicate, that there'e
|
||||
more behind that key.
|
||||
|
||||
Shortcut: B<sh>.
|
||||
|
||||
=item B<dump>
|
||||
|
||||
Dumps out everything of the current level of the structure.
|
||||
|
||||
Shortcut: B<d>.
|
||||
|
||||
=item B<get> key | /regex>
|
||||
|
||||
Displays the value of B<key>. If you specify a regex, the values of
|
||||
all matching keys will be shown.
|
||||
|
||||
=back
|
||||
|
||||
=head2 NAVIGATION COMMANDS
|
||||
|
||||
=over
|
||||
|
||||
=item B<enter> key
|
||||
|
||||
You can use this command to enter a sub hash of the current hash.
|
||||
It works like browsing a directory structure. You can only enter
|
||||
keys which point to sub hashes.
|
||||
|
||||
Shortcuts: B<cd>
|
||||
|
||||
If the key you want to enter doesn't collide with a command, then
|
||||
you can also just directly enter the key without 'enter' or 'cd' in
|
||||
front of it, eg:
|
||||
|
||||
my.db> list
|
||||
subhash
|
||||
my.db> subhash
|
||||
my.db subhash> dump
|
||||
my.db subhash> ..
|
||||
my.db>^D
|
||||
|
||||
If you specify B<..> as parameter (or as its own command like in the
|
||||
example below), you go one level up and leave the current sub hash.
|
||||
|
||||
=back
|
||||
|
||||
=head2 EDIT COMMANDS
|
||||
|
||||
=over
|
||||
|
||||
=item B<set> key value
|
||||
|
||||
Use the B<set> command to add a new key or to modify the value
|
||||
of a key. B<value> may be a valid perl structure, which you can
|
||||
use to create sub hashes or arrays. Example:
|
||||
|
||||
my.db> set users [ { name => 'max'}, { name => 'joe' } ]
|
||||
ok
|
||||
mydb> get users
|
||||
users =>
|
||||
{
|
||||
'name' => 'max'
|
||||
},
|
||||
{
|
||||
'name' => 'joe'
|
||||
}
|
||||
|
||||
B<Please note that the B<set> command overwrites existing values
|
||||
without asking>.
|
||||
|
||||
=item B<edit> key
|
||||
|
||||
You can edit a whole structure pointed at by B<key> with the
|
||||
B<edit> command. It opens an editor with the structure converted
|
||||
to L<YAML>. Modify whatever you wish, save, and the structure will
|
||||
be saved to the database.
|
||||
|
||||
=item B<append> key value
|
||||
|
||||
This command can be used to append a value to an array. As with the
|
||||
B<set> command, B<value> can be any valid perl structure.
|
||||
|
||||
=item B<drop> key
|
||||
|
||||
Delete a key.
|
||||
|
||||
Again, note that all commands are executed without further asking
|
||||
or warning!
|
||||
|
||||
=item B<pop> key
|
||||
|
||||
Remove the last element of the array pointed at by B<key>.
|
||||
|
||||
=item B<shift> key
|
||||
|
||||
Remove the first element of the array pointed at by B<key>.
|
||||
|
||||
=back
|
||||
|
||||
=head2 TRANSACTION COMMANDS
|
||||
|
||||
B<Only available if transaction support has been enabled, see below>.
|
||||
|
||||
=over
|
||||
|
||||
=item B<begin>
|
||||
|
||||
Start a transaction.
|
||||
|
||||
=item B<commit>
|
||||
|
||||
Save all changes made since the transaction began.
|
||||
|
||||
=item B<rollback>
|
||||
|
||||
Discard all changes of the transaction.
|
||||
|
||||
=back
|
||||
|
||||
=head2 MISC COMMANDS
|
||||
|
||||
=over
|
||||
|
||||
=item B<help>
|
||||
|
||||
Display a short command help.
|
||||
|
||||
Shortcuts: B<h> or B<?>.
|
||||
|
||||
=item B<CTRL-D>
|
||||
|
||||
Quit the interactive shell
|
||||
|
||||
Shortcuts: B<quit>.
|
||||
|
||||
=back
|
||||
|
||||
=head1 LIMITATIONS
|
||||
|
||||
The data structure you are inspecting with L<Data::Interactive::Inspect> may
|
||||
contain code refs. That's not a problem as long as you don't touch them.
|
||||
|
||||
Sample:
|
||||
|
||||
my $c = {
|
||||
opt => 'value',
|
||||
hook => sub { return 1; },
|
||||
};
|
||||
my $shell = Data::Interactive::Inspect->new($c);
|
||||
$shell->inspect();
|
||||
|
||||
Execute:
|
||||
|
||||
data@0x80140a468> dump
|
||||
---
|
||||
hook: !!perl/code '{ "DUMMY" }'
|
||||
opt: value
|
||||
data@0x80140a468> set hook blah
|
||||
data@0x80140a468> edit hook
|
||||
|
||||
Both commands would destroy the code ref. The first one would just overwrite it
|
||||
while the other one would remove the code (in fact it remains a code ref but
|
||||
it will contain dummy code only).
|
||||
|
||||
=head1 TODO
|
||||
|
||||
=over
|
||||
|
||||
=item Add some kind of select command
|
||||
|
||||
Example:
|
||||
|
||||
struct:
|
||||
|
||||
{
|
||||
users => [
|
||||
{ login => 'max', uid => 1 },
|
||||
{ login => 'leo', uid => 2 },
|
||||
]
|
||||
}
|
||||
|
||||
> select login from users where uid = 1
|
||||
|
||||
which should return 'max'.
|
||||
|
||||
(may require a real world parser)
|
||||
|
||||
=item Add some kind of schema support
|
||||
|
||||
Given the same structure as above:
|
||||
|
||||
> update users set uid = 4 where login = 'max'
|
||||
|
||||
=back
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
T.v.Dein <tlinden@cpan.org>
|
||||
|
||||
=head1 BUGS
|
||||
|
||||
Report bugs to
|
||||
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Data::Interactive::Inspect
|
||||
|
||||
=head1 COPYRIGHT
|
||||
|
||||
Copyright (c) 2015 by T.v.Dein <tlinden@cpan.org>.
|
||||
All rights reserved.
|
||||
|
||||
=head1 LICENSE
|
||||
|
||||
This program is free software; you can redistribute it
|
||||
and/or modify it under the same terms as Perl itself.
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
This is the manual page for L<Data::Interactive::Inspect> Version 0.01.
|
||||
|
||||
=cut
|
||||
7
MANIFEST
Normal file
7
MANIFEST
Normal file
@@ -0,0 +1,7 @@
|
||||
MANIFEST
|
||||
Makefile.PL
|
||||
Inspect.pm
|
||||
README
|
||||
Changelog
|
||||
META.yml Module meta-data (added by MakeMaker)
|
||||
META.json Module meta-data (added by MakeMaker)
|
||||
34
Makefile.PL
Normal file
34
Makefile.PL
Normal file
@@ -0,0 +1,34 @@
|
||||
#
|
||||
# Makefile.PL - build file for Data::Interactive::Inspect
|
||||
#
|
||||
# Copyright (c) 2007-2014 T. v.Dein <tom |AT| cpan.org>.
|
||||
# All Rights Reserved. Std. disclaimer applies.
|
||||
# Artistic License, same as perl itself. Have fun.
|
||||
#
|
||||
|
||||
use ExtUtils::MakeMaker;
|
||||
|
||||
WriteMakefile(
|
||||
NAME => 'Data::Interactive::Inspect',
|
||||
VERSION_FROM => 'Inspect.pm',
|
||||
ABSTRACT => 'Inspect and manipulate perl data structures interactively',
|
||||
LICENSE => 'perl',
|
||||
AUTHOR => [
|
||||
'Thomas v.Dein <tlinden@cpan.org>',
|
||||
],
|
||||
clean => { FILES => '*~ */*~' },
|
||||
PREREQ_PM => {
|
||||
'YAML' => 0,
|
||||
'File::Temp' => 0,
|
||||
'Term::ReadLine' => 0,
|
||||
},
|
||||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
||||
test => { TESTS => 't/*.t' },
|
||||
'META_MERGE' => {
|
||||
resources => {
|
||||
repository => 'https://github.com/TLINDEN/Data-Interactive-Inspect',
|
||||
},
|
||||
},
|
||||
|
||||
);
|
||||
|
||||
55
README
Normal file
55
README
Normal file
@@ -0,0 +1,55 @@
|
||||
NAME
|
||||
Data::Interactive::Inspect - Inspect and manipulate perl data structures interactively
|
||||
|
||||
SYNOPSIS
|
||||
use Data::Interactive::Inspect;
|
||||
my $data = foo(); # get a hash ref from somewhere
|
||||
|
||||
# new shell object, the simple way
|
||||
my $shell = Data::Interactive::Inspect->new($data);
|
||||
|
||||
# or
|
||||
my $shell = Data::Interactive::Inspect->new(
|
||||
struct => $data,
|
||||
name => 'verkehrswege',
|
||||
begin => sub { .. },
|
||||
commit => sub { .. },
|
||||
rollback => sub { .. },
|
||||
editor => 'emacs',
|
||||
more => 'less'
|
||||
);
|
||||
|
||||
$data = $shell->inspect(); # opens a shell and returns modified hash ref on quit
|
||||
|
||||
DESCRIPTION
|
||||
This module provides an interactive shell which can be used to inspect
|
||||
and modify a perl data structure.
|
||||
|
||||
INSTALLATION
|
||||
|
||||
to install, type:
|
||||
perl Makefile.PL
|
||||
make
|
||||
make test
|
||||
make install
|
||||
|
||||
to read the complete documentation, type:
|
||||
perldoc Data::Interactive::Inspect
|
||||
|
||||
AUTHOR
|
||||
T.v.Dein <tlinden@cpan.org>
|
||||
|
||||
BUGS
|
||||
Report bugs to
|
||||
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Data::Interactive::Inspect
|
||||
|
||||
COPYRIGHT
|
||||
Copyright (c) 2015 by T.v.Dein <tlinden@cpan.org>. All rights
|
||||
reserved.
|
||||
|
||||
LICENSE
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the same terms as Perl itself.
|
||||
|
||||
VERSION
|
||||
This is the manual page for Data::Interactive::Inspect Version 0.01.
|
||||
51
t/run.t
Normal file
51
t/run.t
Normal file
@@ -0,0 +1,51 @@
|
||||
# -*-perl-*-
|
||||
|
||||
use Test::More tests => 10;
|
||||
#use Test::More qw(no_plan);
|
||||
|
||||
require_ok( 'Data::Interactive::Inspect' );
|
||||
|
||||
my $cfg = {
|
||||
'v27' => '10',
|
||||
'v28' => 'ten',
|
||||
|
||||
'AoA' => [ 1, 2, 3, 4 ],
|
||||
|
||||
'AoH' => {
|
||||
'Homer' => { user => 'homer', uid => 100 },
|
||||
'Bart' => { user => 'bart', uid => 101 },
|
||||
'Lisa' => { user => 'lisa', uid => 102 },
|
||||
},
|
||||
};
|
||||
|
||||
my $shell = new_ok('Data::Interactive::Inspect', [ $cfg ]);
|
||||
ok($shell, "Data::Interactive::Inspect->new() returns an obj");
|
||||
|
||||
my $orig;
|
||||
foreach my $k (keys %{$cfg}) {
|
||||
$orig->{$k} = $cfg->{$k};
|
||||
}
|
||||
|
||||
|
||||
my $m1 = $shell->inspect("set v27 888\n");
|
||||
isnt($orig->{v27}, $m1->{v27}, "hash modified");
|
||||
|
||||
my $m2 = $shell->inspect("set GY { nom => 400 }");
|
||||
is_deeply($m2->{GY}, { nom => 400 }, "add a sub hash");
|
||||
|
||||
my $m3 = $shell->inspect("pop AoA");
|
||||
is_deeply($m3->{AoA}, [1,2,3], "remove last element of array");
|
||||
|
||||
my $m4 = $shell->inspect("shift AoA");
|
||||
is_deeply($m4->{AoA}, [2,3], "remove 1st element of arry");
|
||||
|
||||
my $m5 = $shell->inspect("append AoA 9");
|
||||
is_deeply($m5->{AoA}, [2,3,9], "append to array");
|
||||
|
||||
my $m6 = $shell->inspect("drop v28");
|
||||
isnt($orig->{v28}, $m6->{v28}, "delete a key");
|
||||
|
||||
my $m7 = $shell->inspect("enter AoH\nenter Bart\nset uid 0\n");
|
||||
is_deeply($m7->{AoH}->{Bart}, { user => 'bart', uid => 0 }, "browse and modify deeply");
|
||||
|
||||
done_testing();
|
||||
Reference in New Issue
Block a user