]> git.vomp.tv Git - vompclient-marten.git/blob - command.cc
Move EPG to the right a bit, timers fixes and improvements
[vompclient-marten.git] / command.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 "command.h"
22
23 Command* Command::instance = NULL;
24
25 Command::Command()
26 {
27   if (instance) return;
28   instance = this;
29   initted = 0;
30   isStandby = 0;
31   firstBoot = 1;
32 }
33
34 Command::~Command()
35 {
36   instance = NULL;
37 }
38
39 Command* Command::getInstance()
40 {
41   return instance;
42 }
43
44 int Command::init()
45 {
46   if (initted) return 0;
47   initted = 1;
48
49   logger = Log::getInstance();
50   viewman = ViewMan::getInstance();
51   remote = Remote::getInstance();
52
53   if (!logger || !viewman || !remote)
54   {
55     initted = 0;
56     return 0;
57   }
58
59   pthread_mutex_init(&masterLock, NULL);
60
61   return 1;
62 }
63
64 int Command::shutdown()
65 {
66   if (!initted) return 0;
67   initted = 0;
68   return 1;
69 }
70
71 void Command::stop()
72 {
73 //  VDR::getInstance()->cancelFindingServer();
74   irun = 0;
75 }
76
77 void Command::run()
78 {
79   if (!initted) return;
80   irun = 1;
81
82   mainPid = getpid();
83
84   Video* video = Video::getInstance();
85
86   UCHAR screenSize = video->getFormat();
87
88   // moved from startup because surface delete doesn't work
89
90   // just in case
91   video->signalOn();
92   Led::getInstance()->on();
93
94   // Blue background
95   View* v = new View();
96   v->create(video->getScreenWidth(), video->getScreenHeight());
97   v->setBackgroundColour(Colour::VIDEOBLUE);
98   v->draw();
99   v->show();
100   viewman->add(v);
101   viewman->removeView(v);
102
103   // Wallpaper
104   wallpaper = new VWallpaper();
105   if (screenSize == Video::PAL)
106   {
107     logger->log("Command", Log::DEBUG, "PAL wallpaper selected");
108     wallpaper->init("/wallpaperPAL.jpg");
109   }
110   else
111   {
112     logger->log("Command", Log::DEBUG, "NTSC wallpaper selected");
113     wallpaper->init("/wallpaperNTSC.jpg");
114   }
115   wallpaper->draw();
116   wallpaper->show();
117   viewman->add(wallpaper);
118
119   // End of startup. Lock the mutex and put the first view up
120
121   pthread_mutex_lock(&masterLock);
122
123
124   VConnect* vconnect = new VConnect();
125   viewman->add(vconnect);
126   vconnect->run();
127
128
129   UCHAR button = 0;
130   while(irun)
131   {
132     // unlock and wait
133     pthread_mutex_unlock(&masterLock);
134
135     button = remote->getButtonPress(2);  // FIXME why is this set to 2 and not 0? so it can quit
136     // something happened, lock and process
137
138     pthread_mutex_lock(&masterLock);
139
140     if ((button == Remote::NA_NONE) || (button == Remote::NA_UNKNOWN)) continue;
141
142     if (button != Remote::NA_SIGNAL) handleCommand(button);
143     processMessageQueue();
144   }
145
146   pthread_mutex_unlock(&masterLock);
147 }
148
149 void Command::postMessage(Message* m)
150 {
151   // This is locked here in case the main loop is not waiting for an event, but is processing one
152   // it could be killed but then not react to it because the signal wouldn't cause
153   // remote->getButtonPress to break
154   // locking the mutex ensures that the master thread is waiting on getButtonPress
155
156   pthread_mutex_lock(&masterLock);
157   MessageQueue::postMessage(m);
158   kill(mainPid, SIGURG);
159   pthread_mutex_unlock(&masterLock);
160 }
161
162 bool Command::postMessageIfNotBusy(Message* m)
163 {
164   // This is for the timers module
165   // If the masterlock is locked then the timers module wants to
166   // cancel delivery
167
168   if (pthread_mutex_trylock(&masterLock) != EBUSY)
169   {
170     MessageQueue::postMessage(m);
171     kill(mainPid, SIGURG);
172     pthread_mutex_unlock(&masterLock);
173     return true;
174   }
175   else
176   {
177     return false;
178   }
179 }
180
181 void Command::processMessage(Message* m)
182 {
183   logger->log("Command", Log::DEBUG, "processing message %i", m->message);
184
185   switch(m->message)
186   {
187     case Message::STANDBY:
188     {
189       doStandby();
190       break;
191     }
192     case Message::STOP_PLAYBACK:
193     {
194       handleCommand(Remote::STOP); // an odd way of doing it, but so simple
195       break;
196     }
197     case Message::STREAM_END:
198     {
199       // post a message to ViewMan and then run the viewman message queue
200       Message* m2 = new Message();
201       m2->message = Message::STREAM_END;
202       m2->to = VVideoLive::getInstance();
203       viewman->postMessage(m2);
204       handleCommand(Remote::NA_NONE);
205       break;
206     }
207     case Message::VDR_CONNECTED:
208     {
209       doJustConnected((VConnect*)m->from);
210       break;
211     }
212     case Message::TIMER:
213     {
214       // FIXME - go to one message queue only - then instead of having
215       // objects deriving from messagequeues, make them derive from
216       // messagereceiver - then one messagequeue can deliver any message to anywhere
217
218       // Try to segfault
219       logger->log("Command", Log::DEBUG, "1: %p", m);
220       logger->log("Command", Log::DEBUG, "2: %p", m->to);
221       logger->log("Command", Log::DEBUG, "3: %lu", m->parameter);
222
223       // deliver timer
224
225       ((TimerReceiver*)m->to)->timercall(m->parameter);
226       handleCommand(Remote::NA_NONE); // in case any timer has posted messages to viewman,
227                                       // run viewman message queue here. FIXME improve this!
228       // FIXME unlock main mutex
229     }
230   }
231 }
232
233 void Command::handleCommand(int button)
234 {
235   if (isStandby && (button != Remote::POWER)) return;
236
237   if (viewman->handleCommand(button)) return;
238
239   // command was not handled
240
241   switch(button)
242   {
243     case Remote::DF_LEFT:
244     case Remote::DF_RIGHT:
245     case Remote::VOLUMEUP:
246     case Remote::VOLUMEDOWN:
247     {
248       VVolume* v = new VVolume();
249       v->handleCommand(button); // this will draw+show
250       viewman->add(v);
251       return;
252     }
253     case Remote::MUTE:
254     {
255       VMute* v = new VMute();
256       v->draw();
257       v->show();
258       viewman->add(v);
259       return;
260     }
261     case Remote::POWER:
262     {
263       doStandby();
264       return;
265     }
266 #ifdef DEV
267     case Remote::RECORD:
268     {
269       Osd::getInstance()->screenShot("/out.jpg");
270       return;
271     }
272 #endif
273   }
274 }
275
276 void Command::doStandby()
277 {
278   if (isStandby)
279   {
280     Video::getInstance()->signalOn();
281     Led::getInstance()->on();
282     isStandby = 0;
283
284
285     VConnect* vconnect = new VConnect();
286     viewman->add(vconnect);
287     vconnect->run();
288   }
289   else
290   {
291     Video::getInstance()->signalOff();
292     viewman->removeAll();
293     wallpaper->show();
294
295     VDR::getInstance()->configSave("General", "Last Power State", "Off");
296     VDR::getInstance()->disconnect();
297     Led::getInstance()->off();
298     isStandby = 1;
299   }
300 }
301
302 void Command::doReboot()
303 {
304   VDR::getInstance()->disconnect();
305   // just kill it...
306   logger->log("Command", Log::NOTICE, "Reboot");
307   reboot(LINUX_REBOOT_CMD_RESTART);
308 }
309
310 void Command::doJustConnected(VConnect* vconnect)
311 {
312   I18n::initialize();
313   Video* video = Video::getInstance();
314   viewman->removeView(vconnect);
315
316   VInfo* vi = new VInfo();
317   vi->create(400, 200);
318   if (video->getFormat() == Video::PAL)
319     vi->setScreenPos(170, 200);
320   else
321     vi->setScreenPos(160, 150);
322
323   vi->setOneLiner(tr("Connected, loading config"));
324   vi->draw();
325   vi->show();
326   viewman->add(vi);
327
328
329   VDR* vdr = VDR::getInstance();
330   char* config;
331
332   // Power off if first boot and config says so
333   if (firstBoot)
334   {
335     firstBoot = 0;
336
337     config = vdr->configLoad("General", "Power After Boot");
338
339     if (config)
340     {
341       if (!strcasecmp(config, "On"))
342       {
343         logger->log("Command", Log::INFO, "Config says Power After Boot = On");
344       }
345       else if (!strcasecmp(config, "Off"))
346       {
347         logger->log("Command", Log::INFO, "Config says Power After Boot = Off");
348         doStandby();
349         delete[] config;
350         return; // quit here
351       }
352       else if (!strcasecmp(config, "Last state"))
353       {
354         char* lastPowerState = vdr->configLoad("General", "Last Power State");
355         if (lastPowerState)
356         {
357           if (!strcasecmp(lastPowerState, "On"))
358           {
359             logger->log("Command", Log::INFO, "Config says Last Power State = On");
360           }
361           else if (!strcasecmp(lastPowerState, "Off"))
362           {
363             logger->log("Command", Log::INFO, "Config says Last Power State = Off");
364             doStandby();
365             delete[] config;
366             return; // quit here
367           }
368           else
369           {
370             logger->log("Command", Log::INFO, "Config General/Last Power State not understood");
371           }
372         }
373         else
374         {
375           logger->log("Command", Log::INFO, "Config General/Last Power State not found");
376         }
377       }
378       else
379       {
380         logger->log("Command", Log::INFO, "Config/Power After Boot not understood");
381       }
382       delete[] config;
383     }
384     else
385     {
386       logger->log("Command", Log::INFO, "Config General/Power After Boot not found");
387     }
388   }
389
390
391   // Go S-Video if config says so
392
393   config = vdr->configLoad("TV", "Connection");
394
395   if (config)
396   {
397     if (!strcasecmp(config, "S-Video"))
398     {
399       logger->log("Command", Log::INFO, "Switching to S-Video as Connection=%s", config);
400       video->setConnection(Video::SVIDEO);
401     }
402     else
403     {
404       logger->log("Command", Log::INFO, "Switching to RGB/Composite as Connection=%s", config);
405       video->setConnection(Video::COMPOSITERGB);
406     }
407     delete[] config;
408   }
409   else
410   {
411     logger->log("Command", Log::INFO, "Config TV/S-Video not found");
412   }
413
414   // Set remote type
415
416   config = vdr->configLoad("General", "Remote type");
417
418   if (config)
419   {
420     if (!strcasecmp(config, "New"))
421     {
422       logger->log("Command", Log::INFO, "Switching to New remote type");
423       remote->setRemoteType(Remote::NEWREMOTE);
424     }
425     else
426     {
427       logger->log("Command", Log::INFO, "Switching to Old remote type");
428       remote->setRemoteType(Remote::OLDREMOTE);
429     }
430     delete[] config;
431   }
432   else
433   {
434     logger->log("Command", Log::INFO, "Config General/Remote type not found");
435     remote->setRemoteType(Remote::OLDREMOTE);
436   }
437
438   // Get TV aspect ratio
439
440   config = vdr->configLoad("TV", "Aspect");
441   if (config)
442   {
443     if (!strcasecmp(config, "16:9"))
444     {
445       logger->log("Command", Log::INFO, "/// Switching to TV aspect 16:9");
446       video->setTVsize(Video::ASPECT16X9);
447     }
448     else
449     {
450       logger->log("Command", Log::INFO, "/// Switching to TV aspect 4:3");
451       video->setTVsize(Video::ASPECT4X3);
452     }
453     delete[] config;
454   }
455   else
456   {
457     logger->log("Command", Log::INFO, "Config TV/Aspect type not found, going 4:3");
458     video->setTVsize(Video::ASPECT4X3);
459   }
460
461   config = vdr->configLoad("TV", "Widemode");
462   if (config)
463   {
464     if (!strcasecmp(config, "Letterbox"))
465     {
466       logger->log("Command", Log::INFO, "Setting letterbox mode");
467       video->setMode(Video::LETTERBOX);
468     }
469     else
470     {
471       logger->log("Command", Log::INFO, "Setting chop-sides mode");
472       video->setMode(Video::NORMAL);
473     }
474     delete[] config;
475   }
476   else
477   {
478     logger->log("Command", Log::INFO, "Config TV/Widemode not found, Setting chop-sides mode");
479     video->setMode(Video::NORMAL);
480   }
481
482   // config done
483
484   // Save power state = on
485
486   vdr->configSave("General", "Last Power State", "On");
487
488
489   viewman->removeView(vi);
490
491   VWelcome* vw = new VWelcome();
492   vw->draw();
493   vw->show();
494   viewman->add(vw);
495 }