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
|
from Screen import Screen
from Components.config import *
from Components.ActionMap import NumberActionMap
from Components.ConfigList import ConfigList
from Components.NimManager import nimmanager
from Components.Label import Label
from time import *
from datetime import *
from math import log
class TimerEntry(Screen):
def __init__(self, session, timer):
Screen.__init__(self, session)
self.timer = timer;
self.createConfig()
self["actions"] = NumberActionMap(["SetupActions"],
{
"ok": self.keyGo,
"cancel": self.keyCancel,
"left": self.keyLeft,
"right": self.keyRight,
"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()
def createConfig(self):
config.timerentry = ConfigSubsection()
# 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, 6):
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
config.timerentry.type = configElement_nonSave("config.timerentry.type", configSelection, type, ("once", "repeated"))
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(strftime("%H", localtime(self.timer.begin))), int(strftime("%M", 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(strftime("%H", localtime(self.timer.end))), int(strftime("%M", 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
config.timerentry.service = configElement_nonSave("config.timerentry.service", configSelection, 0, ((str(self.timer.service_ref.getServiceName())),))
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()
self["config"].invalidate(config.timerentry.enddate)
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()
self["config"].invalidate(config.timerentry.startdate)
def createSetup(self):
self.list = []
self.list.append(getConfigListEntry("Description", config.timerentry.description))
self.list.append(getConfigListEntry("TimerType", config.timerentry.type))
if (config.timerentry.type.value == 0): # once
pass
else: # repeated
self.list.append(getConfigListEntry("Frequency", config.timerentry.repeated))
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("StartDate", config.timerentry.startdate))
self.list.append(getConfigListEntry("StartTime", config.timerentry.starttime))
if (config.timerentry.type.value == 0): # once
self.list.append(getConfigListEntry("EndDate", config.timerentry.enddate))
self.list.append(getConfigListEntry("EndTime", config.timerentry.endtime))
self.list.append(getConfigListEntry("Channel", config.timerentry.service))
self["config"].list = self.list
self["config"].l.setList(self.list)
def newConfig(self):
print self["config"].getCurrent()
if self["config"].getCurrent()[0] == "TimerType":
self.createSetup()
if self["config"].getCurrent()[0] == "Frequency":
self.createSetup()
def keyLeft(self):
self["config"].handleKey(config.key["prevElement"])
self.newConfig()
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):
self["config"].handleKey(config.key["nextElement"])
self.newConfig()
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, time):
d = localtime(date) # for gettin indexes 0(year), 1(month) and 2(day)
dt = datetime(d.tm_year, d.tm_mon, d.tm_mday, time[0], time[1])
print dt
return int(mktime(dt.timetuple()))
def keyGo(self):
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
self.timer.setRepeated(0) # Mon
self.timer.setRepeated(1) # Tue
self.timer.setRepeated(2) # Wed
self.timer.setRepeated(3) # Thu
self.timer.setRepeated(4) # Fri
self.timer.setRepeated(5) # Sat
self.timer.setRepeated(6) # Sun
if (config.timerentry.repeated.value == 1): # weekly
self.timer.setRepeated(config.timerentry.weekday.value)
if (config.timerentry.repeated.value == 2): # Mon-Fri
self.timer.setRepeated(0) # Mon
self.timer.setRepeated(1) # Tue
self.timer.setRepeated(2) # Wed
self.timer.setRepeated(3) # Thu
self.timer.setRepeated(4) # Fri
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.close((True, self.timer))
def keyCancel(self):
self.close((False,))
|