X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/58c1a7449b3a6456fdff33a1785517233718d7ca..56bd29b373d2de1a98ae7d41daa598e676a64088:/lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py diff --git a/lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py b/lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py index 45a8edb6..0c375129 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py +++ b/lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py @@ -8,6 +8,7 @@ from Components.Sources.Progress import Progress from Components.Task import Task, Job, job_manager, Condition from Components.ScrollLabel import ScrollLabel from Components.Harddisk import harddiskmanager +from Components.Console import Console class DVDToolbox(Screen): skin = """ @@ -26,9 +27,8 @@ class DVDToolbox(Screen): """ - def __init__(self, session, project = None): + def __init__(self, session): Screen.__init__(self, session) - self.project = project self["key_red"] = StaticText(_("Exit")) self["key_green"] = StaticText(_("Update")) @@ -43,9 +43,9 @@ class DVDToolbox(Screen): self["details"] = ScrollLabel() self["info"] = StaticText() - self["toolboxactions"] = ActionMap(["ColorActions", "DVDToolbox"], + self["toolboxactions"] = ActionMap(["ColorActions", "DVDToolbox", "OkCancelActions"], { - "red": self.close, + "red": self.exit, "green": self.update, "yellow": self.format, #"blue": self.eject, @@ -65,18 +65,28 @@ class DVDToolbox(Screen): self["space_label"].text = _("Please wait... Loading list...") self["info"].text = "" self["details"].setText("") - self.mediuminfo = [ ] - job = DVDinfoJob(self) - job_manager.AddJob(job) - - def infoJobCB(self): + self.Console = Console() + cmd = "/bin/dvd+rw-mediainfo /dev/" + harddiskmanager.getCD() + self.Console.ePopen(cmd, self.mediainfoCB) + + def format(self): + if self.formattable: + job = DVDformatJob(self) + job_manager.AddJob(job) + from Screens.TaskView import JobView + self.session.openWithCallback(self.formatCB, JobView, job) + + def formatCB(self, in_background): + self.update() + + def mediainfoCB(self, mediuminfo, retval, extra_args): capacity = 1 used = 0 infotext = "" mediatype = "" - for line in self.mediuminfo: + for line in mediuminfo.splitlines(): if line.find("Mounted Media:") > -1: - mediatype = line.rsplit(',',1)[1][1:-1] + mediatype = line.rsplit(',',1)[1][1:] if mediatype.find("RW") > 0: self.formattable = True else: @@ -101,10 +111,11 @@ class DVDToolbox(Screen): except: size = 0 if size > 0: - capacity = size - used = capacity-used + capacity = size / 1048576 + if used: + used = capacity-used print "[free blocks] capacity=%d, used=%d" % (capacity, used) - infotext += line + infotext += line+'\n' self["details"].setText(infotext) if self.formattable: self["key_yellow"].text = _("Format") @@ -128,12 +139,9 @@ class DVDToolbox(Screen): free = 0 self["info"].text = "Media-Type:\t\t%s\nFree capacity:\t\t%d MB" % (mediatype or "NO DVD", free) - def format(self): - if self.formattable: - job = DVDformatJob(self) - job_manager.AddJob(job) - from Screens.TaskView import JobView - self.session.openWithCallback(self.infoJobCB, JobView, job) + def exit(self): + del self.Console + self.close() class DVDformatJob(Job): def __init__(self, toolbox): @@ -164,7 +172,7 @@ class DVDformatTask(Task): self.toolbox = job.toolbox self.postconditions.append(DVDformatTaskPostcondition()) self.setTool("/bin/dvd+rw-format") - self.args += [ harddiskmanager.getCD() ] + self.args += [ "/dev/" + harddiskmanager.getCD() ] self.end = 1100 def prepare(self): @@ -184,39 +192,3 @@ class DVDformatTask(Task): self.progress = int(float(data[:-1])*10) else: Task.processOutput(self, data) - -class DVDinfoJob(Job): - def __init__(self, toolbox): - Job.__init__(self, "DVD media toolbox") - self.toolbox = toolbox - DVDinfoTask(self) - -class DVDinfoTaskPostcondition(Condition): - RECOVERABLE = True - def check(self, task): - return task.error is None - - def getErrorMessage(self, task): - return { - task.ERROR_UNKNOWN: _("An unknown error occured!") - }[task.error] - -class DVDinfoTask(Task): - ERROR_UNKNOWN = range(1) - def __init__(self, job, extra_args=[]): - Task.__init__(self, job, ("mediainfo")) - self.toolbox = job.toolbox - self.postconditions.append(DVDinfoTaskPostcondition()) - self.setTool("/bin/dvd+rw-mediainfo") - self.args += [ harddiskmanager.getCD() ] - - def prepare(self): - self.error = None - - def processOutputLine(self, line): - print "[DVDinfoTask]", line[:-1] - self.toolbox.mediuminfo.append(line) - - def processFinished(self, returncode): - Task.processFinished(self, returncode) - self.toolbox.infoJobCB()