make some diseqc / continuous tone / toneburst / rotor values (delays,
[enigma2.git] / timer.py
1 from bisect import insort
2 from time import strftime, time, localtime, gmtime, mktime
3 from calendar import timegm
4 from enigma import eTimer
5
6 class TimerEntry:
7         StateWaiting  = 0
8         StatePrepared = 1
9         StateRunning  = 2
10         StateEnded    = 3
11         
12         def __init__(self, begin, end):
13                 self.begin = begin
14                 self.prepare_time = 20
15                 self.end = end
16                 self.state = 0
17                 self.resetRepeated()
18                 self.backoff = 0
19                 
20                 self.disabled = False
21                 
22         def resetRepeated(self):
23                 self.repeated = int(0)
24
25         def setRepeated(self, day):
26                 self.repeated |= (2 ** day)
27                 print "Repeated: " + str(self.repeated)
28                 
29         def isRunning(self):
30                 return self.state == self.StateRunning
31                 
32         # update self.begin and self.end according to the self.repeated-flags
33         def processRepeated(self, findRunningEvent = True):
34                 print "ProcessRepeated"
35                 if (self.repeated != 0):
36                         now = int(time()) + 1
37
38                         #to avoid problems with daylight saving, we need to calculate with localtime, in struct_time representation
39                         localbegin = localtime(self.begin)
40                         localend = localtime(self.end)
41                         localnow = localtime(now)
42
43                         print strftime("%c", localbegin)
44                         print strftime("%c", localend)
45
46                         day = []
47                         flags = self.repeated
48                         for x in range(0, 7):
49                                 if (flags & 1 == 1):
50                                         day.append(0)
51                                         print "Day: " + str(x)
52                                 else:
53                                         day.append(1)
54                                 flags = flags >> 1
55
56                         print strftime("%c", localnow)
57
58                         while ((day[localbegin.tm_wday] != 0) or ((day[localbegin.tm_wday] == 0) and ((findRunningEvent and localend < localnow) or ((not findRunningEvent) and localbegin < localnow)))):
59                                 print "localbegin:", strftime("%c", localbegin)
60                                 print "localend:", strftime("%c", localend)
61                                 #add one day to the struct_time, we have to convert using gmt functions, because the daylight saving flag might change after we add our 86400 seconds
62                                 localbegin = gmtime(timegm(localbegin) + 86400)
63                                 localend = gmtime(timegm(localend) + 86400)
64
65                         #we now have a struct_time representation of begin and end in localtime, but we have to calculate back to (gmt) seconds since epoch
66                         self.begin = int(mktime(localbegin))
67                         self.end = int(mktime(localend)) + 1
68
69                         print "ProcessRepeated result"
70                         print strftime("%c", localtime(self.begin))
71                         print strftime("%c", localtime(self.end))
72
73                         self.timeChanged()
74
75         def __lt__(self, o):
76                 return self.getNextActivation() < o.getNextActivation()
77         
78         # must be overridden
79         def activate(self):
80                 pass
81                 
82         # can be overridden
83         def timeChanged(self):
84                 pass
85
86         # check if a timer entry must be skipped
87         def shouldSkip(self):
88                 return self.end <= time() and self.state == TimerEntry.StateWaiting
89
90         def abort(self):
91                 self.end = time()
92                 
93                 # in case timer has not yet started, but gets aborted (so it's preparing),
94                 # set begin to now.
95                 if self.begin > self.end:
96                         self.begin = self.end
97
98                 self.cancelled = True
99         
100         # must be overridden!
101         def getNextActivation():
102                 pass
103
104         def disable(self):
105                 self.disabled = True
106         
107         def enable(self):
108                 self.disabled = False
109
110 class Timer:
111         # the time between "polls". We do this because
112         # we want to account for time jumps etc.
113         # of course if they occur <100s before starting,
114         # it's not good. thus, you have to repoll when
115         # you change the time.
116         #
117         # this is just in case. We don't want the timer 
118         # hanging. we use this "edge-triggered-polling-scheme"
119         # anyway, so why don't make it a bit more fool-proof?
120         MaxWaitTime = 100
121
122         def __init__(self):
123                 self.timer_list = [ ]
124                 self.processed_timers = [ ]
125                 
126                 self.timer = eTimer()
127                 self.timer.timeout.get().append(self.calcNextActivation)
128                 self.lastActivation = time()
129                 
130                 self.calcNextActivation()
131                 self.on_state_change = [ ]
132
133         def stateChanged(self, entry):
134                 for f in self.on_state_change:
135                         f(entry)
136
137         def cleanup(self):
138                 self.processed_timers = [entry for entry in self.processed_timers if entry.disabled]
139         
140         def addTimerEntry(self, entry, noRecalc=0):
141                 entry.processRepeated()
142
143                 # when the timer has not yet started, and is already passed,
144                 # don't go trough waiting/running/end-states, but sort it
145                 # right into the processedTimers.
146                 if entry.shouldSkip() or entry.state == TimerEntry.StateEnded or (entry.state == TimerEntry.StateWaiting and entry.disabled):
147                         print "already passed, skipping"
148                         print "shouldSkip:", entry.shouldSkip()
149                         print "state == ended", entry.state == TimerEntry.StateEnded
150                         print "waiting && disabled:", (entry.state == TimerEntry.StateWaiting and entry.disabled)
151                         insort(self.processed_timers, entry)
152                         entry.state = TimerEntry.StateEnded
153                 else:
154                         insort(self.timer_list, entry)
155                         if not noRecalc:
156                                 self.calcNextActivation()
157         
158         def setNextActivation(self, when):
159                 delay = int((when - time()) * 1000)
160                 print "[timer.py] next activation: %d (in %d ms)" % (when, delay)
161                 
162                 self.timer.start(delay, 1)
163                 self.next = when
164
165         def calcNextActivation(self):
166                 if self.lastActivation > time():
167                         print "[timer.py] timewarp - re-evaluating all processed timers."
168                         tl = self.processed_timers
169                         self.processed_timers = [ ]
170                         for x in tl:
171                                 # simulate a "waiting" state to give them a chance to re-occure
172                                 x.resetState()
173                                 self.addTimerEntry(x, noRecalc=1)
174                 
175                 self.processActivation()
176                 self.lastActivation = time()
177         
178                 min = int(time()) + self.MaxWaitTime
179                 
180                 # calculate next activation point
181                 if len(self.timer_list):
182                         w = self.timer_list[0].getNextActivation()
183                         if w < min:
184                                 min = w
185                 
186                 self.setNextActivation(min)
187         
188         def timeChanged(self, timer):
189                 print "time changed"
190                 timer.timeChanged()
191                 if timer.state == TimerEntry.StateEnded:
192                         self.processed_timers.remove(timer)
193                 else:
194                         self.timer_list.remove(timer)
195
196                 # give the timer a chance to re-enqueue
197                 if timer.state == TimerEntry.StateEnded:
198                         timer.state = TimerEntry.StateWaiting
199                 self.addTimerEntry(timer)
200         
201         def doActivate(self, w):
202                 self.timer_list.remove(w)
203                 
204                 # when activating a timer which has already passed,
205                 # simply abort the timer. don't run trough all the stages.
206                 if w.shouldSkip():
207                         w.state = TimerEntry.StateEnded
208                 else:
209                         # when active returns true, this means "accepted".
210                         # otherwise, the current state is kept.
211                         # the timer entry itself will fix up the delay then.
212                         if w.activate():
213                                 w.state += 1
214
215                 # did this timer reached the last state?
216                 if w.state < TimerEntry.StateEnded:
217                         # no, sort it into active list
218                         insort(self.timer_list, w)
219                 else:
220                         # yes. Process repeated, and re-add.
221                         if w.repeated:
222                                 w.processRepeated()
223                                 w.state = TimerEntry.StateWaiting
224                                 self.addTimerEntry(w)
225                         else:
226                                 insort(self.processed_timers, w)
227                 
228                 self.stateChanged(w)
229
230         def processActivation(self):
231                 print "It's now ", strftime("%c", localtime(time()))
232                 t = int(time()) + 1
233                 
234                 # we keep on processing the first entry until it goes into the future.
235                 while len(self.timer_list) and self.timer_list[0].getNextActivation() < t:
236                         self.doActivate(self.timer_list[0])