2012-06-05 17:40:21 +02:00
|
|
|
#!/usr/bin/env python3
|
2012-02-17 02:09:21 +01:00
|
|
|
|
2012-04-28 23:06:34 +02:00
|
|
|
import json
|
2012-02-17 02:09:21 +01:00
|
|
|
import fileinput
|
|
|
|
import argparse
|
2013-11-18 10:59:49 +01:00
|
|
|
import os
|
2012-02-17 02:09:21 +01:00
|
|
|
|
2013-11-18 10:59:49 +01:00
|
|
|
from rrd import rrd
|
2012-05-11 18:39:26 +02:00
|
|
|
from nodedb import NodeDB
|
|
|
|
from d3mapbuilder import D3MapBuilder
|
2012-05-11 14:12:41 +02:00
|
|
|
|
2012-06-15 18:27:51 +02:00
|
|
|
# Force encoding to UTF-8
|
|
|
|
import locale # Ensures that subsequent open()s
|
2013-11-18 21:35:40 +01:00
|
|
|
locale.getpreferredencoding = lambda _=None: 'UTF-8' # are UTF-8 encoded.
|
2012-06-15 18:27:51 +02:00
|
|
|
|
|
|
|
import sys
|
2013-03-11 09:24:57 +01:00
|
|
|
#sys.stdin = open('/dev/stdin', 'r')
|
|
|
|
#sys.stdout = open('/dev/stdout', 'w')
|
|
|
|
#sys.stderr = open('/dev/stderr', 'w')
|
2012-06-15 18:27:51 +02:00
|
|
|
|
2012-02-17 02:09:21 +01:00
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
|
|
parser.add_argument('-a', '--aliases',
|
|
|
|
help='read aliases from FILE',
|
2013-02-02 00:44:46 +01:00
|
|
|
action='append',
|
2012-02-17 02:09:21 +01:00
|
|
|
metavar='FILE')
|
|
|
|
|
|
|
|
parser.add_argument('-g', '--gateway', action='append',
|
|
|
|
help='MAC of a gateway')
|
|
|
|
|
|
|
|
parser.add_argument('batmanjson', help='output of batman vd json')
|
|
|
|
|
2013-11-18 10:58:12 +01:00
|
|
|
parser.add_argument('-d', '--destination-directory', action='store',
|
|
|
|
help='destination directory for generated files',required=True)
|
|
|
|
|
2012-02-17 02:09:21 +01:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
options = vars(args)
|
|
|
|
|
2012-05-11 18:39:26 +02:00
|
|
|
db = NodeDB()
|
|
|
|
db.import_batman(list(fileinput.input(options['batmanjson'])))
|
2012-02-17 02:09:21 +01:00
|
|
|
|
|
|
|
if options['aliases']:
|
2013-02-02 00:44:46 +01:00
|
|
|
for aliases in options['aliases']:
|
|
|
|
db.import_aliases(json.load(open(aliases)))
|
2012-02-17 02:09:21 +01:00
|
|
|
|
2012-04-28 23:06:34 +02:00
|
|
|
if options['gateway']:
|
2012-05-11 18:39:26 +02:00
|
|
|
db.mark_gateways(options['gateway'])
|
2012-02-17 02:09:21 +01:00
|
|
|
|
2013-11-18 10:59:49 +01:00
|
|
|
scriptdir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
|
|
|
rrd = rrd(scriptdir + "/nodedb/",options['destination_directory'] + "/nodes")
|
|
|
|
rrd.update_database(db)
|
|
|
|
rrd.update_images()
|
|
|
|
|
2012-05-11 18:39:26 +02:00
|
|
|
m = D3MapBuilder(db)
|
2012-02-17 02:09:21 +01:00
|
|
|
|
2013-11-18 10:58:12 +01:00
|
|
|
nodes_json = open(options['destination_directory'] + '/nodes.json.new','w')
|
|
|
|
nodes_json.write(m.build())
|
|
|
|
nodes_json.close()
|