Now with a graph!!
[dweather.git] / loop.pl
diff --git a/loop.pl b/loop.pl
index bc9bf7f6718d97343342a92a4fb4b6b5a69296a9..b0e430055b5cebe676ea338e091255938619502a 100755 (executable)
--- a/loop.pl
+++ b/loop.pl
@@ -108,6 +108,12 @@ websocket '/weather' => sub {
   # send historical data
   $c->send($ld->{lasthour_h}) if exists $ld->{lasthour_h};
   $c->send($ld->{lastmin_h}) if exists $ld->{lastmin_h};
+
+  # send the last 24 hour's worth of data to the graph
+  my $lg = SMGLog->new('day');
+  my $tnow = time;
+  my $dayno = int($tnow/86400);
+  send_history($c, $lg, $tnow, $_) for ($dayno-1, $dayno);  
   
   # disable timeout
   $c->inactivity_timeout(3615);
@@ -128,7 +134,7 @@ websocket '/weather' => sub {
   $c->on(finish => sub {
     my ($c, $code, $reason) = @_;
     app->log->debug("WebSocket closed with status $code.");
-       dbg 'webwocket closed with status $code' if isdbg 'chan';
+       dbg "websocket closed with status $code" if isdbg 'chan';
        delete $WS->{$tx};
   });
 };
@@ -492,7 +498,7 @@ sub genstr
        my $h = shift;
        
        my $j =  $json->encode($h);
-       my $tm = clocktime($ts, 1);
+       my $tm = clocktime($ts, $let eq 'r' ? 1 : 0);
        return qq|{"tm":"$tm","t":$ts,"$let":$j}|;
 }
 
@@ -709,136 +715,21 @@ sub cycle_loop_data_files
        copy $datafn, "$datafn.o";
 }
 
-__DATA__
-@@ index.html.ep
-% my $url = url_for 'weather';
-<!DOCTYPE html>
-<html>
-  <head>
-    <title>DWeather</title>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-
-    <!-- Latest compiled and minified CSS -->
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
-
-    <!-- Optional theme -->
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
-
-  </head>
-  <body>
-    <center><h1>High View Weather</h1></center>
-
-    <script>
-       var ws;
-    var h = new Object(); 
-
-    function update_h(key, value) {
-               h[key] = value;
-       }
-
-    function fill_html(key,value) {
-               var d = document.getElementById(key);
-               if (d !== null) {
-                       d.innerHTML = value;
-               }
-       }
-               
-       function traverse(o, func) {
-               console.log(o);
-               for (var i in o) {
-                       if (o[i] !== null && typeof(o[i])=="object") {
-                               traverse(o[i], func);
-                       } else {
-                               func(i, o[i]);  
+sub send_history
+{
+       my $c = shift;
+       my $lg = shift;
+       my $tnow = shift;
+       my $dayno = shift;
+       if ($lg->open($dayno, 'r+')) {
+               while (my $l = $lg->read) {
+                       next unless $l =~ /,"h":/;
+                       my ($t) = $l =~ /"t":(\d+)/;
+                       if ($t && $t >= $tnow-86400) {
+                               $c->send($l);
+#                              dbg "sending: $l";
                        }
                }
+               $lg->close;
        }
-
-    function startws() {
-               ws = new WebSocket('<%= $url->to_abs %>');
-
-               if (typeof(ws) !== null) {
-                       ws.onmessage = function (event) {
-                               var js = JSON.parse(event.data);
-                               if (js !== null && typeof(js) === 'object') {
-                                       traverse(js, fill_html);
-                                       traverse(js, update_h);
-                                       document.getElementById("hh").innerHTML = JSON.stringify(h);
-                               }
-                       };
-                       ws.onopen = function (event) {
-                               document.getElementById("wsconnect").innerHTML = 'ws connected to: <%= $url->to_abs %>';
-                               ws.send('WebSocket support works!');
-                       };
-                       ws.onclose = function(event) {
-                               document.getElementById("wsconnect").innerHTML = 'ws disconnected, refresh to restart';
-                               ws = null;
-                       }
-               } else {
-                       document.body.innerHTML += 'Webserver only works with Websocket aware browsers';
-               }
-    }
-
-       window.onload = function() {
-               startws();
-               window.setInterval(function() { 
-                       if (ws === null) 
-                               startws();
-               }, 15000);
-       } 
-    </script>
-
-    <div id="container">
-       <div id="start-template">
-       <br><br>
-       <table border=1 width=80% align="center">
-       <tr>
-    <th>Time:<td><span id="tm"> </span>
-       <th>Sunrise:<td><span id="Sunrise"> </span>
-       <th>Sunset:<td><span id="Sunset"> </span>
-       <th>Console Volts:<td><span id="Batt_Console"> </span>
-       <th>TX Battery OK:<td><span id="Batt_TX_OK"> </span>
-
-       <tr>
-    <th>Pressure:<td><span id="Pressure"> </span>
-       <th>Trend:<td><span id="Pressure_Trend_txt"> </span>
-
-       <tr>
-    <th>Temperature in:<td> <span id="Temp_In"> </span> 
-       <th>Humidity:<td> <span id="Humidity_In"> </span>
-
-       <tr>
-    <th>Temperature out:<td> <span id="Temp_Out"> </span> 
-       <th>Min:<td> <span id="Temp_Out_Min"> </span> @ <span id="Temp_Out_Min_T"> </span>
-       <th>Max:<td> <span id="Temp_Out_Max"> </span> @ <span id="Temp_Out_Max_T"> </span>
-       <th>Humidity:<td> <span id="Humidity_Out"> </span> 
-       <th>Dew Point:<td> <span id="Dew_Point"> </span> 
-
-       <tr>
-    <th>Wind Direction:<td> <span id="Dir"> </span> 
-       <th>Minute Avg:<td> <span id="Dir_1m">  </span> 
-       <th>Speed:<td> <span id="Wind"> </span> 
-       <th>Minute Avg:<td> <span id="Wind_1m">  </span>
-
-       <tr>
-    <th>Rain 30mins:<td> <span id="Rain_1h"> </span>
-       <th>Day:<td> <span id="Rain_Day"> </span>
-       <th>24hrs:<td> <span id="Rain_24h"> </span>
-       <th>Month:<td> <span id="Rain_Month"> </span>
-       <th>Year:<td> <span id="Rain_Year"> </span>
-       </table>
-       <br>
-       <div id="wsconnect" align="center"> </div>
-       <br>
-       <div id="hh" align="center"> </div>
-       </div>
-       </div>
-    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
-    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
-    <!-- Latest compiled and minified JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
-</body>
-</html>
+}