File: GraphViz.php

package info (click to toggle)
phpwiki 1.3.12p3-5etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 16,956 kB
  • ctags: 21,608
  • sloc: php: 82,335; xml: 3,840; sh: 1,522; sql: 1,198; perl: 625; makefile: 562; awk: 28
file content (453 lines) | stat: -rw-r--r-- 16,969 bytes parent folder | download | duplicates (3)
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<?php // -*-php-*-
rcs_id('$Id: GraphViz.php,v 1.6 2005/10/12 06:19:07 rurban Exp $');
/*
 Copyright 2004 $ThePhpWikiProgrammingTeam

 This file is part of PhpWiki.

 PhpWiki is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 PhpWiki is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with PhpWiki; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/**
 * The GraphViz plugin passes all its arguments to the grapviz dot
 * binary and displays the result as cached image (PNG,GIF,SVG) or imagemap.
 *
 * @Author: Reini Urban
 *
 * Note: 
 * - We support only images supported by GD so far (PNG most likely). 
 *   EPS, PS, SWF, SVG or SVGZ and imagemaps need to be tested.
 *
 * Usage:
<?plugin GraphViz [options...]
   multiline dot script ...
?>

 * See also: VisualWiki, which depends on GraphViz and WikiPluginCached.
 *
 * TODO: 
 * - neato binary ?
 * - expand embedded <!plugin-list pagelist !> within the digraph script.
 */

if (PHP_OS == "Darwin") { // Mac OS X
    if (!defined("GRAPHVIZ_EXE"))
        define('GRAPHVIZ_EXE', '/sw/bin/dot'); // graphviz via Fink
    // Name of the Truetypefont - at least LucidaSansRegular.ttf is always present on OS X
    if (!defined('VISUALWIKIFONT'))
        define('VISUALWIKIFONT', 'LucidaSansRegular');
    // The default font paths do not find your fonts, set the path here:
    $fontpath = "/System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Home/lib/fonts/";
    //$fontpath = "/usr/X11R6/lib/X11/fonts/TTF/";
}
elseif (isWindows()) {
    if (!defined("GRAPHVIZ_EXE"))
        define('GRAPHVIZ_EXE','dot.exe');
    if (!defined('VISUALWIKIFONT'))
        define('VISUALWIKIFONT', 'Arial');
} elseif ($_SERVER["SERVER_NAME"] == 'phpwiki.sourceforge.net') { // sf.net hack
    if (!defined("GRAPHVIZ_EXE"))
        define('GRAPHVIZ_EXE','/home/groups/p/ph/phpwiki/bin/dot');
    if (!defined('VISUALWIKIFONT'))
        define('VISUALWIKIFONT', 'luximr'); 
} else { // other os
    if (!defined("GRAPHVIZ_EXE"))
        define('GRAPHVIZ_EXE','/usr/local/bin/dot');
    // Name of the Truetypefont - Helvetica is probably easier to read
    if (!defined('VISUALWIKIFONT'))
        define('VISUALWIKIFONT', 'Helvetica');
    //define('VISUALWIKIFONT', 'Times');
    //define('VISUALWIKIFONT', 'Arial');
    // The default font paths do not find your fonts, set the path here:
    //$fontpath = "/usr/X11R6/lib/X11/fonts/TTF/";
    //$fontpath = "/usr/share/fonts/default/TrueType/";
}

require_once "lib/WikiPluginCached.php"; 

