1 from enigma import eServiceCenter, eServiceReference, pNavigation, getBestPlayableServiceReference, iPlayableService
2 from Components.ParentalControl import parentalControl
3 from Tools.BoundFunction import boundFunction
4 from Tools.DreamboxHardware import setFPWakeuptime, getFPWakeuptime, getFPWasTimerWakeup, clearFPWasTimerWakeup
9 import NavigationInstance
10 import ServiceReference
12 # TODO: remove pNavgation, eNavigation and rewrite this stuff in python.
14 def __init__(self, nextRecordTimerAfterEventActionAuto=False):
15 if NavigationInstance.instance is not None:
16 raise NavigationInstance.instance
18 NavigationInstance.instance = self
19 self.ServiceHandler = eServiceCenter.getInstance()
21 import Navigation as Nav
24 self.pnav = pNavigation()
25 self.pnav.m_event.get().append(self.dispatchEvent)
26 self.pnav.m_record_event.get().append(self.dispatchRecordEvent)
28 self.record_event = [ ]
29 self.currentlyPlayingServiceReference = None
30 self.currentlyPlayingService = None
31 self.RecordTimer = RecordTimer.RecordTimer()
32 if getFPWasTimerWakeup():
33 clearFPWasTimerWakeup()
34 if getFPWasTimerWakeup(): # sanity check to detect if the FP driver is working correct!
35 print "buggy fp driver detected!!! please update drivers.... ignore timer wakeup!"
36 elif nextRecordTimerAfterEventActionAuto and (len(self.getRecordings()) or abs(self.RecordTimer.getNextRecordingTime() - time()) <= 360):
37 if not Screens.Standby.inTryQuitMainloop: # not a shutdown messagebox is open
38 RecordTimer.RecordTimerEntry.TryQuitMainloop(False) # start shutdown handling
39 self.SleepTimer = SleepTimer.SleepTimer()
41 def dispatchEvent(self, i):
44 if i == iPlayableService.evEnd:
45 self.currentlyPlayingServiceReference = None
46 self.currentlyPlayingService = None
48 def dispatchRecordEvent(self, rec_service, event):
49 # print "record_event", rec_service, event
50 for x in self.record_event:
53 def playService(self, ref, checkParentalControl = True, forceRestart = False):
54 oldref = self.currentlyPlayingServiceReference
55 if ref and oldref and ref == oldref and not forceRestart:
56 print "ignore request to play already running service(1)"
58 print "playing", ref and ref.toString()
62 if not checkParentalControl or parentalControl.isServicePlayable(ref, boundFunction(self.playService, checkParentalControl = False)):
63 if ref.flags & eServiceReference.isGroup:
65 oldref = eServiceReference()
66 playref = getBestPlayableServiceReference(ref, oldref)
67 print "playref", playref
68 if playref and oldref and playref == oldref and not forceRestart:
69 print "ignore request to play already running service(2)"
71 if not playref or (checkParentalControl and not parentalControl.isServicePlayable(playref, boundFunction(self.playService, checkParentalControl = False))):
76 if self.pnav and not self.pnav.playService(playref):
77 self.currentlyPlayingServiceReference = playref
83 def getCurrentlyPlayingServiceReference(self):
84 return self.currentlyPlayingServiceReference
86 def recordService(self, ref, simulate=False):
88 print "recording service: %s" % (str(ref))
89 if isinstance(ref, ServiceReference.ServiceReference):
92 if ref.flags & eServiceReference.isGroup:
93 ref = getBestPlayableServiceReference(ref, eServiceReference(), simulate)
94 service = ref and self.pnav and self.pnav.recordService(ref, simulate)
96 print "record returned non-zero"
99 def stopRecordService(self, service):
100 ret = self.pnav and self.pnav.stopRecordService(service)
103 def getRecordings(self, simulate=False):
104 return self.pnav and self.pnav.getRecordings(simulate)
106 def getCurrentService(self):
107 if not self.currentlyPlayingService:
108 self.currentlyPlayingService = self.pnav and self.pnav.getCurrentService()
109 return self.currentlyPlayingService
111 def stopService(self):
114 self.pnav.stopService()
117 return self.pnav and self.pnav.pause(p)
120 self.RecordTimer.shutdown()
121 self.ServiceHandler = None
124 def stopUserServices(self):