/usr/share/perl5/GraphViz/Regex.pm is in libgraphviz-perl 2.14-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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | package GraphViz::Regex;
use strict;
use warnings;
use vars qw($VERSION);
use Carp;
use Config;
use lib '../..';
use lib '..';
use GraphViz;
use IPC::Run qw(run);
# See perldebguts
our $VERSION = '2.14';
my $DEBUG = 0; # whether debugging statements are shown
=head1 NAME
GraphViz::Regex - Visualise a regular expression
=head1 SYNOPSIS
use GraphViz::Regex;
my $regex = '(([abcd0-9])|(foo))';
my $graph = GraphViz::Regex->new($regex);
print $graph->as_png;
=head1 DESCRIPTION
This module attempts to visualise a Perl regular
expression. Understanding regular expressions is tricky at the best of
times, and regexess almost always evolve in ways unforseen at the
start. This module aims to visualise a regex as a graph in order to
make the structure clear and aid in understanding the regex.
The graph visualises how the Perl regular expression engine attempts
to match the regex. Simple text matches or character classes are
represented by.box-shaped nodes. Alternations are represented by a
diamond-shaped node which points to the alternations. Repetitions are
represented by self-edges with a label of the repetition type (the
nodes being repeated are pointed to be a full edge, a dotted edge
points to what to match after the repetition). Matched patterns (such
as $1, $2, etc.) are represented by a 'START $1' .. 'END $1' node
pair.
This uses the GraphViz module to draw the graph.
=head1 METHODS
=head2 new
This is the constructor. It takes one mandatory argument, which is a
string of the regular expression to be visualised. A GraphViz object
is returned.
my $graph = GraphViz::Regex->new($regex);
=cut
sub new {
my $proto = shift;
my $class = ref($proto) || $proto;
my $regex = shift;
return _init($regex);
}
=head2 as_*
The regex can be visualised in a number of different graphical
formats. Methods include as_ps, as_hpgl, as_pcl, as_mif, as_pic,
as_gd, as_gd2, as_gif, as_jpeg, as_png, as_wbmp, as_ismap, as_imap,
as_vrml, as_vtx, as_mp, as_fig, as_svg. See the GraphViz documentation
for more information. The two most common methods are:
# Print out a PNG-format file
print $g->as_png;
# Print out a PostScript-format file
print $g->as_ps;
=cut
sub _init {
my $regex = shift;
my $compiled;
my $foo;
my $perl = $Config{perlpath};
warn "perlpath: $perl\n" if $DEBUG;
my $option = qq|use re "debug";qr/$regex/;|;
run [$perl], \$option, \$foo, \$compiled;
warn "[$compiled]\n" if $DEBUG;
# die "Crap" unless $compiled;
my $g = GraphViz->new( rankdir => 'LR' );
my %states;
my %following;
my $last_id;
foreach my $line ( split /\n/, $compiled ) {
next unless my ( $id, $state ) = $line =~ /(\d+):\s+(.+)$/;
$states{$id} = $state;
$following{$last_id} = $id if $last_id;
$last_id = $id;
}
my %done;
my @todo = (1);
warn "last id: $last_id\n" if $DEBUG;
if ( not defined $last_id ) {
$g->add_node("Error compiling regex");
return $g;
}
while (@todo) {
my $id = pop @todo;
next unless $id;
next if $done{$id}++;
my $state = $states{$id};
my $following = $following{$id};
my ($next) = $state =~ /\((\d+)\)$/;
# warn "todo: " . join(", ", @todo) . "\n" if $DEBUG;
push @todo, $following;
push @todo, $next if $next;
my $match;
warn "$id:\t$state\n" if $DEBUG;
if ( ($match) = $state =~ /^EXACTF?L? <(.+)>/ ) {
warn "\t$match $next\n" if $DEBUG;
$g->add_node( $id, label => $match, shape => 'box' );
$g->add_edge( $id => $next ) if $next != 0;
$done{$following}++ unless $next;
} elsif ( ($match) = $state =~ /^ANYOF\[(.+)\]/ ) {
warn "\tany $match $next\n" if $DEBUG;
$g->add_node( $id, label => '[' . $match . ']', shape => 'box' );
$g->add_edge( $id => $next ) if $next != 0;
$done{$following}++ unless $next;
} elsif ( ($match) = $state =~ /^OPEN(\d+)/ ) {
warn "\tOPEN $match $next\n" if $DEBUG;
$g->add_node( $id, label => 'START \$' . $match );
$g->add_edge( $id => $following );
} elsif ( ($match) = $state =~ /^CLOSE(\d+)/ ) {
warn "\tCLOSE $match $next\n" if $DEBUG;
$g->add_node( $id, label => 'END \$' . $match );
$g->add_edge( $id => $next );
} elsif ( $state =~ /^END/ ) {
warn "\tEND\n" if $DEBUG;
$g->add_node( $id, label => 'END' );
} elsif ( $state =~ /^BRANCH/ ) {
my $branch = $next;
warn "\tbranch $branch / " . ($following) . "\n" if $DEBUG;
my @children;
push @children, $following;
while ( $states{$branch} =~ /^BRANCH|TAIL/ ) {
warn "\tdoing branch $branch\n" if $DEBUG;
$done{$branch}++;
push @children, $following{$branch};
($branch) = $states{$branch} =~ /(\d+)/;
}
$g->add_node( $id, label => '', shape => 'diamond' );
foreach my $child (@children) {
push @todo, $child;
$g->add_edge( $id => $child );
}
} elsif ( my ($repetition) = $state =~ /^(PLUS|STAR)/ ) {
warn "\t$repetition $next\n" if $DEBUG;
my $label = '?';
if ( $repetition eq 'PLUS' ) {
$label = '+';
} elsif ( $repetition eq 'STAR' ) {
$label = '*';
}
$g->add_node( $id, label => 'REPEAT' );
$g->add_edge( $id => $id, label => $label );
$g->add_edge( $id => $following );
$g->add_edge( $id => $next, style => 'dashed' );
} elsif ( my ( $type, $min, $max )
= $state =~ /^CURLY([NMX]?)\[?\d*\]? \{(\d+),(\d+)\}/ )
{
warn "\tCURLY$type $min $max $next\n" if $DEBUG;
$g->add_node( $id, label => 'REPEAT' );
$g->add_edge(
$id => $id,
label => '{' . $min . ", " . $max . '}'
);
$g->add_edge( $id => $following );
$g->add_edge( $id => $next, style => 'dashed' );
} elsif ( $state =~ /^BOL/ ) {
warn "\tBOL $next\n" if $DEBUG;
$g->add_node( $id, label => '^' );
$g->add_edge( $id => $next );
} elsif ( $state =~ /^EOL/ ) {
warn "\tEOL $next\n" if $DEBUG;
$g->add_node( $id, label => "\$" );
$g->add_edge( $id => $next );
} elsif ( $state =~ /^NOTHING/ ) {
warn "\tNOTHING $next\n" if $DEBUG;
$g->add_node( $id, label => 'Match empty string' );
$g->add_edge( $id => $next );
} elsif ( $state =~ /^MINMOD/ ) {
warn "\tMINMOD $next\n" if $DEBUG;
$g->add_node( $id, label => 'Next operator\nnon-greedy' );
$g->add_edge( $id => $next );
} elsif ( $state =~ /^SUCCEED/ ) {
warn "\tSUCCEED $next\n" if $DEBUG;
$g->add_node( $id, label => 'SUCCEED' );
$done{$following}++;
} elsif ( $state =~ /^UNLESSM/ ) {
warn "\tUNLESSM $next\n" if $DEBUG;
$g->add_node( $id, label => 'UNLESS' );
$g->add_edge( $id => $following );
$g->add_edge( $id => $next, style => 'dashed' );
} elsif ( $state =~ /^IFMATCH/ ) {
warn "\tIFMATCH $next\n" if $DEBUG;
$g->add_node( $id, label => 'IFMATCH' );
$g->add_edge( $id => $following );
$g->add_edge( $id => $next, style => 'dashed' );
} elsif ( $state =~ /^IFTHEN/ ) {
warn "\tIFTHEN $next\n" if $DEBUG;
$g->add_node( $id, label => 'IFTHEN' );
$g->add_edge( $id => $following );
$g->add_edge( $id => $next, style => 'dashed' );
} elsif ( $state =~ /^([A-Z_0-9]+)/ ) {
my ($state) = ( $1, $2 );
warn "\t? $state $next\n" if $DEBUG;
$g->add_node( $id, label => $state );
$g->add_edge( $id => $next ) if $next != 0;
} else {
$g->add_node( $id, label => $state );
}
}
return $g;
}
=head1 BUGS
Note that this module relies on debugging information provided by
Perl, and is known to fail on at least two versions of Perl: 5.005_03
and 5.7.1. Sorry about that - please use a more recent version of Perl
if you want to use this module.
=head1 AUTHOR
Leon Brocard E<lt>F<acme@astray.com>E<gt>
=head1 COPYRIGHT
Copyright (C) 2000-1, Leon Brocard
This module is free software; you can redistribute it or modify it
under the same terms as Perl itself.
=cut
1;
|