Skip to content
Snippets Groups Projects
Commit 0b212966 authored by inso's avatar inso
Browse files

Persons caching

parent 62eaaf7a
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ from PyQt5.QtCore import QObject, pyqtSignal ...@@ -15,6 +15,7 @@ from PyQt5.QtCore import QObject, pyqtSignal
from . import config from . import config
from ..tools.exceptions import NameAlreadyExists, BadAccountFile from ..tools.exceptions import NameAlreadyExists, BadAccountFile
from .account import Account from .account import Account
from . import person
from .. import __version__ from .. import __version__
...@@ -76,8 +77,8 @@ class Application(QObject): ...@@ -76,8 +77,8 @@ class Application(QObject):
self.current_account = account self.current_account = account
def load(self): def load(self):
if (os.path.exists(config.parameters['data']) self.load_persons()
and os.path.isfile(config.parameters['data'])): try:
logging.debug("Loading data...") logging.debug("Loading data...")
with open(config.parameters['data'], 'r') as json_data: with open(config.parameters['data'], 'r') as json_data:
data = json.load(json_data) data = json.load(json_data)
...@@ -85,6 +86,18 @@ class Application(QObject): ...@@ -85,6 +86,18 @@ class Application(QObject):
self.default_account = data['default_account'] self.default_account = data['default_account']
for account_name in data['local_accounts']: for account_name in data['local_accounts']:
self.accounts[account_name] = None self.accounts[account_name] = None
except FileNotFoundError:
pass
def load_persons(self):
try:
persons_path = os.path.join(config.parameters['home'],
'__persons__')
with open(persons_path, 'r') as persons_path:
data = json.load(persons_path)
person.load_cache(data)
except FileNotFoundError:
pass
def load_account(self, account_name): def load_account(self, account_name):
account_path = os.path.join(config.parameters['home'], account_path = os.path.join(config.parameters['home'],
...@@ -148,6 +161,14 @@ class Application(QObject): ...@@ -148,6 +161,14 @@ class Application(QObject):
account_path = os.path.join(config.parameters['home'], account.name) account_path = os.path.join(config.parameters['home'], account.name)
shutil.rmtree(account_path) shutil.rmtree(account_path)
def save_persons(self):
persons_path = os.path.join(config.parameters['home'],
'__persons__')
with open(persons_path, 'w')as outfile:
data = person.jsonify_cache()
data['version'] = __version__
json.dump(data, outfile, indent=4, sort_keys=True)
def save_cache(self, account): def save_cache(self, account):
if not os.path.exists(os.path.join(config.parameters['home'], if not os.path.exists(os.path.join(config.parameters['home'],
account.name, '__cache__')): account.name, '__cache__')):
......
...@@ -16,11 +16,18 @@ from cutecoin.tools.exceptions import PersonNotFoundError,\ ...@@ -16,11 +16,18 @@ from cutecoin.tools.exceptions import PersonNotFoundError,\
def load_cache(json_data): def load_cache(json_data):
for person_data in json_data: for person_data in json_data['persons']:
person = Person.from_json(person_data) person = Person.from_json(person_data)
Person._instances[person.pubkey] = person Person._instances[person.pubkey] = person
def jsonify_cache():
data = []
for person in Person._instances.values():
data.append(person.jsonify())
return {'persons': data}
class cached(object): class cached(object):
''' '''
Decorator. Caches a function's return value each time it is called. Decorator. Caches a function's return value each time it is called.
...@@ -30,22 +37,17 @@ class cached(object): ...@@ -30,22 +37,17 @@ class cached(object):
''' '''
def __init__(self, func): def __init__(self, func):
self.func = func self.func = func
self.cache = {}
def __call__(self, inst, community): def __call__(self, inst, community):
try: if community.currency in inst._cache:
inst.__cache if self.func.__name__ in inst._cache[community.currency]:
except AttributeError: return inst._cache[community.currency][self.func.__name__]
inst.__cache = {}
if community.currency in inst.__cache:
if self.func.__name__ in inst.__cache[community.currency]:
return inst.__cache[community.currency][self.func.__name__]
else: else:
inst.__cache[community.currency] = {} inst._cache[community.currency] = {}
value = self.func(inst, community) value = self.func(inst, community)
inst.__cache[community.currency][self.func.__name__] = value inst._cache[community.currency][self.func.__name__] = value
return value return value
def __repr__(self): def __repr__(self):
...@@ -59,7 +61,7 @@ class cached(object): ...@@ -59,7 +61,7 @@ class cached(object):
def reload(self, inst, community): def reload(self, inst, community):
try: try:
del inst.__cache[community.currency][self.func.__name__] del inst._cache[community.currency][self.func.__name__]
self.__call__(inst, community) self.__call__(inst, community)
except KeyError: except KeyError:
pass pass
...@@ -80,7 +82,7 @@ class Person(object): ...@@ -80,7 +82,7 @@ class Person(object):
''' '''
self.name = name self.name = name
self.pubkey = pubkey self.pubkey = pubkey
self.__cache = cache self._cache = cache
@classmethod @classmethod
def lookup(cls, pubkey, community, cached=True): def lookup(cls, pubkey, community, cached=True):
...@@ -90,9 +92,6 @@ class Person(object): ...@@ -90,9 +92,6 @@ class Person(object):
if pubkey in Person._instances: if pubkey in Person._instances:
return Person._instances[pubkey] return Person._instances[pubkey]
else: else:
logging.debug("{0} : {1} in ? {2}".format(len(Person._instances),
pubkey, pubkey in Person._instances))
logging.debug("{0}".format(Person._instances.keys()))
data = community.request(bma.wot.Lookup, req_args={'search': pubkey}, data = community.request(bma.wot.Lookup, req_args={'search': pubkey},
cached=cached) cached=cached)
timestamp = 0 timestamp = 0
...@@ -135,6 +134,7 @@ class Person(object): ...@@ -135,6 +134,7 @@ class Person(object):
cache = json_person['cache'] cache = json_person['cache']
else: else:
cache = {} cache = {}
person = cls(name, pubkey, cache) person = cls(name, pubkey, cache)
Person._instances[pubkey] = person Person._instances[pubkey] = person
return person return person
...@@ -181,11 +181,7 @@ class Person(object): ...@@ -181,11 +181,7 @@ class Person(object):
if '400' in str(e): if '400' in str(e):
raise MembershipNotFoundError(self.pubkey, community.name()) raise MembershipNotFoundError(self.pubkey, community.name())
membership = Membership(PROTOCOL_VERSION, community.currency, self.pubkey, return membership_data
membership_data['blockNumber'],
membership_data['blockHash'], 'IN', search['uid'],
search['sigDate'], None)
return membership
@cached @cached
def is_member(self, community): def is_member(self, community):
...@@ -256,5 +252,5 @@ class Person(object): ...@@ -256,5 +252,5 @@ class Person(object):
def jsonify(self): def jsonify(self):
data = {'name': self.name, data = {'name': self.name,
'pubkey': self.pubkey, 'pubkey': self.pubkey,
'cache': self.__cache} 'cache': self._cache}
return data return data
...@@ -62,7 +62,7 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget): ...@@ -62,7 +62,7 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
person = Person.lookup(self.app.current_account.pubkey, self.community) person = Person.lookup(self.app.current_account.pubkey, self.community)
try: try:
join_block = person.membership(self.community).block_number join_block = person.membership(self.community)['blockNumber']
join_date = self.community.get_block(join_block).mediantime join_date = self.community.get_block(join_block).mediantime
parameters = self.community.get_parameters() parameters = self.community.get_parameters()
expiration_date = join_date + parameters['sigValidity'] expiration_date = join_date + parameters['sigValidity']
......
...@@ -322,6 +322,7 @@ class MainWindow(QMainWindow, Ui_MainWindow): ...@@ -322,6 +322,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
def closeEvent(self, event): def closeEvent(self, event):
if self.app.current_account: if self.app.current_account:
self.app.save_cache(self.app.current_account) self.app.save_cache(self.app.current_account)
self.app.save_persons()
self.loader.deleteLater() self.loader.deleteLater()
self.loader_thread.deleteLater() self.loader_thread.deleteLater()
super().closeEvent(event) super().closeEvent(event)
......
...@@ -45,7 +45,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab): ...@@ -45,7 +45,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
certified = person.certified_by(self.community) certified = person.certified_by(self.community)
certifiers = person.certifiers_of(self.community) certifiers = person.certifiers_of(self.community)
renew_block = membership.block_number renew_block = membership['blockNumber']
last_renewal = self.community.get_block(renew_block).mediantime last_renewal = self.community.get_block(renew_block).mediantime
expiration = last_renewal + parameters['sigValidity'] expiration = last_renewal + parameters['sigValidity']
except MembershipNotFoundError: except MembershipNotFoundError:
......
...@@ -92,7 +92,7 @@ class MembersTableModel(QAbstractTableModel): ...@@ -92,7 +92,7 @@ class MembersTableModel(QAbstractTableModel):
def member_data(self, pubkey): def member_data(self, pubkey):
person = Person.lookup(pubkey, self.community) person = Person.lookup(pubkey, self.community)
join_block = person.membership(self.community).block_number join_block = person.membership(self.community)['blockNumber']
join_date = self.community.get_block(join_block).mediantime join_date = self.community.get_block(join_block).mediantime
parameters = self.community.get_parameters() parameters = self.community.get_parameters()
expiration_date = join_date + parameters['sigValidity'] expiration_date = join_date + parameters['sigValidity']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment