aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/EpgList.py
blob: a87504858a19c472d0237802a38f5f25e862065c (plain)
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
from HTMLComponent import *
from GUIComponent import *

from enigma import *
from re import *
from time import localtime, time
from ServiceReference import ServiceReference

EPG_TYPE_SINGLE = 0
EPG_TYPE_MULTI = 1

RT_HALIGN_LEFT = 0
RT_HALIGN_RIGHT = 1
RT_HALIGN_CENTER = 2
RT_HALIGN_BLOCK = 4

RT_VALIGN_TOP = 0
RT_VALIGN_CENTER = 8
RT_VALIGN_BOTTOM = 16

RT_WRAP = 32

SINGLE_CPP = 0

class Rect:
	def __init__(self, x, y, width, height):
		self.__left = x
		self.__top = y
		self.__width = width
		self.__height = height

	def left(self):
		return self.__left

	def top(self):
		return self.__top

	def height(self):
		return self.__height

	def width(self):
		return self.__width

class EPGList(HTMLComponent, GUIComponent):
	def __init__(self, type=EPG_TYPE_SINGLE, selChangedCB=None):
		self.onSelChanged = [ ]
		if selChangedCB is not None:
			self.onSelChanged.append(selChangedCB)
		GUIComponent.__init__(self)
		self.type=type
		if type == EPG_TYPE_SINGLE and SINGLE_CPP > 0:
			self.l = eListboxEPGContent()
		else:
			self.l = eListboxPythonMultiContent()
		self.epgcache = eEPGCache.getInstance()

	def getEventFromId(self, service, eventid):
		event = None
		if self.epgcache is not None and eventid is not None:
			event = self.epgcache.lookupEventId(service.ref, eventid)
		return event

	def getCurrentChangeCount(self):
		if self.type == EPG_TYPE_SINGLE:
			return 0
		return self.l.getCurrentSelection()[0][0]

	def getCurrent(self):
		if self.type == EPG_TYPE_SINGLE:
			if SINGLE_CPP > 0:
				evt = self.l.getCurrent()
			else:
				eventid = self.l.getCurrentSelection()[0]
				evt = self.getEventFromId(self.service, eventid)
		else:
			tmp = self.l.getCurrentSelection()[0]
			eventid = tmp[1]
			service = ServiceReference(tmp[2])
			event = self.getEventFromId(service, eventid)
			evt = ( event, service )
		return evt

	def moveUp(self):
		self.instance.moveSelection(self.instance.moveUp)

	def moveDown(self):
		self.instance.moveSelection(self.instance.moveDown)

	def connectSelectionChanged(func):
		if not self.onSelChanged.count(func):
			self.onSelChanged.append(func)

	def disconnectSelectionChanged(func):
		self.onSelChanged.remove(func)

	def selectionChanged(self):
		for x in self.onSelChanged:
			if x is not None:
				try:
					x()
				except:
					pass

	def GUIcreate(self, parent):
		self.instance = eListbox(parent)
		self.instance.selectionChanged.get().append(self.selectionChanged)
		self.instance.setContent(self.l)
		if SINGLE_CPP > 0:
			self.instance.setItemHeight(25)

	def GUIdelete(self):
		self.instance = None

	def recalcEntrySize(self):
		if SINGLE_CPP == 0:
			esize = self.l.getItemSize()
			self.l.setFont(0, gFont("Regular", 22))
			self.l.setFont(1, gFont("Regular", 16))
			width = esize.width()
			height = esize.height()
			if self.type == EPG_TYPE_SINGLE:
				w = width/20*5
				self.datetime_rect = Rect(0,0, w, height)
				self.descr_rect = Rect(w, 0, width/20*15, height)
			else:
				xpos = 0;
				w = width/10*3;
				self.service_rect = Rect(xpos, 0, w-10, height)
				xpos += w;
				w = width/10*2;
				self.start_end_rect = Rect(xpos, 0, w-10, height)
				self.progress_rect = Rect(xpos, 4, w-10, height-8)
				xpos += w
				w = width/10*5;
				self.descr_rect = Rect(xpos, 0, width, height)

	def buildSingleEntry(self, eventId, beginTime, duration, EventName):
		r1=self.datetime_rect
		r2=self.descr_rect
		res = [ eventId ]
		t = localtime(beginTime)
		res.append((eListboxPythonMultiContent.TYPE_TEXT, r1.left(), r1.top(), r1.width(), r1.height(), 0, RT_HALIGN_LEFT, "%02d.%02d, %02d:%02d"%(t[2],t[1],t[3],t[4])))
		res.append((eListboxPythonMultiContent.TYPE_TEXT, r2.left(), r2.top(), r2.width(), r2.height(), 0, RT_HALIGN_LEFT, EventName))
		return res

	def buildMultiEntry(self, changecount, service, eventId, begTime, duration, EventName, nowTime, service_name):
		sname = service_name
		r1=self.service_rect
		r2=self.progress_rect
		r3=self.descr_rect
		r4=self.start_end_rect
		res = [ (changecount, eventId, service, begTime, duration) ]
		re = compile('\xc2\x86.*?\xc2\x87')
		list = re.findall(sname)
		if len(list):
			sname=''
			for substr in list:
				sname+=substr[2:len(substr)-2]
			if len(sname) == 0:
				sname = service_name;
		res.append((eListboxPythonMultiContent.TYPE_TEXT, r1.left(), r1.top(), r1.width(), r1.height(), 0, RT_HALIGN_LEFT, sname))
		if begTime is not None:
			if nowTime < begTime:
				begin = localtime(begTime)
				end = localtime(begTime+duration)
