1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
from Screen import Screen
import ChannelSelection
from ServiceReference import ServiceReference
from Components.config import *
from Components.ActionMap import ActionMap, NumberActionMap
from Components.ConfigList import ConfigList
from Components.MenuList import MenuList
from Components.Button import Button
from Components.NimManager import nimmanager
from Components.Label import Label
from Components.Pixmap import Pixmap
from Screens.SubserviceSelection import SubserviceSelection
from Screens.MessageBox import MessageBox
from enigma import eEPGCache
import time
import datetime
class TimerEntry(Screen):
def __init__(self, session, timer):
Screen.__init__(self, session)
self.timer = timer
self["oktext"] = Label(_("OK"))
self["canceltext"] = Label(_("Cancel"))
self["ok"] = Pixmap()
self["cancel"] = Pixmap()
self.createConfig()
self["actions"] = NumberActionMap(["SetupActions", "TextEntryActions"],
{
"ok": self.keySelect,
"save": self.keyGo,
"cancel": self.keyCancel,
"left": self.keyLeft,
"right": self.keyRight,
"delete": self.keyDelete,
"1": self.keyNumberGlobal,
"2": self.keyNumberGlobal,
"3": self.keyNumberGlobal,
"4": self.keyNumberGlobal,
"5": self.keyNumberGlobal,
"6": self.keyNumberGlobal,
"7": self.keyNumberGlobal,
"8": self.keyNumberGlobal,
"9": self.keyNumberGlobal,
"0": self.keyNumberGlobal
}, -1)
self.list = []
self["config"] = ConfigList(self.list)
self.createSetup("config")
def createConfig(self):
config.timerentry = ConfigSubsection()
if (self.timer.justplay):
justplay = 0
else:
justplay = 1
# calculate default values
day = []
weekday = 0
for x in range(0,7):
day.append(1)
if (self.timer.repeated != 0): # repeated
type = 1 # repeated
if (self.timer.repeated == 31): # Mon-Fri
repeated = 2 # Mon - Fri
elif (self.timer.repeated == 127): # daily
repeated = 0 # daily
else:
flags = self.timer.repeated
repeated = 3 # user defined
count = 0
for x in range(0, 7):
if (flags == 1): # weekly
print "Set to weekday " + str(x)
weekday = x
if (flags & 1 == 1): # set user defined flags
day[x] = 0
count += 1
else:
day[x] = 1
flags = flags >> 1
if (count == 1):
repeated = 1 # weekly
else: # once
type = 0
repeated = 0
weekday = (int(strftime("%w", time.localtime(self.timer.begin))) - 1) % 7
day[weekday] = 0
config.timerentry.justplay = configElement_nonSave("config.timerentry.justplay", configSelection, justplay, (("zap", _("zap")), ("record", _("record"))))
config.timerentry.type = configElement_nonSave("config.timerentry.type", configSelection, type, (_("once"), _("repeated")))
config.timerentry.name = configElement_nonSave("config.timerentry.name", configText, self.timer.name, (configText.extendableSize, self.keyRightCallback))
config.timerentry.description = configElement_nonSave("config.timerentry.description", configText, self.timer.description, (configText.extendableSize, self.keyRightCallback))
config.timerentry.repeated = configElement_nonSave("config.timerentry.repeated", configSelection, repeated, (_("daily"), _("weekly"), _("Mon-Fri"), _("user defined")))
config.timerentry.startdate = configElement_nonSave("config.timerentry.startdate", configDateTime, self.timer.begin, (_("%d.%B %Y"), 86400))
config.timerentry.starttime = configElement_nonSave("config.timerentry.starttime", configSequence, [int(time.strftime("%H", time.localtime(self.timer.begin))), int(time.strftime("%M", time.localtime(self.timer.begin)))], configsequencearg.get("CLOCK"))
config.timerentry.enddate = configElement_nonSave("config.timerentry.enddate", configDateTime, self.timer.end, (_("%d.%B %Y"), 86400))
config.timerentry.endtime = configElement_nonSave("config.timerentry.endtime", configSequence, [int(time.strftime("%H", time.localtime(self.timer.end))), int(time.strftime("%M", time.localtime(self.timer.end)))], configsequencearg.get("CLOCK"))
config.timerentry.weekday = configElement_nonSave("config.timerentry.weekday", configSelection, weekday, (_("Monday"), _("Tuesday"), _("Wednesday"), _("Thursday"), _("Friday"), _("Saturday"), _("Sunday")))
config.timerentry.day = []
for x in range(0,7):
config.timerentry.day.append(configElement_nonSave("config.timerentry.day[" + str(x) + "]", configSelection, day[x], (_("yes"), _("no"))))
# FIXME some service-chooser needed here
servicename = "N/A"
try: # no current service available?
servicename = str(self.timer.service_ref.getServiceName())
except:
pass
config.timerentry.service = configElement_nonSave("config.timerentry.service", configSelection, 0, ((servicename),))
config.timerentry.startdate.addNotifier(self.checkDate)
config.timerentry.enddate.addNotifier(self.checkDate)
def checkDate(self, configElement):
if (configElement.getConfigPath() == "config.timerentry.startdate"):
if (config.timerentry.enddate.value < config.timerentry.startdate.value):
config.timerentry.enddate.value = config.timerentry.startdate.value
config.timerentry.enddate.change()
try:
self["config"].invalidate(config.timerentry.enddate)
except:
pass
if (configElement.getConfigPath() == "config.timerentry.enddate"):
if (config.timerentry.enddate.value < config.timerentry.startdate.value):
config.timerentry.startdate.value = config.timerentry.enddate.value
config.timerentry.startdate.change()
try:
self["config"].invalidate(config.timerentry.startdate)
except:
pass
def createSetup(self, widget):
self.list = []
self.list.append(getConfigListEntry(_("Name"), config.timerentry.name))
self.list.append(getConfigListEntry(_("Description"), config.timerentry.description))
self.timerJustplayEntry = getConfigListEntry(_("Timer Type"), config.timerentry.justplay)
self.list.append(self.timerJustplayEntry)
self.timerTypeEntry = getConfigListEntry(_("Repeat Type"), config.timerentry.type)
self.list.append(self.timerTypeEntry)
if (config.timerentry.type.value == 0): # once
self.frequencyEntry = None
else: # repeated
self.frequencyEntry = getConfigListEntry(_("Frequency"), config.timerentry.repeated)
self.list.append(self.frequencyEntry)
if (config.timerentry.repeated.value == 0): # daily
pass
if (config.timerentry.repeated.value == 2): # Mon-Fri
pass
if (config.timerentry.repeated.value == 1): # weekly
self.list.append(getConfigListEntry(_("Weekday"), config.timerentry.weekday))
if (config.timerentry.repeated.value == 3): # user defined
self.list.append(getConfigListEntry(_("Monday"), config.timerentry.day[0]))
self.list.append(getConfigListEntry(_("Tuesday"), config.timerentry.day[1]))
self.list.append(getConfigListEntry(_("Wednesday"), config.timerentry.day[2]))
self.list.append(getConfigListEntry(_("Thursday"), config.timerentry.day[3]))
self.list.append(getConfigListEntry(_("Friday"), config.timerentry.day[4]))
self.list.append(getConfigListEntry(_("Saturday"), config.timerentry.day[5]))
self.list.append(getConfigListEntry(_("Sunday"), config.timerentry.day[6]))
#self.list.append(getConfigListEntry("StartDate", config.timerentry.startdate))
# self.list.append(getConfigListEntry("Weekday", config.timerentry.weekday))
if (config.timerentry.type.value == 0): # once
self.list.append(getConfigListEntry(_("Start"), config.timerentry.startdate))
self.list.append(getConfigListEntry(" ", config.timerentry.starttime))
else:
self.list.append(getConfigListEntry(_("StartTime"), config.timerentry.starttime))
if (config.timerentry.type.value == 0): # once
if currentConfigSelectionElement(config.timerentry.justplay) != "zap":
self.list.append(getConfigListEntry(_("End"), config.timerentry.enddate))
self.list.append(getConfigListEntry(" ", config.timerentry.endtime))
else:
if currentConfigSelectionElement(config.timerentry.justplay) != "zap":
self.list.append(getConfigListEntry(_("EndTime"), config.timerentry.endtime))
self.channelEntry = getConfigListEntry(_("Channel"), config.timerentry.service)
self.list.append(self.channelEntry)
self[widget].list = self.list
self[widget].l.setList(self.list)
def newConfig(self):
print "newConfig", self["config"].getCurrent()
if self["config"].getCurrent() == self.timerTypeEntry:
self.createSetup("config")
if self["config"].getCurrent() == self.timerJustplayEntry:
self.createSetup("config")
if self["config"].getCurrent() == self.frequencyEntry:
self.createSetup("config")
def keyLeft(self):
if self["config"].getCurrent() == self.channelEntry:
self.keySelect()
else:
self["config"].handleKey(config.key["prevElement"])
self.newConfig()
def keyDelete(self):
self["config"].handleKey(config.key["delete"])
def keyRightCallback(self, configPath):
currentConfigPath = self["config"].getCurrent()[1].parent.getConfigPath()
# check if we are still on the same config entry
if (currentConfigPath == configPath):
self.keyRight()
def keyRight(self):
if self["config"].getCurrent() == self.channelEntry:
self.keySelect()
else:
self["config"].handleKey(config.key["nextElement"])
self.newConfig()
def keySelect(self):
if self["config"].getCurrent() == self.channelEntry:
self.session.openWithCallback(self.finishedChannelSelection, ChannelSelection.SimpleChannelSelection, _("Select channel to record from"))
else:
self.keyGo()
def finishedChannelSelection(self, *args):
if len(args):
self.timer.service_ref = ServiceReference(args[0])
config.timerentry.service.vals = (str(self.timer.service_ref.getServiceName()),)
self["config"].invalidate(config.timerentry.service)
def keyNumberGlobal(self, number):
print "You pressed number " + str(number)
if (self["config"].getCurrent()[1].parent.enabled == True):
self["config"].handleKey(config.key[str(number)])
def getTimestamp(self, date, mytime):
d = time.localtime(date)
dt = datetime.datetime(d.tm_year, d.tm_mon, d.tm_mday, mytime[0], mytime[1])
return int(mktime(dt.timetuple()))
def keyGo(self):
self.timer.name = config.timerentry.name.value
self.timer.description = config.timerentry.description.value
self.timer.justplay = (currentConfigSelectionElement(config.timerentry.justplay) == "zap")
self.timer.resetRepeated()
if (config.timerentry.type.value == 0): # once
self.timer.begin = self.getTimestamp(config.timerentry.startdate.value, config.timerentry.starttime.value)
self.timer.end = self.getTimestamp(config.timerentry.enddate.value, config.timerentry.endtime.value)
if (config.timerentry.type.value == 1): # repeated
if (config.timerentry.repeated.value == 0): # daily
for x in range(0,7):
self.timer.setRepeated(x)
if (config.timerentry.repeated.value == 1): # weekly
self.timer.setRepeated(config.timerentry.weekday.value)
if (config.timerentry.repeated.value == 2): # Mon-Fri
for x in range(0,5):
self.timer.setRepeated(x)
if (config.timerentry.repeated.value == 3): # user defined
for x in range(0,7):
if (config.timerentry.day[x].value == 0): self.timer.setRepeated(x)
self.timer.begin = self.getTimestamp(time.time(), config.timerentry.starttime.value)
self.timer.end = self.getTimestamp(time.time(), config.timerentry.endtime.value)
if self.timer.eit is not None:
event = eEPGCache.getInstance().lookupEventId(self.timer.service_ref.ref, self.timer.eit)
if event is not None:
if event.getNumOfLinkageServices() > 0:
self.session.openWithCallback(self.subserviceSelected, SubserviceSelection, event, self.timer.service_ref.ref)
return
self.close((True, self.timer))
def subserviceSelected(self, service):
if not service is None:
self.timer.service_ref = ServiceReference(service)
self.close((True, self.timer))
def keyCancel(self):
self.close((False,))
class TimerLog(Screen):
def __init__(self, session, timer):
Screen.__init__(self, session)
self.timer = timer;
self.log_entries = self.timer.log_entries[:]
self.fillLogList()
self["loglist"] = MenuList(self.list)
self["logentry"] = Label()
self["key_red"] = Button(_("Delete entry"))
self["key_green"] = Button()
self["key_yellow"] = Button("")
self["key_blue"] = Button(_("Clear log"))
self.onShown.append(self.updateText)
self["actions"] = NumberActionMap(["OkCancelActions", "DirectionActions", "ColorActions"],
{
"ok": self.keyClose,
"cancel": self.keyClose,
"up": self.up,
"down": self.down,
"left": self.left,
"right": self.right,
"red": self.deleteEntry,
"blue": self.clearLog
}, -1)
def deleteEntry(self):
self.log_entries.remove(self["loglist"].getCurrent()[1])
self.fillLogList()
self["loglist"].l.setList(self.list)
self.updateText()
def fillLogList(self):
self.list = [ ]
for x in self.log_entries:
self.list.append((str(strftime("%Y-%m-%d %H-%M", localtime(x[0])) + " - " + x[2]), x))
def clearLog(self):
self.log_entries = []
self.fillLogList()
self["loglist"].l.setList(self.list)
self.updateText()
def keyClose(self):
if self.timer.log_entries != self.log_entries:
self.timer.log_entries = self.log_entries
self.close((True, self.timer))
else:
self.close((False,))
def up(self):
self["loglist"].instance.moveSelection(self["loglist"].instance.moveUp)
self.updateText()
def down(self):
self["loglist"].instance.moveSelection(self["loglist"].instance.moveDown)
self.updateText()
def left(self):
self["loglist"].instance.moveSelection(self["loglist"].instance.pageUp)
self.updateText()
def right(self):
self["loglist"].instance.moveSelection(self["loglist"].instance.pageDown)
self.updateText()
def updateText(self):
if len(self.list) > 0:
self["logentry"].setText(str(self["loglist"].getCurrent()[1][2]))
else:
self["logentry"].setText("")
|