48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
# pylint: disable=unused-argument, consider-using-f-string
|
|
# pylint: disable=no-name-in-module, too-few-public-methods
|
|
|
|
"""
|
|
Network status
|
|
"""
|
|
|
|
from kivy.clock import Clock
|
|
from kivy.properties import StringProperty
|
|
from kivy.uix.screenmanager import Screen
|
|
|
|
from pybitmessage.network import objectracker, stats
|
|
|
|
from pybitmessage import state
|
|
|
|
|
|
class NetworkStat(Screen):
|
|
"""NetworkStat class for kivy Ui"""
|
|
|
|
text_variable_1 = StringProperty(
|
|
'{0}::{1}'.format('Total Connections', '0'))
|
|
text_variable_2 = StringProperty(
|
|
'Processed {0} per-to-per messages'.format('0'))
|
|
text_variable_3 = StringProperty(
|
|
'Processed {0} brodcast messages'.format('0'))
|
|
text_variable_4 = StringProperty(
|
|
'Processed {0} public keys'.format('0'))
|
|
text_variable_5 = StringProperty(
|
|
'Processed {0} object to be synced'.format('0'))
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
"""Init method for network stat"""
|
|
super(NetworkStat, self).__init__(*args, **kwargs)
|
|
Clock.schedule_interval(self.init_ui, 1)
|
|
|
|
def init_ui(self, dt=0):
|
|
"""Clock Schdule for method networkstat screen"""
|
|
self.text_variable_1 = '{0} :: {1}'.format(
|
|
'Total Connections', str(len(stats.connectedHostsList())))
|
|
self.text_variable_2 = 'Processed {0} per-to-per messages'.format(
|
|
str(state.numberOfMessagesProcessed))
|
|
self.text_variable_3 = 'Processed {0} brodcast messages'.format(
|
|
str(state.numberOfBroadcastsProcessed))
|
|
self.text_variable_4 = 'Processed {0} public keys'.format(
|
|
str(state.numberOfPubkeysProcessed))
|
|
self.text_variable_5 = '{0} object to be synced'.format(
|
|
len(objectracker.missingObjects))
|