]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
add JSON dump to HPlot
authorhadaq <hadaq@hades33.gsi.de>
Sun, 6 Feb 2022 18:14:31 +0000 (19:14 +0100)
committerhadaq <hadaq@hades33.gsi.de>
Sun, 6 Feb 2022 18:14:31 +0000 (19:14 +0100)
tools/HPlot.pm

index 8dd5dcce3add1ddf8e78dd33d97a824270ada28c..3a75d0e82d7558e1e4ab854e9f79a6d2e758622d 100755 (executable)
@@ -5,6 +5,7 @@ use warnings;
 use strict;
 use FileHandle;
 use Storable qw(lock_store lock_retrieve);
+use JSON;
 
 my $p;
 my $storefile;
@@ -106,7 +107,7 @@ sub PlotInit {
 
   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) {
@@ -361,5 +362,22 @@ sub PlotLimitEntries {
   $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;