use strict;
use FileHandle;
use Storable qw(lock_store lock_retrieve);
+use JSON;
my $p;
my $storefile;
if($p->{$name}->{output} == OUT_PNG) {
$p->{$name}->{file} or die "No filename specified";
- plot_write($fh,"set term png size ".$p->{$name}->{sizex}.",".$p->{$name}->{sizey}." truecolor font \"monospace,8\"");
+ plot_write($fh,"set term png size ".$p->{$name}->{sizex}.",".$p->{$name}->{sizey}." truecolor font \"monospace,9\"");
plot_write($fh,"set out \"".$p->{$name}->{file}.($p->{$name}->{buffer}?"tmp":"").".png\"");
}
elsif($p->{$name}->{output} == OUT_SCREEN) {
$p->{$name}{limitentries} = $entries;
}
+sub PlotJsonDump {
+ my ($name,$file) = @_;
+ waitpid($p->{$name}->{pidJSON},0) if $p->{$name}->{pidJSON};
+ my $pid = fork;
+ unless ($pid) {
+ my $fh;
+ my $json = new JSON;
+ $json = $json->utf8;
+ $json = $json->allow_unknown();
+ open($fh, ">", $file);
+ print $fh $json->encode($p->{$name});
+ close $fh;
+ exit;
+ }
+ $p->{$name}->{pidJSON} = $pid;
+
+ }
1;