2013-11-18 10:59:49 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
import os
|
2014-02-11 00:12:10 +01:00
|
|
|
from GlobalRRD import GlobalRRD
|
|
|
|
from NodeRRD import NodeRRD
|
2013-11-18 10:59:49 +01:00
|
|
|
|
|
|
|
class rrd:
|
|
|
|
def __init__( self
|
|
|
|
, databaseDirectory
|
|
|
|
, imagePath
|
|
|
|
, displayTimeGlobal = "7d"
|
|
|
|
, displayTimeNode = "1d"
|
|
|
|
):
|
|
|
|
self.dbPath = databaseDirectory
|
2014-02-11 00:12:10 +01:00
|
|
|
self.globalDb = GlobalRRD(self.dbPath)
|
2013-11-18 10:59:49 +01:00
|
|
|
self.imagePath = imagePath
|
|
|
|
self.displayTimeGlobal = displayTimeGlobal
|
|
|
|
self.displayTimeNode = displayTimeNode
|
2013-11-23 22:16:35 +01:00
|
|
|
|
2013-11-18 10:59:49 +01:00
|
|
|
self.currentTimeInt = (int(time.time())/60)*60
|
|
|
|
self.currentTime = str(self.currentTimeInt)
|
|
|
|
|
2013-11-23 22:16:35 +01:00
|
|
|
try:
|
|
|
|
os.stat(self.imagePath)
|
|
|
|
except:
|
|
|
|
os.mkdir(self.imagePath)
|
|
|
|
|
2013-11-18 10:59:49 +01:00
|
|
|
def update_database(self,db):
|
|
|
|
nodes = {}
|
|
|
|
clientCount = 0
|
|
|
|
for node in db.get_nodes():
|
|
|
|
if node.flags['online']:
|
|
|
|
if not node.flags['client']:
|
|
|
|
nodes[node.id] = node
|
2014-02-22 13:35:34 +01:00
|
|
|
node.clients = 0
|
|
|
|
node.neighbors = 0
|
|
|
|
node.vpn_neighbors = 0
|
2014-01-30 22:08:40 +01:00
|
|
|
if 'legacy' in node.flags and node.flags['legacy']:
|
|
|
|
clientCount -= 1
|
2013-11-18 10:59:49 +01:00
|
|
|
else:
|
|
|
|
clientCount += 1
|
|
|
|
for link in db.get_links():
|
2013-11-18 22:39:44 +01:00
|
|
|
source = link.source.interface
|
|
|
|
target = link.target.interface
|
|
|
|
if source in nodes and not target in nodes:
|
|
|
|
nodes[source].clients += 1
|
|
|
|
elif target in nodes and not source in nodes:
|
|
|
|
nodes[target].clients += 1
|
2014-02-22 13:35:34 +01:00
|
|
|
elif source in nodes and target in nodes:
|
|
|
|
nodes[source].neighbors += 1
|
|
|
|
nodes[target].neighbors += 1
|
|
|
|
if link.type == 'vpn':
|
|
|
|
nodes[target].vpn_neighbors += 1
|
|
|
|
nodes[source].vpn_neighbors += 1
|
2013-11-18 10:59:49 +01:00
|
|
|
|
2014-02-11 00:12:10 +01:00
|
|
|
self.globalDb.update(len(nodes), clientCount)
|
|
|
|
for node in nodes.values():
|
|
|
|
rrd = NodeRRD(
|
|
|
|
os.path.join(self.dbPath, str(node.id).replace(':', '') + '.rrd'),
|
|
|
|
node
|
|
|
|
)
|
|
|
|
rrd.update()
|
2013-11-18 10:59:49 +01:00
|
|
|
|
|
|
|
def update_images(self):
|
2014-02-11 00:12:10 +01:00
|
|
|
""" Creates an image for every rrd file in the database directory.
|
2013-11-18 10:59:49 +01:00
|
|
|
"""
|
|
|
|
|
2014-02-11 00:12:10 +01:00
|
|
|
self.globalDb.graph(os.path.join(self.imagePath, "globalGraph.png"), self.displayTimeGlobal)
|
2013-11-18 10:59:49 +01:00
|
|
|
|
|
|
|
nodeDbFiles = os.listdir(self.dbPath)
|
|
|
|
|
|
|
|
for fileName in nodeDbFiles:
|
2013-11-25 13:17:53 +01:00
|
|
|
if not os.path.isfile(os.path.join(self.dbPath, fileName)):
|
2013-11-23 23:15:49 +01:00
|
|
|
continue
|
|
|
|
|
2013-11-18 10:59:49 +01:00
|
|
|
nodeName = os.path.basename(fileName).split('.')
|
|
|
|
if nodeName[1] == 'rrd' and not nodeName[0] == "nodes":
|
2014-02-11 00:12:10 +01:00
|
|
|
rrd = NodeRRD(os.path.join(self.dbPath, fileName))
|
|
|
|
rrd.graph(self.imagePath, self.displayTimeNode)
|