-
-
28 Nov 2005 22:01:10 UTC
- Distribution: Devel-Command-Viz
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (123 / 0 / 2)
- Kwalitee
Bus factor: 1- 87.50% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (2.34KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Devel::Command
- GraphViz::Data::Structure
- Test::More
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Devel::Command::Viz - graph data structures under the debugger
SYNOPSIS
# in .perldb: use Devel::Command; sub afterinit { Devel::Command->install; } # In the debugger: DB<1> my $a = [1, 2, {3=>4}, [5.6]] DB<2> viz $a # A 'dotty' window pops up, showing the data structure.
DESCRIPTION
Devel::Command::Viz
is a debugger extension command plugin for Devel::Command. It usesGraphViz::Data::Structure
to visualize a Perl data structure anddotty
to display the resultant graph.ROUTINES
command
Standard
Devel::Command
wrapper code to parse a debugger command line, render the graph, and display it.BUGS
None known; it's possible that the resultant graphs may have probelms due to as-yet-uncaught bugs in
GraphViz::Data::Structure
.The command will not work if you have no way of running
dotty
, which requires X Windows to be running.SEE ALSO
perl5db.pl
,Devel::Command
,dotty
AUTHOR
Joe McMahon, <mcmahon@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2005 by Joe McMahon
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.6 or, at your option, any later version of Perl 5 you may have available.
Module Install Instructions
To install Devel::Command::Viz, copy and paste the appropriate command in to your terminal.
cpanm Devel::Command::Viz
perl -MCPAN -e shell install Devel::Command::Viz
For more information on module installation, please visit the detailed CPAN module installation guide.