#!/usr/bin/perl # graphviz plugin for ikiwiki: render graphviz source as an image. # Josh Triplett package IkiWiki::Plugin::graphviz; use warnings; use strict; use IkiWiki 2.00; use IPC::Open2; sub import { #{{{ hook(type => "preprocess", id => "graph", call => \&graph); } # }}} my %graphviz_programs = ( "dot" => 1, "neato" => 1, "fdp" => 1, "twopi" => 1, "circo" => 1 ); sub render_graph (\%) { #{{{ my %params = %{(shift)}; my $src = "$params{type} g {\n"; $src .= "charset=\"utf-8\";\n"; $src .= "ratio=compress;\nsize=\"".($params{width}+0).", ".($params{height}+0)."\";\n" if defined $params{width} and defined $params{height}; $src .= $params{src}; $src .= "}\n"; # Use the sha1 of the graphviz code as part of its filename. eval q{use Digest::SHA1}; error($@) if $@; my $dest=$params{destpage}."/graph-". IkiWiki::possibly_foolish_untaint(Digest::SHA1::sha1_hex($src)). ".png"; will_render($params{destpage}, $dest); if (! -e "$config{destdir}/$dest") { my $pid; my $sigpipe=0;; $SIG{PIPE}=sub { $sigpipe=1 }; $pid=open2(*IN, *OUT, "$params{prog} -Tpng"); # open2 doesn't respect "use open ':utf8'" binmode (OUT, ':utf8'); print OUT $src; close OUT; my $png; { local $/ = undef; $png = ; } close IN; waitpid $pid, 0; $SIG{PIPE}="DEFAULT"; return "[[graph ".gettext("failed to run graphviz")."]]" if ($sigpipe); if (! $params{preview}) { writefile($dest, $config{destdir}, $png, 1); } else { # can't write the file, so embed it in a data uri eval q{use MIME::Base64}; error($@) if $@; return ""; } } if ($params{preview}) { return "\n"; } else { return "\n"; } } #}}} sub graph (@) { #{{{ my %params=@_; $params{src} = "" unless defined $params{src}; $params{type} = "digraph" unless defined $params{type}; $params{prog} = "dot" unless defined $params{prog}; return "[[graph ".gettext("prog not a valid graphviz program")."]]" unless $graphviz_programs{$params{prog}}; return render_graph(%params); } # }}} 1