From 54aa4eba0f97cfb1aa4d2c23cda7271520d14f5d Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Thu, 12 Jan 2006 01:00:53 +0000 Subject: add ipkg list to the update plugin --- lib/python/Plugins/update/plugin.py | 129 +++++++++++++++++++++++++++++++++--- 1 file changed, 121 insertions(+), 8 deletions(-) (limited to 'lib/python') diff --git a/lib/python/Plugins/update/plugin.py b/lib/python/Plugins/update/plugin.py index 7942821c..90846f04 100644 --- a/lib/python/Plugins/update/plugin.py +++ b/lib/python/Plugins/update/plugin.py @@ -3,17 +3,18 @@ from Screens.Screen import Screen from Screens.MessageBox import MessageBox from Components.ActionMap import ActionMap from Components.Label import Label +from Components.GUIComponent import * import os -class Example(Screen): +class Upgrade(Screen): skin = """ """ def __init__(self, session, args = None): - self.skin = Example.skin + self.skin = Upgrade.skin Screen.__init__(self, session) self["text"] = Label(_("Please press OK!")) @@ -48,21 +49,133 @@ class Example(Screen): self["text"].setText(_("Updating... Please wait... This can take some minutes...")) self.delayTimer.start(0, 1) else: - self.close() + self.close() + +RT_HALIGN_LEFT = 0 +RT_HALIGN_RIGHT = 1 +RT_HALIGN_CENTER = 2 +RT_HALIGN_BLOCK = 4 + +RT_VALIGN_TOP = 0 +RT_VALIGN_CENTER = 8 +RT_VALIGN_BOTTOM = 16 + +def PacketEntryComponent(packet): + res = [ packet ] + + res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 0,250, 30, 0, RT_HALIGN_LEFT|RT_VALIGN_CENTER, packet[0])) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 250, 0, 200, 30, 1, RT_HALIGN_LEFT|RT_VALIGN_CENTER, packet[1])) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 450, 0, 100, 30, 1, RT_HALIGN_LEFT|RT_VALIGN_CENTER, packet[2])) + return res + +class PacketList(GUIComponent): + def __init__(self, list): + GUIComponent.__init__(self) + self.l = eListboxPythonMultiContent() + self.l.setList(list) + self.l.setFont(0, gFont("Regular", 20)) + self.l.setFont(1, gFont("Regular", 18)) + + def getCurrent(self): + return self.l.getCurrentSelection() + + def GUIcreate(self, parent): + self.instance = eListbox(parent) + self.instance.setContent(self.l) + self.instance.setItemHeight(30) + + def GUIdelete(self): + self.instance.setContent(None) + self.instance = None + + def invalidate(self): + self.l.invalidate() + +class Ipkg(Screen): + skin = """ + + + """ + + def __init__(self, session, args = None): + self.skin = Ipkg.skin + Screen.__init__(self, session) + + list = [] + self.list = list + self.fillPacketList() + + self["list"] = PacketList(self.list) + + self["actions"] = ActionMap(["WizardActions"], + { + "ok": self.close, + "back": self.close + }, -1) + + + def fillPacketList(self): + lines = os.popen("ipkg list", "r").readlines() + packetlist = [] + for x in lines: + split = x.split(' - ') + packetlist.append([split[0].strip(), split[1].strip()]) + + lines = os.popen("ipkg list_installed", "r").readlines() -#def autostart(): - #print "**************************** AUTOSTART" + installedlist = {} + for x in lines: + split = x.split(' - ') + installedlist[split[0].strip()] = split[1].strip() + + for x in packetlist: + status = "" + if installedlist.has_key(x[0]): + if installedlist[x[0]] == x[1]: + status = "installed" + else: + status = "upgradable" + self.list.append(PacketEntryComponent([x[0], x[1], status])) + + def go(self): + if self.update: + self.session.openWithCallback(self.doUpdate, MessageBox, _("Do you want to update your Dreambox?\nAfter pressing OK, please wait!")) + else: + self.close() + + def doUpdateDelay(self): + lines = os.popen("ipkg update && ipkg upgrade", "r").readlines() + string = "" + for x in lines: + string += x + self["text"].setText(_("Updating finished. Here is the result:") + "\n\n" + string) + self.update = False + + + def doUpdate(self, val = False): + if val == True: + self["text"].setText(_("Updating... Please wait... This can take some minutes...")) + self.delayTimer.start(0, 1) + else: + self.close() + + + +def autostart(): + return + os.popen("ipkg update", "r") # #def autoend(): #print "**************************** AUTOEND" def getPicturePaths(): - return ["update.png"] + return ["update.png", "update.png"] def getPlugins(): - return [("Softwareupdate", "Updates your receiver's software", "screen", "Example")] + return [("Softwareupdate", "Updates your receiver's software", "screen", "Upgrade"), + ("IPKG", "Updates your receiver's software", "screen", "Ipkg")] def getMenuRegistrationList(): list = [] - list.append(("setup", 2, "Softwareupdate", "Example")) + list.append(("setup", 2, "Softwareupdate", "Upgrade")) return list \ No newline at end of file -- cgit v1.2.3