Skip to content

Commit 4cfc6b2

Browse files
author
PolygonalTree
committed
adds dowload capabilities, disk space information and last data tables
1 parent ae27e13 commit 4cfc6b2

File tree

3 files changed

+84
-176
lines changed

3 files changed

+84
-176
lines changed

server.py

+28-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from bottle import *
22
import db
33
from subprocess import Popen, PIPE, call
4-
import os, signal, time
4+
import os, signal, time, json
55
app = Bottle()
66

77
class RoiData():
@@ -18,15 +18,20 @@ def server_static(filepath):
1818
@app.route('/')
1919
def index():
2020
_,status = checkPid()
21-
return template('index', machineId=mid, status=status)
21+
df = subprocess.Popen(["df", "./"], stdout=subprocess.PIPE)
22+
output = df.communicate()[0]
23+
print(output)
24+
device, size, used, available, percent, mountpoint = \
25+
output.split(b"\n")[1].split()
26+
return template('index', machineId=mid, status=status, freeSpace = percent)
2227

2328
@app.route('/websocket')
2429
def handle_websocket():
25-
try:
26-
data = readData()
27-
return(data)
28-
except:
29-
print("error")
30+
#try:
31+
data = readData()
32+
return(data)
33+
#except:
34+
#print("error")
3035

3136

3237

@@ -101,6 +106,17 @@ def refresh():
101106
#return template('index', machineId=mid, status=status)
102107

103108

109+
@app.route('/downloadData/<machineID>')
110+
def downloadData(machineID):
111+
pid, isAlreadyRunning = checkPid()
112+
#Add a "last downloaded" and "free space available"
113+
return static_file('output.txt', root='')
114+
115+
@app.get('/visualizeData')
116+
def visualizeData():
117+
pid, isAlreadyRunning = checkPid()
118+
return static_file('output.txt', root='')
119+
104120
def checkPid():
105121
proc = Popen(["pgrep", "-f", "python2 pvg_standalone.py"], stdout=PIPE)
106122
try:
@@ -123,7 +139,11 @@ def readData():
123139
f = open('output.txt','r')
124140
lines = f.readlines()
125141
f.close()
126-
return lines[-1]
142+
lastData = lines[-1]
143+
splitedData = lastData.split('\t')
144+
jsonData = json.dumps(splitedData)
145+
print (jsonData)
146+
return jsonData
127147

128148
roiList={}
129149
mid= checkMachineId()

views/index.tpl

+56-8
Original file line numberDiff line numberDiff line change
@@ -138,20 +138,68 @@
138138
</div>
139139
<hr>
140140
<div class="row status" ng-app="fly" ng-controller="flyDataCtrl as flyData">
141-
{!flyData.data!}
142-
</div>
143-
144-
</div>
145-
141+
<h3>Last collected data:</h3>
142+
<table class="table table-resposive table-striped small">
143+
<tr>
144+
<th>id</th>
145+
<th>date</th>
146+
<th>time</th>
147+
<th>active?</th>
148+
<th>fps</th>
149+
<th>trackType</th>
150+
<th>SD</th>
151+
<th>N/A</th>
152+
<th>N/A</th>
153+
<th>light</th>
154+
</tr>
155+
<tr>
156+
<td ng-repeat="n in [0,1,2,3,4,5,6,7,8,9]">
157+
{!flyData.data[n]!}
158+
</td>
159+
</tr>
160+
<tr>
161+
<th ng-repeat="n in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]">
162+
{!n!}
163+
</th>
164+
</tr>
165+
<tr>
166+
<td ng-repeat="n in [10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]">
167+
{!flyData.data[n]!}
168+
</td>
169+
</tr>
170+
<tr>
171+
<th ng-repeat="n in [17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32]">
172+
{!n!}
173+
</th>
174+
</tr>
175+
<tr>
176+
<td ng-repeat="n in [26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42]">
177+
{!flyData.data[n]!}
178+
</td>
179+
</tr>
180+
</table>
181+
182+
146183

147-
148184
<hr>
185+
<h4>Disk space available:</h4>
186+
<div class="progress">
187+
<div class="progress-bar" role="progressbar" aria-valuenow="{{freeSpace}}" aria-valuemin="0" aria-valuemax="100" style="width: {{freeSpace}};">
188+
<span class="">{{freeSpace}}</span>
189+
</div>
190+
</div>
149191

192+
<div class="download">
193+
<a class="btn btn-warning" href="/downloadData/{{machineId}}" download >Dowload Data</a>
194+
</div>
195+
</div>
196+
<hr>
197+
150198
<footer>
151199
<p>&copy; Polygonal Tree 2014</p>
152200
</footer>
153-
</div> <!-- /container --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
154-
<script>window.jQuery || document.write('<script src="static/js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
201+
</div> <!-- /container -->
202+
<script src="static/js/vendor/jquery-1.11.0.min.js"></script>
155203

156204
<script src="static/js/vendor/bootstrap.min.js"></script>
157205

views/index.tpl~

-160
This file was deleted.

0 commit comments

Comments
 (0)