Picviz console veritable tool
pcv -Toutput_plugin [-Rrender_plugin] [options] file.pcv ['filter']
pcv allows to compile \s-1PCV\s0 files into a plugin choosen format, such as svg, csv, png or other.
-Tplugin Replace 'plugin' with a output plugin name. See plugin section
-Rplugin Replace 'plugin' with a render plugin name. See plugin section
options can be either one or several among:
-A argument Provides arguments to the render and output plugin
-a Displays all text along with lines
-d Activates debug mode
-Ln Draw text every n line
-l Skip learning mode
-o file Output to the given file instead of stdout
-p file Use given file to store \s-1PID\s0
-r...(rrr) Increases image height and width
-s socket.name Create the socket.name and listen to it (for real-time capabilities)
-t template Use the given template when listening to a socket
-Warg Use Picviz with a special keyword. See keywords section
The filter parameter is explained in the filter section below.
Plugins are located with ld, search path can be overridden with \s-1PICVIZ_PLUGINS_PATH\s0 environment variable.
Output data in the wanted file format. Available plugins are:
svg
plplot
csv
sdl
pngcairo
debug
Modify data rendering. Available plugins are:
heatline: possible arguments (-A): virus
debug
Keywords are special parameters given to picviz to use a library along with parsing and rendering. This is deactivated by default because it makes the program slow, but it may be very usefull in certain cases.
Following keywords are accepted:
pcre: activates pcre pattern matching for filtering (pcv -Tsvg -Wpcre file.pcv 'show value = \*(L".*foo.*\*(R" on axis 1')
pcv allows filtering to choose data you want to see displayed. When the pcv language parser is called, a Pcv Image Filter (\s-1PIF\s0) is applied. It allows to filter either before any data is calculated (data filter), once calculated and before adding the line to the image (pre line filter) or, once other lines have been added and ask for specific removales (post line filter).
Filter relation can be either:
= equal
!= not equal
< less than
> greater than
<= less or equal
>= greater or equal
plot: Will select the value, as plotted by the engine. Accepted values can be the y position on the axis or the relative percentage.
'show plot > 100 on axis 3': will display only lines which have their plot on the axis 3 greater than 100 can be called like this:
Example: pcv -Tsvg file.pcv 'show plot > 100 on axis 3'
By default, the image height is 500 pixels, so this filter is equivalent than > 100:
'show plot > 20% on axis 3'.
It is possible to filter using multi-criterion values:
'show plot > 20% on axis 3 and plot < 42 on axis 5'
Values can be selected, either with their original text string, or by using pattern matching. By default, pattern matching is not activated.
Pattern matching activated is done with -Wpcre argument. To filter values with [0-9][aA].*, you can type:
pcv -Tsvg file.pcv -Wpcre 'show value = \*(L"[0-9][aA].*\*(R" on axis 1'.
Note that with string comparisons (with value), only the equal (=) relation is accepted.
pcv -Tsvg file.pcv
pcv -Tpngcairo file.pcv -rrrr -a > file.png
pcv -Tpngcairo -Rheatline -Avirus file.pcv > file.svg
pcv -Tpngcairo -s local.sock -t file.pcv -o file.png ''
If you are sure you are not dealing with a feature, you can report \s-1BUGS\s0 using the trac ticketing system available at http://www.wallinfire.net/picviz.
Man page written by Sebastien Tricaud toady gscore org.