fix off-by-one error on the progress and fix vars in ToolExistsPrecondition
[enigma2.git] / lib / python / Components / Task.py
index fe81005b5dae1b5565701aa2c45ab2e5694d36b7..07b9d3f5db8383fb32504b7450d2678c46f663e2 100644 (file)
@@ -3,14 +3,18 @@
 
 from Tools.CList import CList
 
 
 from Tools.CList import CList
 
-class Job:
+class Job(object):
        NOT_STARTED, IN_PROGRESS, FINISHED, FAILED = range(4)
        def __init__(self, name):
                self.tasks = [ ]
        NOT_STARTED, IN_PROGRESS, FINISHED, FAILED = range(4)
        def __init__(self, name):
                self.tasks = [ ]
+               self.workspace = "/tmp"
                self.current_task = 0
                self.callback = None
                self.name = name
                self.finished = False
                self.current_task = 0
                self.callback = None
                self.name = name
                self.finished = False
+               self.end = 100
+               self.__progress = 0
+               self.weightScale = 1
 
                self.state_changed = CList()
 
 
                self.state_changed = CList()
 
@@ -23,47 +27,87 @@ class Job:
        def createDescription(self):
                return None
 
        def createDescription(self):
                return None
 
+       def getProgress(self):
+               if self.current_task == len(self.tasks):
+                       return self.end
+               t = self.tasks[self.current_task]
+               jobprogress = t.weighting * t.progress / float(t.end) + sum([task.weighting for task in self.tasks[:self.current_task]])
+               return int(jobprogress*self.weightScale)
+
+       progress = property(getProgress)
+
+       def task_progress_changed_CB(self):
+               self.state_changed()
+
        def addTask(self, task):
        def addTask(self, task):
+               task.job = self
                self.tasks.append(task)
 
        def start(self, callback):
                assert self.callback is None
                self.callback = callback
                self.tasks.append(task)
 
        def start(self, callback):
                assert self.callback is None
                self.callback = callback
+               self.restart()
+
+       def restart(self):
                self.status = self.IN_PROGRESS
                self.state_changed()
                self.runNext()
                self.status = self.IN_PROGRESS
                self.state_changed()
                self.runNext()
+               sumTaskWeightings = sum([t.weighting for t in self.tasks])
+               self.weightScale = self.end / float(sumTaskWeightings)
 
        def runNext(self):
                if self.current_task == len(self.tasks):
 
        def runNext(self):
                if self.current_task == len(self.tasks):
-                       self.callback(self, [])
+                       cb = self.callback
+                       self.callback = None
                        self.status = self.FINISHED
                        self.state_changed()
                        self.status = self.FINISHED
                        self.state_changed()
+                       cb(self, None, [])
                else:
                else:
-                       self.tasks[self.current_task].run(self.taskCallback)
+                       self.tasks[self.current_task].run(self.taskCallback, self.task_progress_changed_CB)
                        self.state_changed()
 
                        self.state_changed()
 
-       def taskCallback(self, res):
+       def taskCallback(self, task, res):
                if len(res):
                        print ">>> Error:", res
                        self.status = self.FAILED
                        self.state_changed()
                if len(res):
                        print ">>> Error:", res
                        self.status = self.FAILED
                        self.state_changed()
-                       self.callback(self, res)
+                       self.callback(self, task, res)
                else:
                else:
+                       self.state_changed();
                        self.current_task += 1
                        self.runNext()
 
                        self.current_task += 1
                        self.runNext()
 
-class Task:
-       def __init__(self, name):
+       def retry(self):
+               assert self.status == self.FAILED
+               self.restart()
+
+       def abort(self):
+               if self.current_task < len(self.tasks):
+                       self.tasks[self.current_task].abort()
+
+       def cancel(self):
+               # some Jobs might have a better idea of how to cancel a job
+               self.abort()
+
+class Task(object):
+       def __init__(self, job, name):
                self.name = name
                self.name = name
-               self.workspace = "/tmp"
                self.immediate_preconditions = [ ]
                self.global_preconditions = [ ]
                self.postconditions = [ ]
                self.returncode = None
                self.initial_input = None
                self.immediate_preconditions = [ ]
                self.global_preconditions = [ ]
                self.postconditions = [ ]
                self.returncode = None
                self.initial_input = None
