aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@mandriva.com>2009-09-29 17:28:50 -0300
committerEugeni Dodonov <eugeni@mandriva.com>2009-09-29 17:28:50 -0300
commit0fb2f7566b4fabef1f94f843a27aef239111549a (patch)
tree133ed788c635fb17c5e8fa0cf3e2e49e36701f6a /src
parente6aa6bf53cb954f1a937f6cafc79e4c60c172cd3 (diff)
downloadnet_monitor-0fb2f7566b4fabef1f94f843a27aef239111549a.tar
net_monitor-0fb2f7566b4fabef1f94f843a27aef239111549a.tar.gz
net_monitor-0fb2f7566b4fabef1f94f843a27aef239111549a.tar.bz2
net_monitor-0fb2f7566b4fabef1f94f843a27aef239111549a.tar.xz
net_monitor-0fb2f7566b4fabef1f94f843a27aef239111549a.zip
Working out-of-the-box.
Drawing two entries side-by-side in detailed info.
Diffstat (limited to 'src')
-rw-r--r--src/__init__.py3
-rw-r--r--src/monitor.py153
-rwxr-xr-xsrc/net_monitor189
-rw-r--r--src/wifi.py75
4 files changed, 233 insertions, 187 deletions
diff --git a/src/__init__.py b/src/__init__.py
index e69de29..95cdee1 100644
--- a/src/__init__.py
+++ b/src/__init__.py
@@ -0,0 +1,3 @@
+__all__=["Monitor"]
+
+from net_monitor.monitor import Monitor
diff --git a/src/monitor.py b/src/monitor.py
new file mode 100644
index 0000000..12acf1a
--- /dev/null
+++ b/src/monitor.py
@@ -0,0 +1,153 @@
+#!/usr/bin/python
+"""net_monitor: wifi monitoring"""
+
+# native librari implements a few bits
+import _native
+import socket
+import fcntl
+import struct
+import traceback
+import array
+
+
+class Monitor:
+ # based on http://svn.pardus.org.tr/pardus/tags/pardus-1.0/system/base/wireless-tools/comar/link.py
+
+ # wireless IOCTL constants
+ SIOCGIWMODE = 0x8B07 # get operation mode
+ SIOCGIWRATE = 0x8B21 # get default bit rate
+ SIOCGIWESSID = 0x8B1B # get essid
+
+ # wireless modes
+ modes = ['Auto', 'Ad-Hoc', 'Managed', 'Master', 'Repeat', 'Second', 'Monitor']
+
+ def __init__(self):
+ self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+ self.net = {}
+
+ def ioctl(self, func, params):
+ return fcntl.ioctl(self.sock.fileno(), func, params)
+
+ def wifi_ioctl(self, iface, func, arg=None):
+ """Prepares some variables for wifi and runs ioctl"""
+ if not arg:
+ data = (iface + '\0' * 32)[:32]
+ else:
+ data = (iface + '\0' * 16)[:16] + arg
+ try:
+ res = self.ioctl(func, data)
+ return res
+ except:
+ traceback.print_exc()
+ return None
+
+ def wifi_get_max_quality(self, iface):
+ """Gets maximum quality value"""
+ return _native.wifi_get_max_quality(iface)
+
+ def wifi_get_essid(self, iface):
+ """Get current essid for an interface"""
+ buffer = array.array('c', '\0' * 16)
+ addr, length = buffer.buffer_info()
+ arg = struct.pack('Pi', addr, length)
+ self.wifi_ioctl(iface, self.SIOCGIWESSID, arg)
+ return buffer.tostring().strip('\0')
+
+ def wifi_get_mode(self, iface):
+ """Get current mode from an interface"""
+ result = self.wifi_ioctl(iface, self.SIOCGIWMODE)
+ mode = struct.unpack("i", result[16:20])[0]
+ return self.modes[mode]
+
+ def wifi_get_bitrate(self, iface):
+ """Gets current operating rate from an interface"""
+ # Note: KILO is not 2^10 in wireless tools world
+
+ result = self.wifi_ioctl(iface, self.SIOCGIWRATE)
+
+ if result:
+ size = struct.calcsize('ihbb')
+ m, e, i, pad = struct.unpack('ihbb', result[16:16+size])
+ if e == 0:
+ bitrate = m
+ else:
+ bitrate = float(m) * 10**e
+ return bitrate
+ else:
+ return -1
+
+ def get_status(self, ifname):
+ try:
+ fd = open("/sys/class/net/%s/operstate" % ifname)
+ status = fd.readline().strip()
+ fd.close()
+ except:
+ status="unknown"
+ if status == "unknown":
+ # pretty-format interface status
+ status = _("Unknown")
+ return status
+
+ def readwireless(self):
+ """Check if device is wireless and get its details if necessary"""
+ try:
+ with open("/proc/net/wireless") as fd:
+ ifaces = fd.readlines()[2:]
+ for line in ifaces:
+ line = line.strip()
+ if not line:
+ continue
+ iface, params = line.split(":", 1)
+ iface = iface.strip()
+ params = params.replace(".", "").split()
+ return {}
+ except:
+ # something bad happened
+ traceback.print_exc()
+ return {}
+
+ def get_address(self, ifname):
+ s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+ mac=_("No physical address")
+ # ip address
+ try:
+ addr=socket.inet_ntoa(fcntl.ioctl( s.fileno(), 0x8915, struct.pack('256s', ifname[:15]))[20:24])
+ except:
+ addr=_("No address assigned")
+ # mac address
+ try:
+ mac_struct=fcntl.ioctl( s.fileno(), 0x8927, struct.pack('256s', ifname[:15]))[18:24]
+ mac=":".join(["%02x" % ord(char) for char in mac_struct])
+ except:
+ addr=_("No address assigned")
+ # addr, mac
+ return addr, mac
+
+ def readnet(self):
+ """Reads values from /proc/net/dev"""
+ net = {}
+ data = open("/proc/net/dev").readlines()[2:]
+ for l in data:
+ dev, vals = l.split(":")
+ dev = dev.strip()
+ vals = vals.split()
+ net[dev] = vals
+ return net
+
+ def get_traffic(self, iface, net=None):
+ if not net:
+ if not self.net:
+ self.readnet()
+ net = self.net
+ if iface in net:
+ bytes_in = int(net[iface][0])
+ bytes_out = int(net[iface][8])
+ else:
+ bytes_in = 0
+ bytes_out = 0
+ return bytes_in, bytes_out
+
+ def format_size(self, size):
+ """Pretty-Formats size"""
+ return size
+
diff --git a/src/net_monitor b/src/net_monitor
index fc05f2d..ecbbb3e 100755
--- a/src/net_monitor
+++ b/src/net_monitor
@@ -28,82 +28,11 @@ try:
except IOError:
_ = str
+from net_monitor import Monitor
+
ifaces = {}
HISTOGRAM_SIZE=50
-def get_status(ifname):
- try:
- fd = open("/sys/class/net/%s/operstate" % ifname)
- status = fd.readline().strip()
- fd.close()
- except:
- status="unknown"
- if status == "unknown":
- # pretty-format interface status
- status = _("Unknown")
- return status
-
-def readwireless():
- """Check if device is wireless and get its details if necessary"""
- try:
- with open("/proc/net/wireless") as fd:
- ifaces = fd.readlines()[2:]
- for line in ifaces:
- line = line.strip()
- if not line:
- continue
- iface, params = line.split(":", 1)
- iface = iface.strip()
- params = params.replace(".", "").split()
- return {}
- except:
- # something bad happened
- traceback.print_exc()
- return {}
-
-def get_address(ifname):
- s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
- mac=_("No physical address")
- # ip address
- try:
- addr=socket.inet_ntoa(fcntl.ioctl( s.fileno(), 0x8915, struct.pack('256s', ifname[:15]))[20:24])
- except:
- addr=_("No address assigned")
- # mac address
- try:
- mac_struct=fcntl.ioctl( s.fileno(), 0x8927, struct.pack('256s', ifname[:15]))[18:24]
- mac=":".join(["%02x" % ord(char) for char in mac_struct])
- except:
- addr=_("No address assigned")
- # addr, mac
- return addr, mac
-
-def readnet():
- """Reads values from /proc/net/dev"""
- net = {}
- data = open("/proc/net/dev").readlines()[2:]
- for l in data:
- dev, vals = l.split(":")
- dev = dev.strip()
- vals = vals.split()
- net[dev] = vals
- return net
-
-def get_traffic(iface, net=None):
- if not net:
- net = readnet()
- if iface in net:
- bytes_in = int(net[iface][0])
- bytes_out = int(net[iface][8])
- else:
- bytes_in = 0
- bytes_out = 0
- return bytes_in, bytes_out
-
-def format_size(size):
- """Pretty-Formats size"""
- return size
-
# borrowed from gnome-network-monitor 0.9.1 (gnetworkmonitor.sourceforge.net)
class LoadGraph:
"""
@@ -305,7 +234,7 @@ class LoadGraph:
for key, value in kwargs.items():
self.__colors[key] = value
-class Monitor:
+class MonitorGui:
def __init__(self):
self.window = gtk.Window()
self.window.set_title(_("Network monitor"))
@@ -320,15 +249,18 @@ class Monitor:
self.main_vbox.pack_start(self.notebook)
#self.notebook.connect('switch-page', self.show_net_status)
- self.ifaces = readnet()
+ # monitor
+ self.monitor = Monitor()
+
+ self.ifaces = self.monitor.readnet()
self.enabled_ifaces = []
sorted_ifaces = self.ifaces.keys()
sorted_ifaces.sort()
- net=readnet()
+ net=self.monitor.readnet()
for iface in sorted_ifaces:
- data_in, data_out = get_traffic(iface,net)
+ data_in, data_out = self.monitor.get_traffic(iface,net)
self.ifaces[iface] = {'data_in': 0,
'data_out': 0,
'total_in': 0,
@@ -355,15 +287,15 @@ class Monitor:
def update(self, interval=1):
"""Updates traffic counters (interval is in seconds)"""
- net=readnet()
- readwireless()
+ net=self.monitor.readnet()
+ self.monitor.readwireless()
for iface in self.ifaces:
- status = get_status(iface)
+ status = self.monitor.get_status(iface)
old_data_in = self.ifaces[iface]['data_in']
old_data_out = self.ifaces[iface]['data_out']
total_in = self.ifaces[iface]['total_in']
total_out = self.ifaces[iface]['total_out']
- data_in, data_out = get_traffic(iface, net)
+ data_in, data_out = self.monitor.get_traffic(iface, net)
# is it the first measure?
if old_data_in == 0 and old_data_out == 0:
old_data_in = data_in
@@ -385,11 +317,11 @@ class Monitor:
histogram_in = self.ifaces[iface]['histogram']['in']
histogram_out = self.ifaces[iface]['histogram']['out']
if histogram_in:
- histo_in = reduce(lambda x, y: x+y, histogram_in) / HISTOGRAM_SIZE
+ histo_in = reduce(lambda x, y: x+y, histogram_in) / len(histogram_in)
else:
histo_in = 0
if histogram_out:
- histo_out = reduce(lambda x, y: x+y, histogram_out) / HISTOGRAM_SIZE
+ histo_out = reduce(lambda x, y: x+y, histogram_out) / len(histogram_in)
else:
histo_out = 0
# update saved values
@@ -398,7 +330,7 @@ class Monitor:
self.ifaces[iface]['total_in'] = total_in
self.ifaces[iface]['total_out'] = total_out
# update widgets
- ip, mac = get_address(iface)
+ ip, mac = self.monitor.get_address(iface)
for widget, value in [('widget_in', total_in),
('widget_out', total_out),
('widget_speed_in', speed_in),
@@ -495,47 +427,72 @@ class Monitor:
frame_global = gtk.Frame(_("Interface settings"))
traf_vbox.pack_start(frame_global, False, False)
- vbox_global = gtk.VBox(spacing=5)
- frame_global.add(vbox_global)
+ hbox = gtk.HBox(spacing=5)
+ frame_global.add(hbox)
+ # building pairs of boxes
+ vbox_left = gtk.VBox(spacing=5)
+ vbox_right = gtk.VBox(spacing=5)
+ hbox.add(vbox_left)
+ hbox.add(vbox_right)
+ # shortcut for pair of boxes
+ vbox = (vbox_left, vbox_right)
# configuring callbacks
- sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
+ sizegroup1 = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
+ sizegroup2 = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
# interface
- iface_h, iface_p = self.build_value_pair(sizegroup, _("Network interface:"), iface)
- vbox_global.pack_start(iface_h, False, False)
- iface_s, iface_status = self.build_value_pair(sizegroup, _("Device status:"))
+ iface_h, iface_p = self.build_value_pair(sizegroup1, _("Network interface:"), iface)
+ iface_s, iface_status = self.build_value_pair(sizegroup2, _("Device status:"))
self.ifaces[iface]["widget_status"] = iface_status
- vbox_global.pack_start(iface_s, False, False)
- iface_addr_s, iface_addr = self.build_value_pair(sizegroup, _("IP Address:"))
+ self.build_widget_pair(vbox, iface_h, iface_s)
+
+ iface_addr_s, iface_addr = self.build_value_pair(sizegroup1, _("IP Address:"))
self.ifaces[iface]["widget_ip_address"] = iface_addr
- vbox_global.pack_start(iface_addr_s, False, False)
- iface_mac_s, iface_mac = self.build_value_pair(sizegroup, _("Hardware address:"))
+ iface_mac_s, iface_mac = self.build_value_pair(sizegroup2, _("Hardware address:"))
self.ifaces[iface]["widget_hw_address"] = iface_mac
- vbox_global.pack_start(iface_mac_s, False, False)
+ self.build_widget_pair(vbox, iface_addr_s, iface_mac_s)
# traffic
frame = gtk.Frame(_("Traffic statistics"))
traf_vbox.pack_start(frame)
- vbox = gtk.VBox(spacing=5)
- frame.add(vbox)
- total_in_h, total_in = self.build_value_pair(sizegroup, _("Received data:"))
+ hbox = gtk.HBox(spacing=5)
+ frame.add(hbox)
+ # building pairs of boxes
+ vbox_left = gtk.VBox(spacing=5)
+ vbox_right = gtk.VBox(spacing=5)
+ hbox.add(vbox_left)
+ hbox.add(vbox_right)
+ # shortcut for pair of boxes
+ vbox = (vbox_left, vbox_right)
+
+ label_down = gtk.Label()
+ label_down.set_markup("<b>%s</b>" % _("Download"))
+ label_down.set_property("xalign", 0.0)
+ label_up = gtk.Label()
+ label_up.set_property("xalign", 0.0)
+ label_up.set_markup("<b>%s</b>" % _("Upload"))
+
+ self.build_widget_pair(vbox, label_down, label_up)
+
+ total_in_h, total_in = self.build_value_pair(sizegroup1, _("Received data:"))
self.ifaces[iface]["widget_in"] = total_in
- vbox.pack_start(total_in_h, False, False)
- total_out_h, total_out = self.build_value_pair(sizegroup, _("Sent data:"))
+ total_out_h, total_out = self.build_value_pair(sizegroup2, _("Sent data:"))
self.ifaces[iface]["widget_out"] = total_out
- vbox.pack_start(total_out_h, False, False)
- speed_in_h, speed_in = self.build_value_pair(sizegroup, _("Download speed:"))
+ self.build_widget_pair(vbox, total_in_h, total_out_h)
+
+ # speed
+ speed_in_h, speed_in = self.build_value_pair(sizegroup1, _("Download speed:"))
self.ifaces[iface]["widget_speed_in"] = speed_in
- vbox.pack_start(speed_in_h, False, False)
- speed_out_h, speed_out = self.build_value_pair(sizegroup, _("Upload speed:"))
+ speed_out_h, speed_out = self.build_value_pair(sizegroup2, _("Upload speed:"))
self.ifaces[iface]["widget_speed_out"] = speed_out
- vbox.pack_start(speed_out_h, False, False)
- histo_in_h, histo_in = self.build_value_pair(sizegroup, _("Average download speed (over past %d samples):") % HISTOGRAM_SIZE)
+ self.build_widget_pair(vbox, speed_in_h, speed_out_h)
+
+ # speed - histo
+ histo_in_h, histo_in = self.build_value_pair(sizegroup1, _("Average:"))
self.ifaces[iface]["widget_histo_in"] = histo_in
- vbox.pack_start(histo_in_h, False, False)
- histo_out_h, histo_out = self.build_value_pair(sizegroup, _("Average upload speed (over past %d samples):") % HISTOGRAM_SIZE)
+ histo_out_h, histo_out = self.build_value_pair(sizegroup2, _("Average:"))
self.ifaces[iface]["widget_histo_out"] = histo_out
- vbox.pack_start(histo_out_h, False, False)
+ self.build_widget_pair(vbox, histo_in_h, histo_out_h)
# statistics button
if self.check_network_accounting(iface):
@@ -548,16 +505,24 @@ class Monitor:
return traf_vbox
+ def build_widget_pair(self, container, w1, w2):
+ """Puts two widgets side-by-side"""
+ # finding left and right vboxes from container
+ vbox_left, vbox_right = container
+ vbox_left.pack_start(w1, False, False)
+ vbox_right.pack_start(w2, False, False)
+
def build_value_pair(self, sizegroup, text, value_text=None):
"""Builds a value pair"""
hbox = gtk.HBox(spacing=10)
name = gtk.Label(text)
- name.set_property("xalign", 1.0)
+ name.set_property("xalign", 0.0)
hbox.pack_start(name, False, False)
value = gtk.Label(value_text)
value.set_property("xalign", 0.0)
hbox.pack_start(value, False, False)
- sizegroup.add_widget(name)
+ if sizegroup:
+ sizegroup.add_widget(name)
return hbox, value
def update_stat_iface(self, widget, data):
@@ -591,5 +556,5 @@ class Monitor:
return pixbuf
if __name__ == "__main__":
- monitor = Monitor()
+ monitor = MonitorGui()
gtk.main()
diff --git a/src/wifi.py b/src/wifi.py
deleted file mode 100644
index 28e06a6..0000000
--- a/src/wifi.py
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/usr/bin/python
-"""net_monitor: wifi monitoring"""
-
-# native librari implements a few bits
-import _native
-import socket
-import fcntl
-import struct
-import traceback
-import array
-
-
-class Wireless:
- # based on http://svn.pardus.org.tr/pardus/tags/pardus-1.0/system/base/wireless-tools/comar/link.py
-
- # wireless IOCTL constants
- SIOCGIWMODE = 0x8B07 # get operation mode
- SIOCGIWRATE = 0x8B21 # get default bit rate
- SIOCGIWESSID = 0x8B1B # get essid
-
- # wireless modes
- modes = ['Auto', 'Ad-Hoc', 'Managed', 'Master', 'Repeat', 'Second', 'Monitor']
-
- def __init__(self):
- self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
-
- def ioctl(self, func, params):
- return fcntl.ioctl(self.sock.fileno(), func, params)
-
- def get_max_quality(self, iface):
- """Gets maximum quality value"""
- return _native.wifi_get_max_quality(iface)
-
- def call(self, iface, func, arg=None):
- if not arg:
- data = (iface + '\0' * 32)[:32]
- else:
- data = (iface + '\0' * 16)[:16] + arg
- try:
- res = self.ioctl(func, data)
- return res
- except:
- traceback.print_exc()
- return None
-
- def get_essid(self, iface):
- """Get current essid for an interface"""
- buffer = array.array('c', '\0' * 16)
- addr, length = buffer.buffer_info()
- arg = struct.pack('Pi', addr, length)
- self.call(iface, self.SIOCGIWESSID, arg)
- return buffer.tostring().strip('\0')
-
- def get_mode(self, iface):
- """Get current mode from an interface"""
- result = self.call(iface, self.SIOCGIWMODE)
- mode = struct.unpack("i", result[16:20])[0]
- return self.modes[mode]
-
- def get_bitrate(self, iface):
- """Gets current operating rate from an interface"""
- # Note: KILO is not 2^10 in wireless tools world
-
- result = self.call(iface, self.SIOCGIWRATE)
-
- if result:
- size = struct.calcsize('ihbb')
- m, e, i, pad = struct.unpack('ihbb', result[16:16+size])
- if e == 0:
- bitrate = m
- else:
- bitrate = float(m) * 10**e
- return bitrate
- else:
- return -1