From 1557c715e461d5a7deb04bb008c6497441351bbe Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sun, 30 Jul 2006 22:56:43 +0000 Subject: some minor speedups using caches and more selective updating --- lib/python/Components/Sources/CurrentService.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib/python/Components/Sources/CurrentService.py') diff --git a/lib/python/Components/Sources/CurrentService.py b/lib/python/Components/Sources/CurrentService.py index 100822bc..08d67eee 100644 --- a/lib/python/Components/Sources/CurrentService.py +++ b/lib/python/Components/Sources/CurrentService.py @@ -2,6 +2,8 @@ from Components.PerServiceDisplay import PerServiceBase from enigma import iPlayableService from Source import Source +from time import time + class CurrentService(PerServiceBase, Source): def __init__(self, navcore): Source.__init__(self) @@ -18,9 +20,11 @@ class CurrentService(PerServiceBase, Source): self.navcore = navcore def serviceEvent(self, event): - self.changed(event) + self.changed((self.CHANGED_SPECIFIC, event)) def getCurrentService(self): - return self.navcore.getCurrentService() + if self.cache is None: + self.cache = self.navcore.getCurrentService() + return self.cache service = property(getCurrentService) -- cgit v1.2.3