]> git.vomp.tv Git - vompclient.git/blob - vrecordinglist.cc
Zero length recording segfault fixed
[vompclient.git] / vrecordinglist.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "vrecordinglist.h"
22
23 VRecordingList::VRecordingList(VRecordingList* tparent, Directory* tdir)
24 {
25   myParent = tparent;
26   viewman = ViewMan::getInstance();
27   recDir = tdir;
28
29   create(570, 420);
30   if (Video::getInstance()->getFormat() == Video::PAL)
31   {
32     setScreenPos(80, 70);
33   }
34   else
35   {
36     setScreenPos(70, 35);
37   }
38
39   setBackgroundColour(Colour::VIEWBACKGROUND);
40   setTitleBarOn(1);
41   setTitleBarColour(Colour::TITLEBARBACKGROUND);
42
43   sl.setSurface(surface);
44   sl.setSurfaceOffset(10, 30 + 5);
45   sl.setDimensions(area.w - 20, area.h - 30 - 15 - 30);
46 }
47
48 VRecordingList::~VRecordingList()
49 {
50   if (myParent)
51   {
52     // if this is a sub, there can only be recordings. if there are none left, get this dir deleted by parent
53     if (recDir->getNumRecordings() == 0) myParent->zeroCheck();
54     // recDir is now deleted if it was empty
55   }
56   else
57   {
58     // only delete the list if this is not a sub dir window
59     delete recDir;
60   }
61 }
62
63 void VRecordingList::zeroCheck()
64 {
65   // go through to delete 1 empty dir if necessary (there will only ever be 1)
66   Directory* dir;
67   DirectoryList::iterator i;
68   for (i = recDir->dirList.begin(); i != recDir->dirList.end(); i++)
69   {
70     dir = *i;
71     if (dir->getNumRecordings() == 0)
72     {
73       delete dir;
74       recDir->dirList.erase(i);
75       break;
76     }
77   }
78   drawData();
79   viewman->updateView(this);
80 }
81
82 void VRecordingList::drawData()
83 {
84   int saveIndex = sl.getCurrentOption();
85   int saveTop = sl.getTopOption();
86
87   sl.clear();
88   sl.addColumn(0);
89   sl.addColumn(110);
90
91   int first = 1;
92
93   char tempA[300]; // FIXME  this is guesswork!
94   char tempB[300]; // FIXME
95   struct tm* btime;
96
97   Directory* dir;
98   DirectoryList::iterator i;
99   for (i = recDir->dirList.begin(); i != recDir->dirList.end(); i++)
100   {
101     dir = *i;
102     snprintf(tempA, 299, tr("<dir> %lu\t%s"), dir->getNumRecordings(), dir->name);
103     dir->index = sl.addOption(tempA, first);
104     first = 0;
105   }
106
107   // FIXME convert the whole program to time_t's
108
109   Recording* rec;
110   for (UINT j = 0; j < recDir->recList.size(); j++)
111   {
112     rec = recDir->recList[j];
113     btime = localtime((time_t*)&rec->start);
114     strftime(tempA, 299, "%0d/%0m %0H:%0M ", btime);
115     sprintf(tempB, "%s\t%s", tempA, rec->getProgName());
116     rec->index = sl.addOption(tempB, first);
117     first = 0;
118   }
119
120   sl.hintSetCurrent(saveIndex);
121   sl.hintSetTop(saveTop);
122   sl.draw();
123   doShowingBar();
124 }
125
126 void VRecordingList::draw()
127 {
128   char title[300];
129   if (myParent)
130   {
131     snprintf(title, 299, tr("Recordings - %s"), recDir->name);
132     setTitleText(title);
133   }
134   else
135   {
136     setTitleText(tr("Recordings"));
137   }
138
139   View::draw();
140
141   char freeSpace[50];
142   int gigFree = Directory::freeSpace / 1024;
143   snprintf(freeSpace, 49, tr("%lu%% used, %iGB free"), Directory::usedPercent, gigFree);
144   drawTextRJ(freeSpace, 560, 5, Colour::LIGHTTEXT);
145
146   // Symbols
147
148   WSymbol w;
149   w.setSurface(surface);
150
151   w.nextSymbol = WSymbol::UP;
152   w.setSurfaceOffset(20, 385);
153   w.draw();
154
155   w.nextSymbol = WSymbol::DOWN;
156   w.setSurfaceOffset(50, 385);
157   w.draw();
158
159   w.nextSymbol = WSymbol::SKIPBACK;
160   w.setSurfaceOffset(85, 385);
161   w.draw();
162
163   w.nextSymbol = WSymbol::SKIPFORWARD;
164   w.setSurfaceOffset(115, 385);
165   w.draw();
166
167   w.nextSymbol = WSymbol::PLAY;
168   w.setSurfaceOffset(150, 385);
169   w.draw();
170
171   drawTextRJ(tr("[ok] = menu"), 560, 385, Colour::LIGHTTEXT);
172
173   // All static stuff done
174
175   drawData();
176 }
177
178 void VRecordingList::doShowingBar()
179 {
180   int topOption = sl.getTopOption() + 1;
181   if (sl.getNumOptions() == 0) topOption = 0;
182
183   rectangle(220, 385, 180, 25, Colour::VIEWBACKGROUND);
184   char showing[200];
185   sprintf(showing, tr("%i to %i of %i"), topOption, sl.getBottomOption(), sl.getNumOptions());
186   drawText(showing, 220, 385, Colour::LIGHTTEXT);
187 }
188
189 void VRecordingList::processMessage(Message* m)
190 {
191   Log::getInstance()->log("VRecordingList", Log::DEBUG, "Got message value %lu", m->message);
192   if (m->message == Message::DELETE_SELECTED_RECORDING)
193   {
194     Log::getInstance()->log("VRecordingList", Log::DEBUG, "Doing delete selected");
195     doDeleteSelected();
196     return;
197   }
198
199   if (m->message == Message::PLAY_SELECTED_RECORDING)
200   {
201     doPlay();
202     return;
203   }
204
205   if (m->message == Message::RESUME_SELECTED_RECORDING)
206   {
207     doResume();
208     return;
209   }
210 }
211
212 void VRecordingList::doDeleteSelected()
213 {
214   Log::getInstance()->log("VRecordingList", Log::DEBUG, "Parent = %p, isRoot = %i", myParent, recDir->isRoot);
215   Recording* toDelete = getCurrentOptionRecording();
216
217   if (toDelete)
218   {
219     Log::getInstance()->log("VRecordingList", Log::DEBUG, "FOUND: %i %s %s", toDelete->index, toDelete->getProgName(), toDelete->fileName);
220
221     VDR* vdr = VDR::getInstance();
222     vdr->deleteRecording(toDelete->fileName);
223
224     delete toDelete;
225
226     for(RecordingList::iterator i = recDir->recList.begin(); i != recDir->recList.end(); i++)
227     {
228       if (*i == toDelete)
229       {
230         recDir->recList.erase(i);
231         break;
232       }
233     }
234
235     drawData();
236     viewman->updateView(this);
237
238     if (myParent) myParent->drawData(); // if this is not root get parent to redraw data
239   }
240
241   Log::getInstance()->log("VRecordingList", Log::DEBUG, "Parent = %p, isRoot = %i", myParent, recDir->isRoot);
242 }
243
244 int VRecordingList::doPlay()
245 {
246   Recording* toPlay = getCurrentOptionRecording();
247   if (toPlay)
248   {
249     VVideoRec* vidrec = new VVideoRec(toPlay);
250     vidrec->draw();
251     viewman->add(vidrec);
252     viewman->updateView(vidrec);
253     vidrec->go(0);
254     return 1;
255   }
256   // should not get to here
257   return 0;
258 }
259
260 int VRecordingList::doResume()
261 {
262   Recording* toResume = getCurrentOptionRecording();
263   if (toResume)
264   {
265     ULLONG position = VDR::getInstance()->getResumePoint(toResume->fileName);
266
267     VVideoRec* vidrec = new VVideoRec(toResume);
268     vidrec->draw();
269     viewman->add(vidrec);
270     viewman->updateView(vidrec);
271     vidrec->go(position);
272     return 1;
273   }
274   // should not get to here
275   return 0;
276 }
277
278 Recording* VRecordingList::getCurrentOptionRecording()
279 {
280   Recording* current;
281   for (UINT i = 0; i < recDir->recList.size(); i++)
282   {
283     current = recDir->recList[i];
284     if (current->index == sl.getCurrentOption()) return current;
285   }
286   return NULL;
287 }
288
289 int VRecordingList::handleCommand(int command)
290 {
291   switch(command)
292   {
293     case Remote::DF_UP:
294     case Remote::UP:
295     {
296       sl.up();
297       sl.draw();
298
299       doShowingBar();
300       viewman->updateView(this);
301       return 2;
302     }
303     case Remote::DF_DOWN:
304     case Remote::DOWN:
305     {
306       sl.down();
307       sl.draw();
308
309       doShowingBar();
310       viewman->updateView(this);
311       return 2;
312     }
313     case Remote::SKIPBACK:
314     {
315       sl.pageUp();
316       sl.draw();
317
318       doShowingBar();
319       viewman->updateView(this);
320       return 2;
321     }
322     case Remote::SKIPFORWARD:
323     {
324       sl.pageDown();
325       sl.draw();
326
327       doShowingBar();
328       viewman->updateView(this);
329       return 2;
330     }
331     case Remote::OK:
332     {
333       if (sl.getNumOptions() == 0) return 2;
334
335       // Check to see if it is a sub directory
336       Directory* curDir;
337       for(UINT i = 0; i < recDir->dirList.size(); i++)
338       {
339         curDir = recDir->dirList[i];
340         if (curDir->index == sl.getCurrentOption())
341         {
342           VRecordingList* sub = new VRecordingList(this, curDir);
343           sub->draw();
344           viewman->add(sub);
345           viewman->updateView(sub);
346           return 2;
347         }
348       }
349
350       // check to see if it's a recording
351       Recording* current = getCurrentOptionRecording();
352       if (current)
353       {
354         Log::getInstance()->log("VRecordingList", Log::DEBUG, "Found the option you pointed at. %s %s", current->getProgName(), current->fileName);
355
356         VRecordingMenu* v = new VRecordingMenu();
357         v->setParent(this);
358         v->setRecording(current);
359         v->draw();
360         viewman->add(v);
361         viewman->updateView(v);
362         return 2;
363       }
364       // should not get to here
365       return 1;
366     }
367     case Remote::BACK:
368     {
369       return 4;
370     }
371     case Remote::PLAY:
372     {
373       if (doResume()) return 2;
374       return 1;
375     }
376
377   }
378   // stop command getting to any more views
379   return 1;
380 }