+               self.job = None
 
 
+               self.end = 100
+               self.weighting = 100
+               self.__progress = 0
                self.cmd = None
                self.cmd = None
+               self.cwd = "/tmp"
                self.args = [ ]
                self.args = [ ]
+               self.task_progress_changed = None
+               self.output_line = ""
+               job.addTask(self)
 
        def setCommandline(self, cmd, args):
                self.cmd = cmd
 
        def setCommandline(self, cmd, args):
                self.cmd = cmd
@@ -86,13 +130,15 @@ class Task:
                                not_met.append(precondition)
                return not_met
 
                                not_met.append(precondition)
                return not_met
 
-       def run(self, callback):
-               failed_preconditions = self.checkPreconditions(True)
+       def run(self, callback, task_progress_changed):
+               failed_preconditions = self.checkPreconditions(True) + self.checkPreconditions(False)
                if len(failed_preconditions):
                if len(failed_preconditions):
-                       errback(failed_preconditions)
+                       callback(self, failed_preconditions)
                        return
                        return
+               self.prepare()
 
                self.callback = callback
 
                self.callback = callback
+               self.task_progress_changed = task_progress_changed
                from enigma import eConsoleAppContainer
                self.container = eConsoleAppContainer()
                self.container.appClosed.get().append(self.processFinished)
                from enigma import eConsoleAppContainer
                self.container = eConsoleAppContainer()
                self.container.appClosed.get().append(self.processFinished)
@@ -101,6 +147,9 @@ class Task:
                assert self.cmd is not None
                assert len(self.args) >= 1
 
                assert self.cmd is not None
                assert len(self.args) >= 1
 
+               if self.cwd is not None:
+                       self.container.setCWD(self.cwd)
+
                print "execute:", self.container.execute(self.cmd, self.args), self.cmd, self.args
                if self.initial_input:
                        self.writeInput(self.initial_input)
                print "execute:", self.container.execute(self.cmd, self.args), self.cmd, self.args
                if self.initial_input:
                        self.writeInput(self.initial_input)
@@ -112,20 +161,37 @@ class Task:
                pass
 
        def processOutput(self, data):
                pass
 
        def processOutput(self, data):
+               self.output_line += data
+               while True:
+                       i = self.output_line.find('\n')
+                       if i == -1:
+                               break
+                       self.processOutputLine(self.output_line[:i+1])
+                       self.output_line = self.output_line[i+1:]
+
+       def processOutputLine(self, line):
                pass
 
        def processFinished(self, returncode):
                self.returncode = returncode
                self.finish()
 
                pass
 
        def processFinished(self, returncode):
                self.returncode = returncode
                self.finish()
 
-       def finish(self):
+       def abort(self):
+               self.container.kill()
+               self.finish(aborted = True)
+
+       def finish(self, aborted = False):
                self.afterRun()
                not_met = [ ]
                self.afterRun()
                not_met = [ ]
-               for postcondition in self.postconditions:
-                       if not postcondition.check(self):
-                               not_met.append(postcondition)
+               if aborted:
+                       not_met.append(AbortedPostcondition())
+               else:
+                       for postcondition in self.postconditions:
+                               if not postcondition.check(self):
+                                       not_met.append(postcondition)
 
 
-               self.callback(not_met)
+               self.cleanup(not_met)
+               self.callback(self, not_met)
 
        def afterRun(self):
                pass
 
        def afterRun(self):
                pass
@@ -133,6 +199,23 @@ class Task:
        def writeInput(self, input):
                self.container.write(input)
 
        def writeInput(self, input):
                self.container.write(input)
 
+       def getProgress(self):
+               return self.__progress
+
+       def setProgress(self, progress):
+               if progress > self.end:
+                       progress = self.end
+               if progress < 0:
+                       progress = 0
+               print "progress now", progress
+               self.__progress = progress
+               self.task_progress_changed()
+
+       progress = property(getProgress, setProgress)
+
+# The jobmanager will execute multiple jobs, each after another.
+# later, it will also support suspending jobs (and continuing them after reboot etc)
+# It also supports a notification when some error occured, and possibly a retry.
 class JobManager:
        def __init__(self):
                self.active_jobs = [ ]
 class JobManager:
        def __init__(self):
                self.active_jobs = [ ]
