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
);
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');
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}}) {
var timer;
var acquisition = 0;
+var clientId = Math.random();
+
$(document).ready(function(){
async: false,
dataType: "text",
data: {
- action : "plot"
+ action : "plot",
+ clientId : clientId
},
success: function(result) {
$("#plotContainer").html(result);
}
}
+ if(typeof shm.latest_data != 'undefined') {
+ $('#input_setpoint').attr("value",Math.floor(shm.latest_data.setpoint));
+ }
+
// $("#savebutton").click(function(){
// write_file();
// set_clear_timer();
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);
}
use warnings;
use POSIX;
use CGI ':standard';
+use JSON;
use CGI::Carp qw(fatalsToBrowser);
sub new {
}
+# 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>";
}