This repository was archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgui.py
160 lines (147 loc) · 6.08 KB
/
gui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# -*- coding: utf-8 -*-
# Copyright (c) 2009 Darwin M. Bautista
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import os
import sys
import signal
import socket
import time
import ConfigParser
from PyQt4 import QtCore, QtGui, uic
import router
def mktimer(interval, callback, args=(), single_shot=False):
t = QtCore.QTimer()
t.setInterval(1000 * interval)
if args:
def timeout():
callback(*args)
else:
timeout = callback
t.setSingleShot(single_shot)
QtCore.QObject.connect(t, QtCore.SIGNAL('timeout()'), timeout)
return t
def main():
app = QtGui.QApplication(sys.argv)
os.chdir(os.path.dirname(__file__))
ui = uic.loadUi('simulator.ui')
ui.setWindowIcon(QtGui.QIcon('icon.png'))
def log(msg):
ui.messages.appendPlainText('%s %s' % (time.ctime().split()[3], msg))
# Override default functions
router.mktimer = mktimer
router.log = log
configfile = QtGui.QFileDialog.getOpenFileName(ui, 'Open router configuration file', '', '*.cfg')
if not configfile:
if len(sys.argv) != 2:
sys.exit(1)
configfile = sys.argv[1]
cfg = ConfigParser.SafeConfigParser()
try:
cfg.read(str(configfile))
except ConfigParser.MissingSectionHeaderError:
QtGui.QMessageBox.warning(ui, 'OSPF-Sim', 'Invalid router configuration file!')
sys.exit(app.quit())
hostname = cfg.get('Local', 'hostname')
ui.setWindowTitle('OSPF-Sim: %s' % (hostname, ))
r = router.Router(hostname)
# Create and configure Router interfaces
ifaces = [i for i in cfg.sections() if i.startswith('Local:')]
ui.interfaces.setRowCount(len(ifaces))
for iface in ifaces:
# Create
name = iface.split(':')[1]
bandwidth = cfg.get(iface, 'bandwidth')
port = int(cfg.get(iface, 'port'))
try:
r.iface_create(name, bandwidth, port)
except socket.error:
QtGui.QMessageBox.information(ui, 'OSPF-Sim', 'An instance of %s is already running.' % (hostname, ))
sys.exit(app.quit())
# Configure
address = cfg.get(iface, 'address')
netmask = cfg.get(iface, 'netmask')
link = cfg.get(iface, 'link')
host = cfg.get(link, 'host')
port = int(cfg.get(link, 'port'))
r.iface_config(name, address, netmask, host, port)
bandwidth = int(bandwidth)
if bandwidth < 1000:
bandwidth = '%d bps' % (bandwidth, )
elif bandwidth < 1000000:
bandwidth = '%.1f kbps' % (bandwidth / 1000.0, )
elif bandwidth < 1000000000:
bandwidth = '%.1f Mbps' % (bandwidth / 1000000.0, )
else:
bandwidth = '%.1f Gbps' % (bandwidth / 1000000000.0, )
cols = [name, address, netmask, bandwidth, link]
for val in cols:
item = QtGui.QTableWidgetItem(val)
ui.interfaces.setItem(ifaces.index(iface), cols.index(val), item)
# Sort entries according to interface name
ui.interfaces.sortItems(0, QtCore.Qt.AscendingOrder)
def refresh_ui():
# Routing Table
rows = len(r._table)
if ui.routingTable.rowCount() != rows:
ui.routingTable.setRowCount(rows)
for i in xrange(rows):
col_count = 0
metric = '%.2f' % (r._table[i].metric, )
for col in ('dest', 'gateway', 'netmask', 'metric', 'iface'):
val = (metric if col == 'metric' else getattr(r._table[i], col))
item = QtGui.QTableWidgetItem(val)
ui.routingTable.setItem(i, col_count, item)
col_count += 1
# Sort entries according to Destination
ui.routingTable.sortItems(0, QtCore.Qt.DescendingOrder)
# Link State Database
rows = sum([len(n.networks) for n in r._lsdb.values()])
if ui.linkStateDb.rowCount() != rows:
ui.linkStateDb.setRowCount(rows)
row_count = 0
for lsa in r._lsdb.values():
for network, data in lsa.networks.iteritems():
cost = '%.2f' % (data[1], )
col_count = 0
for val in (lsa.adv_router, lsa.seq_no, lsa.age, network, cost):
item = QtGui.QTableWidgetItem(str(val))
ui.linkStateDb.setItem(row_count, col_count, item)
col_count += 1
row_count += 1
# Sort entries according to Router ID
ui.linkStateDb.sortItems(0, QtCore.Qt.AscendingOrder)
# Create timers
ui_timer = QtCore.QTimer()
router_timer = QtCore.QTimer()
# Setup signal-slot connections
QtCore.QObject.connect(app, QtCore.SIGNAL('lastWindowClosed()'), r.stop)
QtCore.QObject.connect(ui_timer, QtCore.SIGNAL('timeout()'), refresh_ui)
QtCore.QObject.connect(router_timer, QtCore.SIGNAL('timeout()'), router.poll)
# Start timers
ui_timer.start(1000)
router_timer.start(500)
# Start router and show UI
r.start()
ui.show()
# Setup signal handlers
signal.signal(signal.SIGTERM, lambda s, f: ui.close())
signal.signal(signal.SIGINT, lambda s, f: ui.close())
# Start event loop
sys.exit(app.exec_())