@@ -150,14 +233,28 @@ class JobManager:
                                self.active_job = self.active_jobs.pop(0)
                                self.active_job.start(self.jobDone)
 
                                self.active_job = self.active_jobs.pop(0)
                                self.active_job.start(self.jobDone)
 
-       def jobDone(self, job, problems):
-               print "job", job, "completed with", problems
+       def jobDone(self, job, task, problems):
+               print "job", job, "completed with", problems, "in", task
                if problems:
                if problems:
-                       self.failed_jobs.append(self.active_job)
+                       from Tools import Notifications
+                       from Screens.MessageBox import MessageBox
+                       Notifications.AddNotificationWithCallback(self.errorCB, MessageBox, _("Error: %s\nRetry?") % (problems[0].getErrorMessage(task)))
+                       return
+                       #self.failed_jobs.append(self.active_job)
 
                self.active_job = None
                self.kick()
 
 
                self.active_job = None
                self.kick()
 
+       def errorCB(self, answer):
+               if answer:
+                       print "retrying job"
+                       self.active_job.retry()
+               else:
+                       print "not retrying job."
+                       self.failed_jobs.append(self.active_job)
+                       self.active_job = None
+                       self.kick()
+
 # some examples:
 #class PartitionExistsPostcondition:
 #      def __init__(self, device):
 # some examples:
 #class PartitionExistsPostcondition:
 #      def __init__(self, device):
@@ -192,20 +289,51 @@ class JobManager:
 #              if filesystem is not None:
 #                      self.args += ["-t", filesystem]
 #              self.args.append(device + "part%d" % partition)
 #              if filesystem is not None:
 #                      self.args += ["-t", filesystem]
 #              self.args.append(device + "part%d" % partition)
-#
-#class DiskspacePrecondition:
-#      def __init__(self, diskspace_required):
-#              self.diskspace_required = diskspace_required
-#
-#      def check(self, task):
-#              return getFreeDiskspace(task.workspace) >= self.diskspace_required
-#
-class ToolExistsPrecondition:
+
+class Condition:
+       RECOVERABLE = False
+
+       def getErrorMessage(self, task):
+               return _("An error has occured. (%s)") % (self.__class__.__name__)
+
+class WorkspaceExistsPrecondition(Condition):
+       def check(self, task):
+               return os.access(task.job.workspace, os.W_OK)
+
+class DiskspacePrecondition(Condition):
+       def __init__(self, diskspace_required):
+               self.diskspace_required = diskspace_required
+               self.diskspace_available = None
+
+       def check(self, task):
+               import os
+               try:
+                       s = os.statvfs(task.job.workspace)
+                       self.diskspace_available = s.f_bsize * s.f_bavail 
+                       return self.diskspace_available >= self.diskspace_required
+               except OSError:
+                       return False
+
+       def getErrorMessage(self, task):
+               return _("Not enough diskspace. Please free up some diskspace and try again. (%d MB required, %d MB available)") % (self.diskspace_required / 1024 / 1024, self.diskspace_available / 1024 / 1024)
+
+class ToolExistsPrecondition(Condition):
        def check(self, task):
                import os
        def check(self, task):
                import os
-               return os.access(task.cmd, os.X_OK)
+               if task.cmd[0]=='/':
+                       realpath = task.cmd
+               else:
+                       realpath = task.cwd + '/' + task.cmd
+               self.realpath = realpath
+               return os.access(realpath, os.X_OK)
+
+       def getErrorMessage(self, task):
+               return _("A required tool (%s) was not found.") % (self.realpath)
+
+class AbortedPostcondition(Condition):
+       pass
 
 
-class ReturncodePostcondition:
+class ReturncodePostcondition(Condition):
        def check(self, task):
                return task.returncode == 0
 
        def check(self, task):
                return task.returncode == 0