remove comments from Makefile.am to make automatic parsing easier
[enigma2.git] / lib / python / Components / MovieList.py
1 from GUIComponent import GUIComponent
2 from Tools.FuzzyDate import FuzzyTime
3 from ServiceReference import ServiceReference
4 from Components.MultiContent import MultiContentEntryText
5 from Components.config import config
6
7 from enigma import eListboxPythonMultiContent, eListbox, gFont, iServiceInformation, \
8         RT_HALIGN_LEFT, RT_HALIGN_RIGHT, eServiceReference, eServiceCenter
9
10 class MovieList(GUIComponent):
11         SORT_ALPHANUMERIC = 1
12         SORT_RECORDED = 2
13
14         LISTTYPE_ORIGINAL = 1
15         LISTTYPE_COMPACT_DESCRIPTION = 2
16         LISTTYPE_COMPACT = 3
17         LISTTYPE_MINIMAL = 4
18
19         HIDE_DESCRIPTION = 1
20         SHOW_DESCRIPTION = 2
21
22         def __init__(self, root, list_type=None, sort_type=None, descr_state=None):
23                 GUIComponent.__init__(self)
24                 self.list_type = list_type or self.LISTTYPE_ORIGINAL
25                 self.descr_state = descr_state or self.HIDE_DESCRIPTION
26                 self.sort_type = sort_type or self.SORT_RECORDED
27
28                 self.l = eListboxPythonMultiContent()
29                 self.tags = set()
30                 
31                 if root is not None:
32                         self.reload(root)
33                 
34                 self.redrawList()
35                 self.l.setBuildFunc(self.buildMovieListEntry)
36                 
37                 self.onSelectionChanged = [ ]
38
39         def connectSelChanged(self, fnc):
40                 if not fnc in self.onSelectionChanged:
41                         self.onSelectionChanged.append(fnc)
42
43         def disconnectSelChanged(self, fnc):
44                 if fnc in self.onSelectionChanged:
45                         self.onSelectionChanged.remove(fnc)
46
47         def selectionChanged(self):
48                 for x in self.onSelectionChanged:
49                         x()
50
51         def setListType(self, type):
52                 self.list_type = type
53
54         def setDescriptionState(self, val):
55                 self.descr_state = val
56
57         def setSortType(self, type):
58                 self.sort_type = type
59
60         def redrawList(self):
61                 if self.list_type == MovieList.LISTTYPE_ORIGINAL:
62                         self.l.setFont(0, gFont("Regular", 22))
63                         self.l.setFont(1, gFont("Regular", 18))
64                         self.l.setFont(2, gFont("Regular", 16))
65                         self.l.setItemHeight(75)
66                 elif self.list_type == MovieList.LISTTYPE_COMPACT_DESCRIPTION or self.list_type == MovieList.LISTTYPE_COMPACT:
67                         self.l.setFont(0, gFont("Regular", 20))
68                         self.l.setFont(1, gFont("Regular", 14))
69                         self.l.setItemHeight(37)
70                 else:
71                         self.l.setFont(0, gFont("Regular", 20))
72                         self.l.setFont(1, gFont("Regular", 16))
73                         self.l.setItemHeight(25)
74
75         #
76         # | name of movie              |
77         #
78         def buildMovieListEntry(self, serviceref, info, begin, len):
79                 if serviceref.flags & eServiceReference.mustDescent:
80                         return None
81
82                 width = self.l.getItemSize().width()
83
84                 if len <= 0: #recalc len when not already done
85                         cur_idx = self.l.getCurrentSelectionIndex()
86                         x = self.list[cur_idx]
87                         if config.usage.load_length_of_movies_in_moviellist.value:
88                                 len = x[1].getLength(x[0]) #recalc the movie length...
89                         else:
90                                 len = 0 #dont recalc movielist to speedup loading the list
91                         self.list[cur_idx] = (x[0], x[1], x[2], len) #update entry in list... so next time we don't need to recalc
92                 
93                 if len > 0:
94                         len = "%d:%02d" % (len / 60, len % 60)
95                 else:
96                         if config.usage.load_length_of_movies_in_moviellist.value:
97                                 len = "?:??"
98                         else:
99                                 len = "X:XX"
100                 
101                 res = [ None ]
102                 
103                 txt = info.getName(serviceref)
104                 service = ServiceReference(info.getInfoString(serviceref, iServiceInformation.sServiceref))
105                 description = info.getInfoString(serviceref, iServiceInformation.sDescription)
106                 tags = info.getInfoString(serviceref, iServiceInformation.sTags)
107
108                 begin_string = ""
109                 if begin > 0:
110                         t = FuzzyTime(begin)
111                         begin_string = t[0] + ", " + t[1]
112                 
113                 if self.list_type == MovieList.LISTTYPE_ORIGINAL:
114                         res.append(MultiContentEntryText(pos=(0, 0), size=(width-182, 30), font = 0, flags = RT_HALIGN_LEFT, text=txt))
115                         if self.tags:
116                                 res.append(MultiContentEntryText(pos=(width-180, 0), size=(180, 30), font = 2, flags = RT_HALIGN_RIGHT, text = tags))
117                                 if service is not None:
118                                         res.append(MultiContentEntryText(pos=(200, 50), size=(200, 20), font = 1, flags = RT_HALIGN_LEFT, text = service.getServiceName()))
119                         else:
120                                 if service is not None:
121                                         res.append(MultiContentEntryText(pos=(width-180, 0), size=(180, 30), font = 2, flags = RT_HALIGN_RIGHT, text = service.getServiceName()))
122                         res.append(MultiContentEntryText(pos=(0, 30), size=(width, 20), font=1, flags=RT_HALIGN_LEFT, text=description))
123                         res.append(MultiContentEntryText(pos=(0, 50), size=(200, 20), font=1, flags=RT_HALIGN_LEFT, text=begin_string))
124                         res.append(MultiContentEntryText(pos=(width-200, 50), size=(198, 20), font=1, flags=RT_HALIGN_RIGHT, text=len))
125                 elif self.list_type == MovieList.LISTTYPE_COMPACT_DESCRIPTION:
126                         res.append(MultiContentEntryText(pos=(0, 0), size=(width-120, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
127                         res.append(MultiContentEntryText(pos=(0, 20), size=(width-212, 17), font=1, flags=RT_HALIGN_LEFT, text=description))
128                         res.append(MultiContentEntryText(pos=(width-120, 6), size=(120, 20), font=1, flags=RT_HALIGN_RIGHT, text=begin_string))
129                         if service is not None:
130                                 res.append(MultiContentEntryText(pos=(width-212, 20), size=(154, 17), font = 1, flags = RT_HALIGN_RIGHT, text = service.getServiceName()))
131                         res.append(MultiContentEntryText(pos=(width-58, 20), size=(58, 20), font=1, flags=RT_HALIGN_RIGHT, text=len))
132                 elif self.list_type == MovieList.LISTTYPE_COMPACT:
133                         res.append(MultiContentEntryText(pos=(0, 0), size=(width-77, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
134                         if self.tags:
135                                 res.append(MultiContentEntryText(pos=(width-200, 20), size=(200, 17), font = 1, flags = RT_HALIGN_RIGHT, text = tags))
136                                 if service is not None:
137                                         res.append(MultiContentEntryText(pos=(200, 20), size=(200, 17), font = 1, flags = RT_HALIGN_LEFT, text = service.getServiceName()))
138                         else:
139                                 if service is not None:
140                                         res.append(MultiContentEntryText(pos=(width-200, 20), size=(200, 17), font = 1, flags = RT_HALIGN_RIGHT, text = service.getServiceName()))
141                         res.append(MultiContentEntryText(pos=(0, 20), size=(200, 17), font=1, flags=RT_HALIGN_LEFT, text=begin_string))
142                         res.append(MultiContentEntryText(pos=(width-75, 0), size=(75, 20), font=0, flags=RT_HALIGN_RIGHT, text=len))
143                 else:
144                         assert(self.list_type == MovieList.LISTTYPE_MINIMAL)
145                         if self.descr_state == MovieList.SHOW_DESCRIPTION:
146                                 res.append(MultiContentEntryText(pos=(0, 0), size=(width-146, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
147                                 res.append(MultiContentEntryText(pos=(width-145, 4), size=(145, 20), font=1, flags=RT_HALIGN_RIGHT, text=begin_string))
148                         else:
149                                 res.append(MultiContentEntryText(pos=(0, 0), size=(width-77, 20), font = 0, flags = RT_HALIGN_LEFT, text = txt))
150                                 res.append(MultiContentEntryText(pos=(width-75, 0), size=(75, 20), font=0, flags=RT_HALIGN_RIGHT, text=len))
151                 
152                 return res
153
154         def moveToIndex(self, index):
155                 self.instance.moveSelectionTo(index)
156
157         def getCurrentIndex(self):
158                 return self.instance.getCurrentIndex()
159
160         def getCurrentEvent(self):
161                 l = self.l.getCurrentSelection()
162                 return l and l[0] and l[1] and l[1].getEvent(l[0])
163
164         def getCurrent(self):
165                 l = self.l.getCurrentSelection()
166                 return l and l[0]
167
168         GUI_WIDGET = eListbox
169
170         def postWidgetCreate(self, instance):
171                 instance.setContent(self.l)
172                 instance.selectionChanged.get().append(self.selectionChanged)
173
174         def preWidgetRemove(self, instance):
175                 instance.setContent(None)
176                 instance.selectionChanged.get().remove(self.selectionChanged)
177
178         def reload(self, root = None, filter_tags = None):
179                 if root is not None:
180                         self.load(root, filter_tags)
181                 else:
182                         self.load(self.root, filter_tags)
183                 self.l.setList(self.list)
184
185         def removeService(self, service):
186                 for l in self.list[:]:
187                         if l[0] == service:
188                                 self.list.remove(l)
189                 self.l.setList(self.list)
190
191         def __len__(self):
192                 return len(self.list)
193
194         def load(self, root, filter_tags):
195                 # this lists our root service, then building a 
196                 # nice list
197                 
198                 self.list = [ ]
199                 self.serviceHandler = eServiceCenter.getInstance()
200                 
201                 self.root = root
202                 list = self.serviceHandler.list(root)
203                 if list is None:
204                         print "listing of movies failed"
205                         list = [ ]      
206                         return
207                 tags = set()
208                 
209                 while 1:
210                         serviceref = list.getNext()
211                         if not serviceref.valid():
212                                 break
213                         if serviceref.flags & eServiceReference.mustDescent:
214                                 continue
215                 
216                         info = self.serviceHandler.info(serviceref)
217                         if info is None:
218                                 continue
219                         begin = info.getInfo(serviceref, iServiceInformation.sTimeCreate)
220                 
221                         # convert space-seperated list of tags into a set
222                         this_tags = info.getInfoString(serviceref, iServiceInformation.sTags).split(' ')
223                         if this_tags == ['']:
224                                 this_tags = []
225                         this_tags = set(this_tags)
226                         tags |= this_tags
227                 
228                         # filter_tags is either None (which means no filter at all), or 
229                         # a set. In this case, all elements of filter_tags must be present,
230                         # otherwise the entry will be dropped.                  
231                         if filter_tags is not None and not this_tags.issuperset(filter_tags):
232                                 continue
233                 
234                         self.list.append((serviceref, info, begin, -1))
235                 
236                 if self.sort_type == MovieList.SORT_ALPHANUMERIC:
237                         self.list.sort(key=self.buildAlphaNumericSortKey)
238                 else:
239                         # sort: key is 'begin'
240                         self.list.sort(key=lambda x: -x[2])
241                 
242                 # finally, store a list of all tags which were found. these can be presented
243                 # to the user to filter the list
244                 self.tags = tags
245
246         def buildAlphaNumericSortKey(self, x):
247                 ref = x[0]
248                 info = self.serviceHandler.info(ref)
249                 name = info and info.getName(ref)
250                 return (name and name.lower() or "", -x[2])
251
252         def moveTo(self, serviceref):
253                 count = 0
254                 for x in self.list:
255                         if x[0] == serviceref:
256                                 self.instance.moveSelectionTo(count)
257                                 return True
258                         count += 1
259                 return False
260         
261         def moveDown(self):
262                 self.instance.moveSelection(self.instance.moveDown)