class WikiPlugin_GraphViz
extends WikiPluginCached
{

    function _mapTypes() {
    	return array("imap", "cmapx", "ismap", "cmap");
    }

    /**
     * Sets plugin type to MAP
     * or HTML if the imagetype is not supported by GD (EPS, SVG, SVGZ) (not yet)
     * or IMG_INLINE if device = png, gif or jpeg
     */
    function getPluginType() {
        $type = $this->decideImgType($this->_args['imgtype']);
        if ($type == $this->_args['imgtype'])
            return PLUGIN_CACHED_IMG_INLINE;
        $device = strtolower($this->_args['imgtype']);
    	if (in_array($device, $this->_mapTypes()))
    	    return PLUGIN_CACHED_MAP;
    	if (in_array($device, array('svg','swf','svgz','eps','ps'))) {
            switch ($this->_args['imgtype']) {
            	case 'svg':
            	case 'svgz':
                   return PLUGIN_CACHED_STATIC | PLUGIN_CACHED_SVG_PNG;
            	case 'swf':
                   return PLUGIN_CACHED_STATIC | PLUGIN_CACHED_SWF;
                default: 
                   return PLUGIN_CACHED_STATIC | PLUGIN_CACHED_HTML;
            }
        }
    	else
            return PLUGIN_CACHED_IMG_INLINE; // normal cached libgd image handles
    }
    function getName () {
        return _("GraphViz");
    }
    function getDescription () {
        return _("GraphViz image or imagemap creation of directed graphs");
    }
    function managesValidators() {
        return true;
    }
    function getVersion() {
        return preg_replace("/[Revision: $]/", '',
                            "\$Revision: 1.6 $");
    }
    function getDefaultArguments() {
        return array(
                     'imgtype' => 'png', // png,gif,svgz,svg,...
                     'alt'     => false,
                     'pages'   => false,  // <!plugin-list !> support
                     'exclude' => false,
                     'help'    => false,
                     );
    }
    function handle_plugin_args_cruft(&$argstr, &$args) {
        $this->source = $argstr;
    }
    /**
     * Sets the expire time to one day (so the image producing
     * functions are called seldomly) or to about two minutes
     * if a help screen is created.
     */
    function getExpire($dbi, $argarray, $request) {
        if (!empty($argarray['help']))
            return '+120'; // 2 minutes
        return sprintf('+%d', 3*86000); // approx 3 days
    }

    /**
     * Sets the imagetype according to user wishes and
     * relies on WikiPluginCached to catch illegal image
     * formats.
     * @return string 'png', 'jpeg', 'gif'
     */
    function getImageType($dbi, $argarray, $request) {
        return $argarray['imgtype'];
    }

    /**
     * This gives an alternative text description of
     * the image.
     */
    function getAlt($dbi, $argstr, $request) {
        return (!empty($this->_args['alt'])) ? $this->_args['alt']
                                             : $this->getDescription();
    }

    /**
     * Returns an image containing a usage description of the plugin.
     *
     * TODO: *map features.
     * @return string image handle
     */
    function helpImage() {
        $def = $this->defaultArguments();
        //$other_imgtypes = $GLOBALS['PLUGIN_CACHED_IMGTYPES'];
        //unset ($other_imgtypes[$def['imgtype']]);
        $imgtypes = $GLOBALS['PLUGIN_CACHED_IMGTYPES'];
        $imgtypes = array_merge($imgtypes, array("svg", "svgz", "ps"), $this->_mapTypes());
        $helparr = array(
            '<?plugin GraphViz ' .
            'imgtype'          => ' = "' . $def['imgtype'] . "(default)|" . join('|',$imgtypes).'"',
            'alt'              => ' = "alternate text"',
            'pages'            => ' = "pages,*" or <!plugin-list !> pagelist as input',
            'exclude'          => ' = "pages,*" or <!plugin-list !> pagelist as input',
            'help'             => ' bool: displays this screen',
            '...'              => ' all further lines below the first plugin line ',
            ''                 => ' and inside the tags are the dot script.',
            "\n  ?>"
            );
        $length = 0;
        foreach($helparr as $alignright => $alignleft) {
            $length = max($length, strlen($alignright));
        }
        $helptext ='';
        foreach($helparr as $alignright => $alignleft) {
            $helptext .= substr('                                                        '
                                . $alignright, -$length).$alignleft."\n";
        }
        return $this->text2img($helptext, 4, array(1, 0, 0),
                               array(255, 255, 255));
    }

    function processSource($argarray=false) {
        $source = $this->source;
        if (empty($source)) {
            // create digraph from pages
            $source = "digraph GraphViz {\n";  // }
            foreach ($argarray['pages'] as $name) { // support <!plugin-list !> pagelists
                // allow Page/SubPage
                $url = str_replace(urlencode(SUBPAGE_SEPARATOR), SUBPAGE_SEPARATOR, 
				   rawurlencode($name));
                $source .= "  \"$name\" [URL=\"$url\"];\n";
            }
            // {
            $source .= "\n  }";
        }
        /* //TODO: expand inlined plugin-list arg
         $i = 0;
         foreach ($source as $data) {
             // hash or array?
             if (is_array($data))
                 $src .= ("\t" . join(" ", $data) . "\n");
             else
                 $src .= ("\t" . '"' . $data . '" ' . $i++ . "\n");
             $src .= $source;
             $source = $src;
        }
        */
	return $source;
    }

    function createDotFile($tempfile='', $argarray=false) {
        $this->source = $this->processSource($argarray);
        if (!$tempfile) {
            $tempfile = $this->tempnam($this->getName().".dot");
            unlink($tempfile);
        }
        if (!$fp = fopen($tempfile, 'w'))
            return false;
        $ok = fwrite($fp, $this->source);
        $ok = fclose($fp) && $ok;  // close anyway
        return $ok ? $tempfile : false;
    }

    function getImage($dbi, $argarray, $request) {
        $dotbin = GRAPHVIZ_EXE;
        $tempfiles = $this->tempnam($this->getName());
        $gif = $argarray['imgtype'];
        if (in_array($gif, array("imap", "cmapx", "ismap", "cmap"))) {
            $this->_mapfile = "$tempfiles.map";
            $gif = $this->decideImgType($argarray['imgtype']);
        }

        $ImageCreateFromFunc = "ImageCreateFrom$gif";
        $outfile = $tempfiles.".".$gif;
        $debug = $request->getArg('debug');
        if ($debug) {
            $tempdir = dirname($tempfiles);
            $tempout = $tempdir . "/.debug";
        }
        $source = $this->processSource($argarray);
        if (empty($source))
            return $this->error(fmt("No dot graph given"));
        //$ok = $tempfiles;
        //$dotfile = $this->createDotFile($tempfiles.'.dot', $argarray);
        //$args = "-T$gif $dotfile -o $outfile";
        $args = "-T$gif -o $outfile";
        $cmdline = "$dotbin $args";
        if ($debug) $cmdline .= " > $tempout";
        //if (!isWindows()) $cmdline .= " 2>&1";
        //$this->execute($cmdline, $outfile);
        $code = $this->filterThroughCmd($source, $cmdline);
        if (!empty($code))
            $this->complain(sprintf(_("Couldn't start commandline '%s'", $cmdline)));
        sleep(0.1);
        if (! file_exists($outfile) ) {
            $this->complain(sprintf(_("%s error: outputfile '%s' not created"), 
                                    "GraphViz", $outfile));
            $this->complain("\ncmd-line: $cmdline");
            return false;
        }
        if (function_exists($ImageCreateFromFunc)) {
            $img = $ImageCreateFromFunc( $outfile );
	    // clean up tempfiles
	    if (!$argarray['debug'])
		foreach (array('',".$gif",'.dot') as $ext) {
		    //if (file_exists($tempfiles.$ext))
		    @unlink($tempfiles.$ext);
		}
	    return $img;
	}
        return $outfile;
    }
    
    // which argument must be set to 'png', for the fallback image when svg will fail on the client.
    // type: SVG_PNG
    function pngArg() {
    	return 'imgtype';
    }
    
    function getMap($dbi, $argarray, $request) {
    	return $this->invokeDot($argarray);
        // $img = $this->getImage($dbi, $argarray, $request);
    	//return array($this->_mapfile, $img);
    }

    /**
     * Produces a dot file, calls dot twice to obtain an image and a
     * text description of active areas for hyperlinking and returns
     * an image and an html map.
     *
     * @param width     float   width of the output graph in inches
     * @param height    float   height of the graph in inches
     * @param colorby   string  color sceme beeing used ('age', 'revtime',
     *                                                   'none')
     * @param shape     string  node shape; 'ellipse', 'box', 'circle', 'point'
     * @param label     string  not used anymore
     */
    function invokeDot($argarray) {
        $dotbin = GRAPHVIZ_EXE;
        $tempfiles = $this->tempnam($this->getName());
        $gif = $argarray['imgtype'];
        $ImageCreateFromFunc = "ImageCreateFrom$gif";
        $outfile = $tempfiles.".".$gif;
        $debug = $GLOBALS['request']->getArg('debug');
        if ($debug) {
            $tempdir = dirname($tempfiles);
            $tempout = $tempdir . "/.debug";
        }
        $ok = $tempfiles;
        $source = $this->processSource($argarray);
        if (empty($source))
            return $this->error(fmt("No dot graph given"));
	//$ok = $ok and $this->createDotFile($tempfiles.'.dot', $argarray);

        $args = "-T$gif $tempfiles.dot -o $outfile";
        $cmdline1 = "$dotbin $args";
        if ($debug) $cmdline1 .= " > $tempout";
	$ok = $ok and $this->filterThroughCmd($source, $cmdline1);
	// $this->execute("$dotbin -T$gif $tempfiles.dot -o $outfile" . 
        //                    ($debug ? " > $tempout 2>&1" : " 2>&1"), $outfile)

        $args = "-Timap $tempfiles.dot -o $tempfiles.map";
        $cmdline2 = "$dotbin $args";
        if ($debug) $cmdline2 .= " > $tempout";
        $ok = $ok and $this->filterThroughCmd($source, $cmdline2);
	// $this->execute("$dotbin -Timap $tempfiles.dot -o ".$tempfiles.".map" . 
        //                    ($debug ? " > $tempout 2>&1" : " 2>&1"), $tempfiles.".map")
	$ok = $ok and file_exists( $outfile );
	$ok = $ok and file_exists( $tempfiles.'.map' );
	$ok = $ok and ($img = $ImageCreateFromFunc($outfile));
        $ok = $ok and ($fp = fopen($tempfiles.'.map', 'r'));

        $map = HTML();
        if ($debug == 'static') {
            // workaround for misconfigured WikiPluginCached (sf.net) or dot.
            // present a static png and map file.
            if (file_exists($outfile) and filesize($outfile) > 900)
                $img = $outfile;
            else
                $img = $tempdir . "/".$this->getName().".".$gif;
            if (file_exists( $tempfiles.".map") and filesize($tempfiles.".map") > 20)
                $map = $tempfiles.".map";
            else
                $map = $tempdir . "/".$this->getName().".map";
            $img = $ImageCreateFromFunc($img);
            $fp = fopen($map, 'r');
            $map = HTML();	
            $ok = true;
        }
        if ($ok and $fp) {
            while (!feof($fp)) {
                $line = fgets($fp, 1000);
                if (substr($line, 0, 1) == '#')
                    continue;
                list($shape, $url, $e1, $e2, $e3, $e4) = sscanf($line,
                                                                "%s %s %d,%d %d,%d");
                if ($shape != 'rect')
                    continue;

                // dot sometimes gives not always the right order so
                // so we have to sort a bit
                $x1 = min($e1, $e3);
                $x2 = max($e1, $e3);
                $y1 = min($e2, $e4);
                $y2 = max($e2, $e4);
                $map->pushContent(HTML::area(array(
                            'shape'  => 'rect',
                            'coords' => "$x1,$y1,$x2,$y2",
                            'href'   => $url,
                            'title'  => rawurldecode($url),
                            'alt' => $url)));
            }
            fclose($fp);
            //trigger_error("url=".$url);
        } else {
            $this->complain("$outfile: "
                            . (file_exists($outfile) ? filesize($outfile):'missing')
                            ."\n"
                            . "$tempfiles.map: "
                            . (file_exists("$tempfiles.map") ? filesize("$tempfiles.map"):'missing'));
            $this->complain("\ncmd-line: $cmdline1");
            $this->complain("\ncmd-line: $cmdline2");
            trigger_error($this->GetError(), E_USER_WARNING);
            return array(false, false);
        }

        // clean up tempfiles
        if ($ok and !$argarray['debug'])
            foreach (array('',".$gif",'.map','.dot') as $ext) {
                //if (file_exists($tempfiles.$ext))
		        @unlink($tempfiles.$ext);
            }

        if ($ok)
            return array($img, $map);
        else
            return array(false, false);
    }

};

// $Log: GraphViz.php,v $
// Revision 1.6  2005/10/12 06:19:07  rurban
// protect unsafe calls
//
// Revision 1.5  2005/09/26 06:39:14  rurban
// use cached img and map - again. Remove execute from here
//
// Revision 1.4  2005/05/06 16:54:59  rurban
// add failing cmdline for .map
//
// Revision 1.3  2004/12/17 16:49:52  rurban
// avoid Invalid username message on Sign In button click
//
// Revision 1.2  2004/12/14 21:34:22  rurban
// fix syntax error
//
// Revision 1.1  2004/12/13 14:45:33  rurban
// new generic GraphViz plugin: similar to Ploticus
//

// For emacs users
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>