1 from GUIComponent import GUIComponent
2 from Tools.FuzzyDate import FuzzyTime
3 from ServiceReference import ServiceReference
4 from Components.MultiContent import MultiContentEntryText
6 from enigma import eListboxPythonMultiContent, eListbox, gFont, iServiceInformation, \
7 RT_HALIGN_LEFT, RT_HALIGN_RIGHT, eServiceReference, eServiceCenter
9 class MovieList(GUIComponent):
14 LISTTYPE_COMPACT_DESCRIPTION = 2
21 def __init__(self, root, list_type=None, sort_type=None, descr_state=None):
22 GUIComponent.__init__(self)
23 self.list_type = list_type or self.LISTTYPE_ORIGINAL
24 self.descr_state = descr_state or self.HIDE_DESCRIPTION
25 self.sort_type = sort_type or self.SORT_RECORDED
27 self.l = eListboxPythonMultiContent()
34 self.l.setBuildFunc(self.buildMovieListEntry)
36 self.onSelectionChanged = [ ]
38 def connectSelChanged(self, fnc):
39 if not fnc in self.onSelectionChanged:
40 self.onSelectionChanged.append(fnc)
42 def disconnectSelChanged(self, fnc):
43 if fnc in self.onSelectionChanged:
44 self.onSelectionChanged.remove(fnc)
46 def selectionChanged(self):
47 for x in self.onSelectionChanged:
50 def setListType(self, type):
53 def setDescriptionState(self, val):
54 self.descr_state = val
56 def setSortType(self, type):
60 if self.list_type == MovieList.LISTTYPE_ORIGINAL:
61 self.l.setFont(0, gFont("Regular", 22))
62 self.l.setFont(1, gFont("Regular", 18))
63 self.l.setFont(2, gFont("Regular", 16))
64 self.l.setItemHeight(75)
65 elif self.list_type == MovieList.LISTTYPE_COMPACT_DESCRIPTION or self.list_type == MovieList.LISTTYPE_COMPACT:
66 self.l.setFont(0, gFont("Regular", 20))
67 self.l.setFont(1, gFont("Regular", 14))
68 self.l.setItemHeight(37)
70 self.l.setFont(0, gFont("Regular", 20))
71 self.l.setFont(1, gFont("Regular", 16))
72 self.l.setItemHeight(25)
77 def buildMovieListEntry(self, serviceref, info, begin, len):
78 if serviceref.flags & eServiceReference.mustDescent:
81 width = self.l.getItemSize().width()
83 if len <= 0: #recalc len when not already done
84 cur_idx = self.l.getCurrentSelectionIndex()
85 x = self.list[cur_idx]
86 len = x[1].getLength(x[0]) #recalc the movie length...
87 self.list[cur_idx] = (x[0], x[1], x[2], len) #update entry in list... so next time we don't need to recalc
90 len = "%d:%02d" % (len / 60, len % 60)
96 txt = info.getName(serviceref)
97 service = ServiceReference(info.getInfoString(serviceref, iServiceInformation.sServiceref))
98 description = info.getInfoString(serviceref, iServiceInformation.sDescription)
103 begin_string = t[0] + ", " + t[1]
105 if self.list_type == MovieList.LISTTYPE_ORIGINAL:
106 res.append(MultiContentEntryText(pos=(0, 0), size=(width-182, 30), font = 0, flags = RT_HALIGN_LEFT, text=txt))
107 if service is not None:
108 res.append(MultiContentEntryText(pos=(width-180, 0), size=(180, 30), font = 2, flags = RT_HALIGN_RIGHT, text = service.getServiceName()))
109 res.append(MultiContentEntryText(pos=(0, 30), size=(width, 20), font=1, flags=RT_HALIGN_LEFT, text=description))
110 res.append(MultiContentEntryText(pos=(0, 50), size=(width-270, 20), font=1, flags=RT_HALIGN_LEFT, text=begin_string))
111 res.append(MultiContentEntryText(pos=(width-200, 50), size=(200, 20), font=1, flags=RT_HALIGN_RIGHT, text=len))
112 elif self.list_type == MovieList.LISTTYPE_COMPACT_DESCRIPTION:
113 res.append(MultiContentEntryText(pos=(0, 0), size=(width-120, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
114 if service is not None:
115 res.append(MultiContentEntryText(pos=(width-212, 20), size=(154, 17), font = 1, flags = RT_HALIGN_RIGHT, text = service.getServiceName()))
116 res.append(MultiContentEntryText(pos=(0, 20), size=(width-212, 17), font=1, flags=RT_HALIGN_LEFT, text=description))
117 res.append(MultiContentEntryText(pos=(width-120, 6), size=(120, 20), font=1, flags=RT_HALIGN_RIGHT, text=begin_string))
118 res.append(MultiContentEntryText(pos=(width-58, 20), size=(58, 20), font=1, flags=RT_HALIGN_RIGHT, text=len))
119 elif self.list_type == MovieList.LISTTYPE_COMPACT:
120 res.append(MultiContentEntryText(pos=(0, 0), size=(width-77, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
121 if service is not None:
122 res.append(MultiContentEntryText(pos=(width-200, 20), size=(200, 17), font = 1, flags = RT_HALIGN_RIGHT, text = service.getServiceName()))
123 res.append(MultiContentEntryText(pos=(0, 20), size=(width-200, 17), font=1, flags=RT_HALIGN_LEFT, text=begin_string))
124 res.append(MultiContentEntryText(pos=(width-75, 0), size=(75, 20), font=0, flags=RT_HALIGN_RIGHT, text=len))
126 assert(self.list_type == MovieList.LISTTYPE_MINIMAL)
127 if self.descr_state == MovieList.SHOW_DESCRIPTION:
128 res.append(MultiContentEntryText(pos=(0, 0), size=(width-146, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
129 res.append(MultiContentEntryText(pos=(width-145, 4), size=(145, 20), font=1, flags=RT_HALIGN_RIGHT, text=begin_string))
131 res.append(MultiContentEntryText(pos=(0, 0), size=(width-77, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
132 res.append(MultiContentEntryText(pos=(width-75, 0), size=(75, 20), font=0, flags=RT_HALIGN_RIGHT, text=len))
136 def moveToIndex(self, index):
137 self.instance.moveSelectionTo(index)
139 def getCurrentIndex(self):
140 return self.instance.getCurrentIndex()
142 def getCurrentEvent(self):
143 l = self.l.getCurrentSelection()
144 return l and l[0] and l[1] and l[1].getEvent(l[0])
146 def getCurrent(self):
147 l = self.l.getCurrentSelection()
150 GUI_WIDGET = eListbox
152 def postWidgetCreate(self, instance):
153 instance.setContent(self.l)
154 instance.selectionChanged.get().append(self.selectionChanged)
156 def reload(self, root = None, filter_tags = None):
158 self.load(root, filter_tags)
160 self.load(self.root, filter_tags)
161 self.l.setList(self.list)
163 def removeService(self, service):
164 for l in self.list[:]:
167 self.l.setList(self.list)
170 return len(self.list)
172 def load(self, root, filter_tags):
173 # this lists our root service, then building a
177 self.serviceHandler = eServiceCenter.getInstance()
180 list = self.serviceHandler.list(root)
182 print "listing of movies failed"
188 serviceref = list.getNext()
189 if not serviceref.valid():
191 if serviceref.flags & eServiceReference.mustDescent:
194 info = self.serviceHandler.info(serviceref)
197 begin = info.getInfo(serviceref, iServiceInformation.sTimeCreate)
199 # convert space-seperated list of tags into a set
200 this_tags = info.getInfoString(serviceref, iServiceInformation.sTags).split(' ')
201 if this_tags == ['']:
203 this_tags = set(this_tags)
205 # filter_tags is either None (which means no filter at all), or
206 # a set. In this case, all elements of filter_tags must be present,
207 # otherwise the entry will be dropped.
208 if filter_tags is not None and not this_tags.issuperset(filter_tags):
212 self.list.append((serviceref, info, begin, -1))
214 if self.sort_type == MovieList.SORT_ALPHANUMERIC:
215 self.list.sort(key=self.buildAlphaNumericSortKey)
217 # sort: key is 'begin'
218 self.list.sort(key=lambda x: -x[2])
220 # finally, store a list of all tags which were found. these can be presented
221 # to the user to filter the list
224 def buildAlphaNumericSortKey(self, x):
226 info = self.serviceHandler.info(ref)
227 name = info and info.getName(ref)
228 return name and name.lower() or ""
230 def moveTo(self, serviceref):
233 if x[0] == serviceref:
234 self.instance.moveSelectionTo(count)
239 self.instance.moveSelection(self.instance.moveDown)