1 from Components.ActionMap import ActionMap
2 from Components.Button import Button
3 from Components.config import config
4 from Components.MenuList import MenuList
5 from Components.TimerList import TimerList
6 from Components.TimerSanityCheck import TimerSanityCheck
7 from RecordTimer import RecordTimerEntry, parseEvent, AFTEREVENT
8 from Screen import Screen
9 from Screens.ChoiceBox import ChoiceBox
10 from Screens.MessageBox import MessageBox
11 from ServiceReference import ServiceReference
12 from TimerEntry import TimerEntry, TimerLog
13 from Tools.BoundFunction import boundFunction
16 class TimerEditList(Screen):
23 def __init__(self, session):
24 Screen.__init__(self, session)
30 print "EMPTY:",self.EMPTY
31 print "ENABLE:",self.ENABLE
32 print "DISABLE:",self.DISABLE
33 print "CLEANUP:",self.CLEANUP
34 print "DELETE:",self.DELETE
36 self["timerlist"] = TimerList(list)
38 self.key_red_choice = self.EMPTY
39 self.key_yellow_choice = self.EMPTY
40 self.key_blue_choice = self.EMPTY
42 self["key_red"] = Button(" ")
43 self["key_green"] = Button(_("Add"))
44 self["key_yellow"] = Button(" ")
45 self["key_blue"] = Button(" ")
47 print "key_red_choice:",self.key_red_choice
49 self["actions"] = ActionMap(["OkCancelActions", "DirectionActions", "ShortcutActions", "TimerEditActions"],
53 "green": self.addCurrentTimer,
60 self.session.nav.RecordTimer.on_state_change.append(self.onStateChange)
61 self.onShown.append(self.updateState)
64 self["timerlist"].instance.moveSelection(self["timerlist"].instance.moveUp)
68 self["timerlist"].instance.moveSelection(self["timerlist"].instance.moveDown)
72 self["timerlist"].instance.moveSelection(self["timerlist"].instance.pageUp)
76 self["timerlist"].instance.moveSelection(self["timerlist"].instance.pageDown)
79 def toggleDisabledState(self):
80 cur=self["timerlist"].getCurrent()
84 print "try to ENABLE timer"
86 timersanitycheck = TimerSanityCheck(self.session.nav.RecordTimer.timer_list, cur)
87 if not timersanitycheck.check():
89 print "Sanity check failed"
90 self.session.openWithCallback(self.finishedEdit, TimerSanityConflict, timersanitycheck.getSimulTimerList())
92 print "Sanity check passed"
93 if timersanitycheck.doubleCheck():
99 (_("Stop current event but not coming events"), "stoponlycurrent"),
100 (_("Stop current event and disable coming events"), "stopall"),
101 (_("Don't stop current event but disable coming events"), "stoponlycoming")
103 self.session.openWithCallback(boundFunction(self.runningEventCallback, t), ChoiceBox, title=_("Repeating event currently recording... What do you want to do?"), list = list)
106 self.session.nav.RecordTimer.timeChanged(t)
110 def runningEventCallback(self, t, result):
111 if result is not None:
112 if result[1] == "stoponlycurrent" or result[1] == "stopall":
114 t.processRepeated(findRunningEvent = False)
115 self.session.nav.RecordTimer.doActivate(t)
116 if result[1] == "stoponlycoming" or result[1] == "stopall":
118 self.session.nav.RecordTimer.timeChanged(t)
122 def removeAction(self, descr):
123 actions = self["actions"].actions
127 def updateState(self):
128 cur = self["timerlist"].getCurrent()
130 if self.key_red_choice != self.DELETE:
131 self["actions"].actions.update({"red":self.removeTimerQuestion})
132 self["key_red"].setText(_("Delete"))
133 self.key_red_choice = self.DELETE
135 if cur.disabled and (self.key_yellow_choice != self.ENABLE):
136 self["actions"].actions.update({"yellow":self.toggleDisabledState})
137 self["key_yellow"].setText(_("Enable"))
138 self.key_yellow_choice = self.ENABLE
139 elif cur.isRunning() and not cur.repeated and (self.key_yellow_choice != self.EMPTY):
140 self.removeAction("yellow")
141 self["key_yellow"].setText(" ")
142 self.key_yellow_choice = self.EMPTY
143 elif ((not cur.isRunning())or cur.repeated ) and (not cur.disabled) and (self.key_yellow_choice != self.DISABLE):
144 self["actions"].actions.update({"yellow":self.toggleDisabledState})
145 self["key_yellow"].setText(_("Disable"))
146 self.key_yellow_choice = self.DISABLE
148 if self.key_red_choice != self.EMPTY:
149 self.removeAction("red")
150 self["key_red"].setText(" ")
151 self.key_red_choice = self.EMPTY
152 if self.key_yellow_choice != self.EMPTY:
153 self.removeAction("yellow")
154 self["key_yellow"].setText(" ")
155 self.key_yellow_choice = self.EMPTY
159 if (not x[0].disabled) and (x[1] == True):
164 if showCleanup and (self.key_blue_choice != self.CLEANUP):
165 self["actions"].actions.update({"blue":self.cleanupQuestion})
166 self["key_blue"].setText(_("Cleanup"))
167 self.key_blue_choice = self.CLEANUP
168 elif (not showCleanup) and (self.key_blue_choice != self.EMPTY):
169 self.removeAction("blue")
170 self["key_blue"].setText(" ")
171 self.key_blue_choice = self.EMPTY
173 def fillTimerList(self):
176 list.extend([(timer, False) for timer in self.session.nav.RecordTimer.timer_list])
177 list.extend([(timer, True) for timer in self.session.nav.RecordTimer.processed_timers])
178 list.sort(cmp = lambda x, y: x[0].begin < y[0].begin)
181 cur=self["timerlist"].getCurrent()
183 self.session.openWithCallback(self.finishedEdit, TimerLog, cur)
186 cur=self["timerlist"].getCurrent()
188 self.session.openWithCallback(self.finishedEdit, TimerEntry, cur)
190 def cleanupQuestion(self):
191 self.session.openWithCallback(self.cleanupTimer, MessageBox, _("Really delete done timers?"))
193 def cleanupTimer(self, delete):
195 self.session.nav.RecordTimer.cleanup()
199 def removeTimerQuestion(self):
200 cur = self["timerlist"].getCurrent()
204 self.session.openWithCallback(self.removeTimer, MessageBox, _("Do you really want to delete %s?") % (cur.name))
206 def removeTimer(self, result):
209 list = self["timerlist"]
210 cur = list.getCurrent()
213 timer.afterEvent = AFTEREVENT.NONE
214 self.session.nav.RecordTimer.removeEntry(timer)
220 oldsize = len(self.list)
222 lst = self["timerlist"]
223 newsize = len(self.list)
224 if oldsize and oldsize != newsize:
225 idx = lst.getCurrentIndex()
226 lst.entryRemoved(idx)
230 def addCurrentTimer(self):
232 service = self.session.nav.getCurrentService()
233 if service is not None:
234 info = service.info()
236 event = info.getEvent(0)
238 # FIXME only works if already playing a service
239 serviceref = ServiceReference(self.session.nav.getCurrentlyPlayingServiceReference())
242 data = (int(time()), int(time() + 60), "", "", None)
244 data = parseEvent(event, description = False)
246 self.addTimer(RecordTimerEntry(serviceref, checkOldTimers = True, dirname = config.movielist.last_timer_videodir.value, *data))
248 def addTimer(self, timer):
249 self.session.openWithCallback(self.finishedAdd, TimerEntry, timer)
252 def finishedEdit(self, answer):
253 print "finished edit"
258 timersanitycheck = TimerSanityCheck(self.session.nav.RecordTimer.timer_list, entry)
260 if not timersanitycheck.check():
261 simulTimerList = timersanitycheck.getSimulTimerList()
262 if simulTimerList is not None:
263 for x in simulTimerList:
264 if x.setAutoincreaseEnd(entry):
265 self.session.nav.RecordTimer.timeChanged(x)
266 if not timersanitycheck.check():
267 simulTimerList = timersanitycheck.getSimulTimerList()
268 if simulTimerList is not None:
269 self.session.openWithCallback(self.finishedEdit, TimerSanityConflict, timersanitycheck.getSimulTimerList())
275 print "Sanity check passed"
276 self.session.nav.RecordTimer.timeChanged(entry)
281 print "Timeredit aborted"
283 def finishedAdd(self, answer):
287 simulTimerList = self.session.nav.RecordTimer.record(entry)
288 if simulTimerList is not None:
289 for x in simulTimerList:
290 if x.setAutoincreaseEnd(entry):
291 self.session.nav.RecordTimer.timeChanged(x)
292 simulTimerList = self.session.nav.RecordTimer.record(entry)
293 if simulTimerList is not None:
294 self.session.openWithCallback(self.finishSanityCorrection, TimerSanityConflict, simulTimerList)
298 print "Timeredit aborted"
300 def finishSanityCorrection(self, answer):
301 self.finishedAdd(answer)
304 self.session.nav.RecordTimer.on_state_change.remove(self.onStateChange)
307 def onStateChange(self, entry):
311 class TimerSanityConflict(Screen):
317 def __init__(self, session, timer):
318 Screen.__init__(self, session)
320 print "TimerSanityConflict"
322 self["timer1"] = TimerList(self.getTimerList(timer[0]))
328 self.list.append((_("Conflicting timer") + " " + str(count), x))
329 self.list2.append((timer[count], False))
332 self.list.append((_("Channel not in services list")))
334 self["list"] = MenuList(self.list)
335 self["timer2"] = TimerList(self.list2)
337 self["key_red"] = Button("Edit")
338 self["key_green"] = Button(" ")
339 self["key_yellow"] = Button(" ")
340 self["key_blue"] = Button(" ")
342 self.key_green_choice = self.EMPTY
343 self.key_yellow_choice = self.EMPTY
344 self.key_blue_choice = self.EMPTY
346 self["actions"] = ActionMap(["OkCancelActions", "DirectionActions", "ShortcutActions", "TimerEditActions"],
349 "cancel": self.leave_cancel,
350 "red": self.editTimer1,
354 self.onShown.append(self.updateState)
356 def getTimerList(self, timer):
357 return [(timer, False)]
359 def editTimer1(self):
360 self.session.openWithCallback(self.finishedEdit, TimerEntry, self["timer1"].getCurrent())
362 def toggleTimer1(self):
363 if self.timer[0].disabled:
364 self.timer[0].disabled = False
366 if not self.timer[0].isRunning():
367 self.timer[0].disabled = True
368 self.finishedEdit((True, self.timer[0]))
370 def editTimer2(self):
371 self.session.openWithCallback(self.finishedEdit, TimerEntry, self["timer2"].getCurrent())
373 def toggleTimer2(self):
374 x = self["list"].getSelectedIndex() + 1 # the first is the new timer so we do +1 here
375 if self.timer[x].disabled:
376 self.timer[x].disabled = False
377 elif not self.timer[x].isRunning():
378 self.timer[x].disabled = True
379 self.finishedEdit((True, self.timer[0]))
381 def finishedEdit(self, answer):
385 self.close((True, self.timer[0]))
387 def leave_cancel(self):
388 self.close((False, self.timer[0]))
391 self["list"].instance.moveSelection(self["list"].instance.moveUp)
392 self["timer2"].moveToIndex(self["list"].getSelectedIndex())
395 self["list"].instance.moveSelection(self["list"].instance.moveDown)
396 self["timer2"].moveToIndex(self["list"].getSelectedIndex())
398 def removeAction(self, descr):
399 actions = self["actions"].actions
403 def updateState(self):
404 if self.timer[0] is not None:
405 if self.timer[0].disabled and self.key_green_choice != self.ENABLE:
406 self["actions"].actions.update({"green":self.toggleTimer1})
407 self["key_green"].setText(_("Enable"))
408 self.key_green_choice = self.ENABLE
409 elif self.timer[0].isRunning() and not self.timer[0].repeated and self.key_green_choice != self.EMPTY:
410 self.removeAction("green")
411 self["key_green"].setText(" ")
412 self.key_green_choice = self.EMPTY
413 elif (not self.timer[0].isRunning() or self.timer[0].repeated ) and self.key_green_choice != self.DISABLE:
414 self["actions"].actions.update({"green":self.toggleTimer1})
415 self["key_green"].setText(_("Disable"))
416 self.key_green_choice = self.DISABLE
418 if len(self.timer) > 1:
419 x = self["list"].getSelectedIndex()
420 if self.timer[x] is not None:
421 if self.key_yellow_choice == self.EMPTY:
422 self["actions"].actions.update({"yellow":self.editTimer2})
423 self["key_yellow"].setText(_("Edit"))
424 self.key_yellow_choice = self.EDIT
425 if self.timer[x].disabled and self.key_blue_choice != self.ENABLE:
426 self["actions"].actions.update({"blue":self.toggleTimer2})
427 self["key_blue"].setText(_("Enable"))
428 self.key_blue_choice = self.ENABLE
429 elif self.timer[x].isRunning() and not self.timer[x].repeated and self.key_blue_choice != self.EMPTY:
430 self.removeAction("blue")
431 self["key_blue"].setText(" ")
432 self.key_blue_choice = self.EMPTY
433 elif (not self.timer[x].isRunning() or self.timer[x].repeated ) and self.key_blue_choice != self.DISABLE:
434 self["actions"].actions.update({"blue":self.toggleTimer2})
435 self["key_blue"].setText(_("Disable"))
436 self.key_blue_choice = self.DISABLE
438 #FIXME.... this doesnt hide the buttons self.... just the text
439 if self.key_yellow_choice != self.EMPTY:
440 self.removeAction("yellow")
441 self["key_yellow"].setText(" ")
442 self.key_yellow_choice = self.EMPTY
443 if self.key_blue_choice != self.EMPTY:
444 self.removeAction("blue")
445 self["key_blue"].setText(" ")
446 self.key_blue_choice = self.EMPTY