X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FPluginComponent.py;h=c6ad584f328f778c05d2ebaba77539695f69c4c9;hp=e5194b28c9922fd9d3711da69dd6dc67bd4c3959;hb=f4f8263d2594c3bf1d46a9820f1bd4232e312739;hpb=e347ea39bb1984b1f0fbe5f56f3b35a33a8dbe9b diff --git a/lib/python/Components/PluginComponent.py b/lib/python/Components/PluginComponent.py index e5194b2..c6ad584 100755 --- a/lib/python/Components/PluginComponent.py +++ b/lib/python/Components/PluginComponent.py @@ -14,6 +14,7 @@ class PluginComponent: def __init__(self): self.plugins = {} self.pluginList = [ ] + self.installedPluginList = [ ] self.setPluginPrefix("Plugins.") self.resetWarnings() @@ -73,6 +74,7 @@ class PluginComponent: plugins = [ plugins ] for p in plugins: + p.path = path p.updateIcon(path) new_plugins.append(p) @@ -91,17 +93,25 @@ class PluginComponent: #ignore already installed but reloaded plugins for p in plugins_removed: for pa in plugins_added: - if pa.name == p.name and pa.where == p.where: + if pa.path == p.path and pa.where == p.where: pa.needsRestart = False for p in plugins_removed: self.removePlugin(p) for p in plugins_added: - self.addPlugin(p) - + if self.firstRun or p.needsRestart is False: + self.addPlugin(p) + else: + for installed_plugin in self.installedPluginList: + if installed_plugin.path == p.path: + if installed_plugin.where == p.where: + p.needsRestart = False + self.addPlugin(p) + if self.firstRun: self.firstRun = False + self.installedPluginList = self.pluginList def getPlugins(self, where): """Get list of plugins in a specific category""" @@ -112,8 +122,8 @@ class PluginComponent: for x in where: res.extend(self.plugins.get(x, [ ])) - - return res + res.sort(key=lambda x:x.weight) + return res def getPluginsForMenu(self, menuid): res = [ ] @@ -124,8 +134,6 @@ class PluginComponent: def clearPluginList(self): self.pluginList = [] self.plugins = {} - self.firstRun = True - self.restartRequired = False def shutdown(self): for p in self.pluginList[:]: