]> jspc29.x-matter.uni-frankfurt.de Git - labtools.git/commitdiff
better user interface
authorMichael Wiebusch <m.wiebusch@gsi.de>
Thu, 27 Nov 2014 18:30:25 +0000 (19:30 +0100)
committerMichael Wiebusch <m.wiebusch@gsi.de>
Thu, 27 Nov 2014 18:30:25 +0000 (19:30 +0100)
peltier_controller/webGUI/index.pl
peltier_controller/webGUI/logging_tool.pm
peltier_controller/webGUI/peltierControl.js
peltier_controller/webGUI/plotting_tool.pm
peltier_controller/webGUI/webpage.pm

index 7435f5599b6655ff8b6f02a85f5fd25d4e6efe99..8d248e7845a73b85a70f19260aa1c6f1a85674ef 100755 (executable)
@@ -173,12 +173,14 @@ sub plot {
   my $self = shift;
   my %options = @_;
   
+  my $clientId = $options{clientId} || 0;
   my $html = $options{html};
   my $shm_manager = $self->create_shm_manager();
   
   my $plotting_tool = plotting_tool->new(
     columnNames => $self->{columnNames},
-    dataFile => $shm_manager->{dataFile}
+    dataFile => $shm_manager->{dataFile},
+    clientId => $clientId
   );
   
   
@@ -187,16 +189,20 @@ sub plot {
   
   my $changed = 0;
   
+  
+  # the following block of code checks, whether the data file got new entries
+  # since the last time
   my $dataFile_modificationTime = (stat($dataFile))[9];
+  my $shmHash = $shm_manager->lockAndReadShm();
+  my $dataFile_lastModificationTime = $shmHash->{dataFile_lastModificationTime}||"";
+  $shmHash->{dataFile_lastModificationTime} = $dataFile_modificationTime;
+  $shm_manager->writeShm($shmHash); # unlocks the shm file
   
-#   my $dataFile_lastModificationTime = $shm_manager->readShm()->{dataFile_lastModificationTime}||"";
-#   $shm_manager->updateShm({dataFile_lastModificationTime => $dataFile_modificationTime});
-#   if( $dataFile_modificationTime ne $dataFile_lastModificationTime) {
-#     $plotting_tool->plot();
-#   }
+  #only plot if data file has been modified
+  if( $dataFile_modificationTime ne $dataFile_lastModificationTime) {
+    $plotting_tool->plot();
+  }
   
-     $plotting_tool->plot();
-    
   $plotFile =~ s%/dev/%%;
   print header('text/html');
   
index 12042ac643512e1c5b01c569cf70c1f882341fa6..f9ced9d6809b5431b722ce5f58b47c77636b5f82 100644 (file)
@@ -63,6 +63,9 @@ sub main {
     open(LOG,">> ".$dataFile);
     $data = $serial->communicate($setpoint);
     $now = sprintf "%02d.%02d.%02d_%02d:%02d:%02d",(localtime)[3],((localtime)[4] +1),((localtime)[5] -100),(localtime)[2],(localtime)[1],(localtime)[0];
+    $shm_manager->updateShm({
+      latest_data => $data, latest_data_timestamp => $now
+    });
     print LOG "$now\t";
     print "$now\t" if $verbose;
     for my $column_name (@{$self->{columnNames}}) {
index 4058f2fe9a3b777ced365d158d339ec57a98cc80..b85946268ec0057f4944343d0a29116806f7df8a 100644 (file)
@@ -2,6 +2,8 @@
 var timer;
 var acquisition = 0;
 
+var clientId = Math.random();
+
 $(document).ready(function(){
 
   
@@ -22,7 +24,8 @@ function plot(){
         async:     false,
         dataType:  "text",
         data:      {
-          action     : "plot"
+          action     : "plot",
+          clientId   : clientId
         },
         success:   function(result) {
           $("#plotContainer").html(result);
@@ -122,6 +125,10 @@ function activate_components(){
      }
    }
    
+   if(typeof shm.latest_data != 'undefined') {
+     $('#input_setpoint').attr("value",Math.floor(shm.latest_data.setpoint));
+   }
+   
 //    $("#savebutton").click(function(){
 //     write_file();
 //     set_clear_timer();
index 7e96a94b4932c3173400459a6fac19861c79faa9..01f7e0ec5610bb540b650f6657aaef61083835d3 100644 (file)
@@ -14,13 +14,14 @@ sub new {
     title    => "Peltier Cooling System Temperature",
     width    => 640,
     height    => 480,
+    clientId  => "0",
     %options
   };
   
   die "plotting tool needs to be given a dataFile" unless(defined($self->{dataFile}));
   die "plotting tool needs to be given a list containing colum names" unless(defined($self->{columnNames}));
 
-  $self->{plotFile} = $self->{dataFile}.".gif";
+  $self->{plotFile} = $self->{dataFile}."_".$self->{clientId}.".gif";
   bless($self, $class);
 }
 
index b1dc8db736aa8d61ce8f50aaf7d18e6ec5044946..6454d47b61a5317fed044fffd56ad6e49b5183c8 100644 (file)
@@ -5,6 +5,7 @@ use strict;
 use warnings;
 use POSIX;
 use CGI ':standard';
+use JSON;
 use CGI::Carp qw(fatalsToBrowser);
 
 sub new {
@@ -95,16 +96,28 @@ sub print_device_controls {
 }
 
 
+# sub passHashToJs {
+# 
+#   my $hashref = shift();
+#   my $objname = shift();
+#   $objname = 'fromPerl' unless (defined($objname));
+#   print "<script language='javascript'>\n";
+#   print "var $objname = new Object();\n";
+#   for my $key (keys %$hashref){
+#     print $objname.qq%["$key"]="%.$hashref->{$key}.qq%";\n%;
+#   }
+#   print "</script>";
+# 
+# }
+
 sub passHashToJs {
 
   my $hashref = shift();
   my $objname = shift();
   $objname = 'fromPerl' unless (defined($objname));
   print "<script language='javascript'>\n";
-  print "var $objname = new Object();\n";
-  for my $key (keys %$hashref){
-    print $objname.qq%["$key"]="%.$hashref->{$key}.qq%";\n%;
-  }
+  print "var $objname = \n";
+  print encode_json $hashref;
   print "</script>";
 
 }