#				print "begin", begin
#				print "end", end
				res.append((eListboxPythonMultiContent.TYPE_TEXT, r4.left(), r4.top(), r4.width(), r4.height(), 1, RT_HALIGN_CENTER|RT_VALIGN_CENTER, "%02d.%02d - %02d.%02d"%(begin[3],begin[4],end[3],end[4])));
				res.append((eListboxPythonMultiContent.TYPE_TEXT, r3.left(), r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, EventName))
			else:
				percent = (nowTime - begTime) * 100 / duration
				res.append((eListboxPythonMultiContent.TYPE_PROGRESS, r2.left(), r2.top(), r2.width(), r2.height(), percent));
				res.append((eListboxPythonMultiContent.TYPE_TEXT, r3.left(), r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, EventName))
		return res

	def queryEPG(self, list, buildFunc=None):
		if self.epgcache is not None:
			if buildFunc is not None:
				return self.epgcache.lookupEvent(list, buildFunc)
			else:
				return self.epgcache.lookupEvent(list)
		return [ ]

	def fillMultiEPG(self, services):
		t = time()
		test = [ 'RIBDTCN' ]
		for service in services:
			tuple = ( service.ref.toString(), 0 )
			test.append( tuple )
#		self.list = self.queryEPG(test, self.buildMultiEntry)
		tmp = self.queryEPG(test)
		self.list = [ ]
		for x in tmp:
			self.list.append(self.buildMultiEntry(0, x[0], x[1], x[2], x[3], x[4], x[5], x[6]))
		self.l.setList(self.list)
		print time() - t
		self.selectionChanged()

	def updateMultiEPG(self, direction):
		t = time()
		test = [ 'RIBDTCN' ]
		for x in self.list:
			data = x[0]
			service = data[2]
			begTime = data[3]
			duration = data[4]
			if begTime is None:
				begTime = 0
			test.append((service, direction, begTime))
#		self.list = self.queryEPG(test, self.buildMultiEntry)
		tmp = self.queryEPG(test)
		cnt=0
		for x in tmp:
			changecount = self.list[cnt][0][0] + direction
			if changecount >= 0:
				if x[2] is not None:
					self.list[cnt]=self.buildMultiEntry(changecount, x[0], x[1], x[2], x[3], x[4], x[5], x[6])
			cnt+=1
		self.l.setList(self.list)
		print time() - t
		self.selectionChanged()

	def fillSingleEPG(self, service):
		t = time()
		if SINGLE_CPP > 0:
			self.l.setRoot(service.ref)
		else:
			self.service = service
			test = [ 'IBDT', (service.ref.toString(), 0, -1, -1) ]
#			self.list = self.queryEPG(test, self.buildSingleEntry)
			tmp = self.queryEPG(test)
			self.list = [ ]
			for x in tmp:
				self.list.append(self.buildSingleEntry(x[0], x[1], x[2], x[3]))
#				self.list.append(self.buildSingleEntry(refstr, x[0], x[1], x[2], x[3]))
			self.l.setList(self.list)
		print time() - t
		self.selectionChanged()