]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/GraphViz.php
use cached img and map - again. Remove execute from here
[SourceForge/phpwiki.git] / lib / plugin / GraphViz.php
1 <?php // -*-php-*-
2 rcs_id('$Id: GraphViz.php,v 1.5 2005-09-26 06:39:14 rurban Exp $');
3 /*
4  Copyright 2004 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  * The GraphViz plugin passes all its arguments to the grapviz dot
25  * binary and displays the result as cached image (PNG,GIF,SVG) or imagemap.
26  *
27  * @Author: Reini Urban
28  *
29  * Note: 
30  * - We support only images supported by GD so far (PNG most likely). 
31  *   EPS, PS, SWF, SVG or SVGZ and imagemaps need to be tested.
32  *
33  * Usage:
34 <?plugin GraphViz [options...]
35    multiline dot script ...
36 ?>
37
38  * See also: VisualWiki, which depends on GraphViz and WikiPluginCached.
39  *
40  * TODO: 
41  * - neato binary ?
42  * - expand embedded <!plugin-list pagelist !> within the digraph script.
43  */
44
45 if (PHP_OS == "Darwin") { // Mac OS X
46     if (!defined("GRAPHVIZ_EXE"))
47         define('GRAPHVIZ_EXE', '/sw/bin/dot'); // graphviz via Fink
48     // Name of the Truetypefont - at least LucidaSansRegular.ttf is always present on OS X
49     if (!defined('VISUALWIKIFONT'))
50         define('VISUALWIKIFONT', 'LucidaSansRegular');
51     // The default font paths do not find your fonts, set the path here:
52     $fontpath = "/System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Home/lib/fonts/";
53     //$fontpath = "/usr/X11R6/lib/X11/fonts/TTF/";
54 }
55 elseif (isWindows()) {
56     if (!defined("GRAPHVIZ_EXE"))
57         define('GRAPHVIZ_EXE','dot.exe');
58     if (!defined('VISUALWIKIFONT'))
59         define('VISUALWIKIFONT', 'Arial');
60 } elseif ($_SERVER["SERVER_NAME"] == 'phpwiki.sourceforge.net') { // sf.net hack
61     if (!defined("GRAPHVIZ_EXE"))
62         define('GRAPHVIZ_EXE','/home/groups/p/ph/phpwiki/bin/dot');
63     if (!defined('VISUALWIKIFONT'))
64         define('VISUALWIKIFONT', 'luximr'); 
65 } else { // other os
66     if (!defined("GRAPHVIZ_EXE"))
67         define('GRAPHVIZ_EXE','/usr/local/bin/dot');
68     // Name of the Truetypefont - Helvetica is probably easier to read
69     if (!defined('VISUALWIKIFONT'))
70         define('VISUALWIKIFONT', 'Helvetica');
71     //define('VISUALWIKIFONT', 'Times');
72     //define('VISUALWIKIFONT', 'Arial');
73     // The default font paths do not find your fonts, set the path here:
74     //$fontpath = "/usr/X11R6/lib/X11/fonts/TTF/";
75     //$fontpath = "/usr/share/fonts/default/TrueType/";
76 }
77
78 require_once "lib/WikiPluginCached.php"; 
79
80 class WikiPlugin_GraphViz
81 extends WikiPluginCached
82 {
83
84     function _mapTypes() {
85         return array("imap", "cmapx", "ismap", "cmap");
86     }
87
88     /**
89      * Sets plugin type to MAP
90      * or HTML if the imagetype is not supported by GD (EPS, SVG, SVGZ) (not yet)
91      * or IMG_INLINE if device = png, gif or jpeg
92      */
93     function getPluginType() {
94         $type = $this->decideImgType($this->_args['imgtype']);
95         if ($type == $this->_args['imgtype'])
96             return PLUGIN_CACHED_IMG_INLINE;
97         $device = strtolower($this->_args['imgtype']);
98         if (in_array($device, $this->_mapTypes()))
99             return PLUGIN_CACHED_MAP;
100         if (in_array($device, array('svg','swf','svgz','eps','ps'))) {
101             switch ($this->_args['imgtype']) {
102                 case 'svg':
103                 case 'svgz':
104                    return PLUGIN_CACHED_STATIC | PLUGIN_CACHED_SVG_PNG;
105                 case 'swf':
106                    return PLUGIN_CACHED_STATIC | PLUGIN_CACHED_SWF;
107                 default: 
108                    return PLUGIN_CACHED_STATIC | PLUGIN_CACHED_HTML;
109             }
110         }
111         else
112             return PLUGIN_CACHED_IMG_INLINE; // normal cached libgd image handles
113     }
114     function getName () {
115         return _("GraphViz");
116     }
117     function getDescription () {
118         return _("GraphViz image or imagemap creation of directed graphs");
119     }
120     function managesValidators() {
121         return true;
122     }
123     function getVersion() {
124         return preg_replace("/[Revision: $]/", '',
125                             "\$Revision: 1.5 $");
126     }
127     function getDefaultArguments() {
128         return array(
129                      'imgtype' => 'png', // png,gif,svgz,svg,...
130                      'alt'     => false,
131                      'pages'   => false,  // <!plugin-list !> support
132                      'exclude' => false,
133                      'help'    => false,
134                      );
135     }
136     function handle_plugin_args_cruft(&$argstr, &$args) {
137         $this->source = $argstr;
138     }
139     /**
140      * Sets the expire time to one day (so the image producing
141      * functions are called seldomly) or to about two minutes
142      * if a help screen is created.
143      */
144     function getExpire($dbi, $argarray, $request) {
145         if (!empty($argarray['help']))
146             return '+120'; // 2 minutes
147         return sprintf('+%d', 3*86000); // approx 3 days
148     }
149
150     /**
151      * Sets the imagetype according to user wishes and
152      * relies on WikiPluginCached to catch illegal image
153      * formats.
154      * @return string 'png', 'jpeg', 'gif'
155      */
156     function getImageType($dbi, $argarray, $request) {
157         return $argarray['imgtype'];
158     }
159
160     /**
161      * This gives an alternative text description of
162      * the image.
163      */
164     function getAlt($dbi, $argstr, $request) {
165         return (!empty($this->_args['alt'])) ? $this->_args['alt']
166                                              : $this->getDescription();
167     }
168
169     /**
170      * Returns an image containing a usage description of the plugin.
171      *
172      * TODO: *map features.
173      * @return string image handle
174      */
175     function helpImage() {
176         $def = $this->defaultArguments();
177         //$other_imgtypes = $GLOBALS['PLUGIN_CACHED_IMGTYPES'];
178         //unset ($other_imgtypes[$def['imgtype']]);
179         $imgtypes = $GLOBALS['PLUGIN_CACHED_IMGTYPES'];
180         $imgtypes = array_merge($imgtypes, array("svg", "svgz", "ps"), $this->_mapTypes());
181         $helparr = array(
182             '<?plugin GraphViz ' .
183             'imgtype'          => ' = "' . $def['imgtype'] . "(default)|" . join('|',$imgtypes).'"',
184             'alt'              => ' = "alternate text"',
185             'pages'            => ' = "pages,*" or <!plugin-list !> pagelist as input',
186             'exclude'          => ' = "pages,*" or <!plugin-list !> pagelist as input',
187             'help'             => ' bool: displays this screen',
188             '...'              => ' all further lines below the first plugin line ',
189             ''                 => ' and inside the tags are the dot script.',
190             "\n  ?>"
191             );
192         $length = 0;
193         foreach($helparr as $alignright => $alignleft) {
194             $length = max($length, strlen($alignright));
195         }
196         $helptext ='';
197         foreach($helparr as $alignright => $alignleft) {
198             $helptext .= substr('                                                        '
199                                 . $alignright, -$length).$alignleft."\n";
200         }
201         return $this->text2img($helptext, 4, array(1, 0, 0),
202                                array(255, 255, 255));
203     }
204
205     function processSource($argarray=false) {
206         $source = $this->source;
207         if (empty($source)) {
208             // create digraph from pages
209             $source = "digraph GraphViz {\n";  // }
210             foreach ($argarray['pages'] as $name) { // support <!plugin-list !> pagelists
211                 // allow Page/SubPage
212                 $url = str_replace(urlencode(SUBPAGE_SEPARATOR), SUBPAGE_SEPARATOR, rawurlencode($name));
213                 $source .= "  \"$name\" [URL=\"$url\"];\n";
214             }
215             // {
216             $source .= "\n  }";
217         }
218         /* //TODO: expand inlined plugin-list arg
219          $i = 0;
220          foreach ($source as $data) {
221              // hash or array?
222              if (is_array($data))
223                  $src .= ("\t" . join(" ", $data) . "\n");
224              else
225                  $src .= ("\t" . '"' . $data . '" ' . $i++ . "\n");
226              $src .= $source;
227              $source = $src;
228         }
229         */
230         return $source;
231     }
232
233     function createDotFile($tempfile='', $argarray=false) {
234         $this->source = $this->processSource($argarray);
235         if (!$tempfile) {
236             $tempfile = $this->tempnam($this->getName().".dot");
237             unlink($tempfile);
238         }
239         if (!$fp = fopen($tempfile, 'w'))
240             return false;
241         $ok = fwrite($fp, $this->source);
242         $ok = fclose($fp) && $ok;  // close anyway
243         return $ok ? $tempfile : false;
244     }
245
246     function getImage($dbi, $argarray, $request) {
247         $dotbin = GRAPHVIZ_EXE;
248         $tempfiles = $this->tempnam($this->getName());
249         $gif = $argarray['imgtype'];
250         if (in_array($gif, array("imap", "cmapx", "ismap", "cmap"))) {
251             $this->_mapfile = "$tempfiles.map";
252             $gif = $this->decideImgType($argarray['imgtype']);
253         }
254
255         $ImageCreateFromFunc = "ImageCreateFrom$gif";
256         $outfile = $tempfiles.".".$gif;
257         $debug = $request->getArg('debug');
258         if ($debug) {
259             $tempdir = dirname($tempfiles);
260             $tempout = $tempdir . "/.debug";
261         }
262         $source = $this->processSource($argarray);
263         if (empty($source))
264             return $this->error(fmt("No dot graph given"));
265         //$ok = $tempfiles;
266         //$dotfile = $this->createDotFile($tempfiles.'.dot', $argarray);
267         //$args = "-T$gif $dotfile -o $outfile";
268         $args = "-T$gif -o $outfile";
269         $cmdline = "$dotbin $args";
270         if ($debug) $cmdline .= " > $tempout";
271         //if (!isWindows()) $cmdline .= " 2>&1";
272         //$this->execute($cmdline, $outfile);
273         $code = $this->filterThroughCmd($source, $cmdline);
274         if (!empty($code))
275             $this->complain(sprintf(_("Couldn't start commandline '%s'", $cmdline)));
276         sleep(0.1);
277         if (! file_exists($outfile) ) {
278             $this->complain(sprintf(_("%s error: outputfile '%s' not created"), 
279                                     "GraphViz", $outfile));
280             $this->complain("\ncmd-line: $cmdline");
281             return false;
282         }
283         if (function_exists($ImageCreateFromFunc)) {
284             $img = $ImageCreateFromFunc( $outfile );
285             // clean up tempfiles
286             if (!$argarray['debug'])
287                 foreach (array('',".$gif",'.dot') as $ext) {
288                     if (file_exists($tempfiles.$ext))
289                         unlink($tempfiles.$ext);
290                 }
291             return $img;
292         }
293         return $outfile;
294     }
295     
296     // which argument must be set to 'png', for the fallback image when svg will fail on the client.
297     // type: SVG_PNG
298     function pngArg() {
299         return 'imgtype';
300     }
301     
302     function getMap($dbi, $argarray, $request) {
303         return $this->invokeDot($argarray);
304         // $img = $this->getImage($dbi, $argarray, $request);
305         //return array($this->_mapfile, $img);
306     }
307
308     /**
309      * Produces a dot file, calls dot twice to obtain an image and a
310      * text description of active areas for hyperlinking and returns
311      * an image and an html map.
312      *
313      * @param width     float   width of the output graph in inches
314      * @param height    float   height of the graph in inches
315      * @param colorby   string  color sceme beeing used ('age', 'revtime',
316      *                                                   'none')
317      * @param shape     string  node shape; 'ellipse', 'box', 'circle', 'point'
318      * @param label     string  not used anymore
319      */
320     function invokeDot($argarray) {
321         $dotbin = GRAPHVIZ_EXE;
322         $tempfiles = $this->tempnam($this->getName());
323         $gif = $argarray['imgtype'];
324         $ImageCreateFromFunc = "ImageCreateFrom$gif";
325         $outfile = $tempfiles.".".$gif;
326         $debug = $GLOBALS['request']->getArg('debug');
327         if ($debug) {
328             $tempdir = dirname($tempfiles);
329             $tempout = $tempdir . "/.debug";
330         }
331         $ok = $tempfiles;
332         $source = $this->processSource($argarray);
333         if (empty($source))
334             return $this->error(fmt("No dot graph given"));
335         //$ok = $ok and $this->createDotFile($tempfiles.'.dot', $argarray);
336
337         $args = "-T$gif $tempfiles.dot -o $outfile";
338         $cmdline1 = "$dotbin $args";
339         if ($debug) $cmdline1 .= " > $tempout";
340         $ok = $ok and $this->filterThroughCmd($source, $cmdline1);
341         // $this->execute("$dotbin -T$gif $tempfiles.dot -o $outfile" . 
342         //                    ($debug ? " > $tempout 2>&1" : " 2>&1"), $outfile)
343
344         $args = "-Timap $tempfiles.dot -o $tempfiles.map";
345         $cmdline2 = "$dotbin $args";
346         if ($debug) $cmdline2 .= " > $tempout";
347         $ok = $ok and $this->filterThroughCmd($source, $cmdline2);
348         // $this->execute("$dotbin -Timap $tempfiles.dot -o ".$tempfiles.".map" . 
349         //                    ($debug ? " > $tempout 2>&1" : " 2>&1"), $tempfiles.".map")
350         $ok = $ok and file_exists( $outfile );
351         $ok = $ok and file_exists( $tempfiles.'.map' );
352         $ok = $ok and ($img = $ImageCreateFromFunc($outfile));
353         $ok = $ok and ($fp = fopen($tempfiles.'.map', 'r'));
354
355         $map = HTML();
356         if ($debug == 'static') {
357             // workaround for misconfigured WikiPluginCached (sf.net) or dot.
358             // present a static png and map file.
359             if (file_exists($outfile) and filesize($outfile) > 900)
360                 $img = $outfile;
361             else
362                 $img = $tempdir . "/".$this->getName().".".$gif;
363             if (file_exists( $tempfiles.".map") and filesize($tempfiles.".map") > 20)
364                 $map = $tempfiles.".map";
365             else
366                 $map = $tempdir . "/".$this->getName().".map";
367             $img = $ImageCreateFromFunc($img);
368             $fp = fopen($map, 'r');
369             $map = HTML();      
370             $ok = true;
371         }
372         if ($ok and $fp) {
373             while (!feof($fp)) {
374                 $line = fgets($fp, 1000);
375                 if (substr($line, 0, 1) == '#')
376                     continue;
377                 list($shape, $url, $e1, $e2, $e3, $e4) = sscanf($line,
378                                                                 "%s %s %d,%d %d,%d");
379                 if ($shape != 'rect')
380                     continue;
381
382                 // dot sometimes gives not always the right order so
383                 // so we have to sort a bit
384                 $x1 = min($e1, $e3);
385                 $x2 = max($e1, $e3);
386                 $y1 = min($e2, $e4);
387                 $y2 = max($e2, $e4);
388                 $map->pushContent(HTML::area(array(
389                             'shape'  => 'rect',
390                             'coords' => "$x1,$y1,$x2,$y2",
391                             'href'   => $url,
392                             'title'  => rawurldecode($url),
393                             'alt' => $url)));
394             }
395             fclose($fp);
396             //trigger_error("url=".$url);
397         } else {
398             $this->complain("$outfile: "
399                             . (file_exists($outfile) ? filesize($outfile):'missing')
400                             ."\n"
401                             . "$tempfiles.map: "
402                             . (file_exists("$tempfiles.map") ? filesize("$tempfiles.map"):'missing'));
403             $this->complain("\ncmd-line: $cmdline1");
404             $this->complain("\ncmd-line: $cmdline2");
405             trigger_error($this->GetError(), E_USER_WARNING);
406             return array(false, false);
407         }
408
409         // clean up tempfiles
410         if ($ok and !$argarray['debug'])
411             foreach (array('',".$gif",'.map','.dot') as $ext) {
412                 //if (file_exists($tempfiles.$ext))
413                 @unlink($tempfiles.$ext);
414             }
415
416         if ($ok)
417             return array($img, $map);
418         else
419             return array(false, false);
420     }
421
422 };
423
424 // $Log: not supported by cvs2svn $
425 // Revision 1.4  2005/05/06 16:54:59  rurban
426 // add failing cmdline for .map
427 //
428 // Revision 1.3  2004/12/17 16:49:52  rurban
429 // avoid Invalid username message on Sign In button click
430 //
431 // Revision 1.2  2004/12/14 21:34:22  rurban
432 // fix syntax error
433 //
434 // Revision 1.1  2004/12/13 14:45:33  rurban
435 // new generic GraphViz plugin: similar to Ploticus
436 //
437
438 // For emacs users
439 // Local Variables:
440 // mode: php
441 // tab-width: 8
442 // c-basic-offset: 4
443 // c-hanging-comment-ender-p: nil
444 // indent-tabs-mode: nil
445 // End:
446 ?>