Create widget with minwidth

This commit is contained in:
Thaynã B. Moretti 2019-05-13 20:14:13 -03:00
parent 87c0b170d4
commit a2fb344aa7
No known key found for this signature in database
GPG key ID: 6F6E110817B19E8D

View file

@ -3,40 +3,73 @@
import psutil
import netifaces
import bytefmt
import bumblebee.input
import bumblebee.output
import bumblebee.engine
import bumblebee.util
class Module(bumblebee.engine.Module):
def __init__(self, engine, config):
super(Module, self).__init__(engine, config,
bumblebee.output.Widget(full_text=self.utilization)
)
super(Module, self).__init__(engine, config)
self._default_adapter = netifaces.gateways()['default'][netifaces.AF_INET][1]
self._bandwidth = BandwidthInfo()
self._download_tx, self._upload_tx = self.network_tx()
def utilization(self, widget):
return "{0} {1}".format(
bytefmt.humanize(self._final_download_tx),
bytefmt.humanize(self._final_upload_tx)
)
self._download_tx = self._bandwidth.bytes_recv()
self._upload_tx = self._bandwidth.bytes_sent()
def update(self, widgets):
download_tx, upload_tx = self.network_tx()
download_tx = self._bandwidth.bytes_recv()
upload_tx = self._bandwidth.bytes_sent()
self._final_download_tx = (download_tx - self._download_tx)
self._final_upload_tx = (upload_tx - self._upload_tx)
download_rate = (download_tx - self._download_tx)
upload_rate = (upload_tx - self._upload_tx)
self.update_widgets(widgets, download_rate, upload_rate)
self._download_tx, self._upload_tx = download_tx, upload_tx
def network_tx(self):
io_counters = psutil.net_io_counters(pernic=True)
network = io_counters[self._default_adapter]
def update_widgets(self, widgets, download_rate, upload_rate):
del widgets[:]
return network.bytes_recv, network.bytes_sent
widgets.extend((
TrafficWidget(download_rate, ''),
TrafficWidget(upload_rate, '')
))
class BandwidthInfo:
def __init__(self):
io_counters = self.io_counters()
self.network = io_counters[self.default_network_adapter()]
def bytes_recv(self):
return self.bandwidth().bytes_recv
def bytes_sent(self):
return self.bandwidth().bytes_sent
def bandwidth(self):
io_counters = self.io_counters()
return io_counters[self.default_network_adapter()]
def default_network_adapter(self):
gateways = netifaces.gateways()
return gateways['default'][netifaces.AF_INET][1]
def io_counters(self):
return psutil.net_io_counters(pernic=True)
class TrafficWidget:
def __new__(self, text, icon):
widget = bumblebee.output.Widget()
widget.set('theme.minwidth', '00000000KiB/s')
widget.full_text(self.humanize(text, icon))
return widget
@staticmethod
def humanize(text, icon):
humanized_byte_format = bumblebee.util.bytefmt(text)
return '{0} {1}/s'.format(icon, humanized_byte_format)