]> git.vomp.tv Git - vompclient-marten.git/blob - command.cc
Channel number on vlivebanner
[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
219       // deliver timer
220
221       ((TimerReceiver*)m->to)->timercall(m->parameter);
222       handleCommand(Remote::NA_NONE); // in case any timer has posted messages to viewman,
223                                       // run viewman message queue here. FIXME improve this!
224       // FIXME unlock main mutex
225     }
226   }
227 }
228
229 void Command::handleCommand(int button)
230 {
231   if (isStandby && (button != Remote::POWER)) return;
232
233   if (viewman->handleCommand(button)) return;
234
235   // command was not handled
236
237   switch(button)
238   {
239     case Remote::DF_LEFT:
240     case Remote::DF_RIGHT:
241     case Remote::VOLUMEUP:
242     case Remote::VOLUMEDOWN:
243     {
244       VVolume* v = new VVolume();
245       v->handleCommand(button); // this will draw+show
246       viewman->add(v);
247       return;
248     }
249     case Remote::MUTE:
250     {
251       VMute* v = new VMute();
252       v->draw();
253       v->show();
254       viewman->add(v);
255       return;
256     }
257     case Remote::POWER:
258     {
259       doStandby();
260       return;
261     }
262 #ifdef DEV
263     case Remote::RECORD:
264     {
265       Osd::getInstance()->screenShot("/out.jpg");
266       return;
267     }
268 #endif
269   }
270 }
271
272 void Command::doStandby()
273 {
274   if (isStandby)
275   {
276     Video::getInstance()->signalOn();
277     Led::getInstance()->on();
278     isStandby = 0;
279
280
281     VConnect* vconnect = new VConnect();
282     viewman->add(vconnect);
283     vconnect->run();
284   }
285   else
286   {
287     Video::getInstance()->signalOff();
288     viewman->removeAll();
289     wallpaper->show();
290
291     VDR::getInstance()->configSave("General", "Last Power State", "Off");
292     VDR::getInstance()->disconnect();
293     Led::getInstance()->off();
294     isStandby = 1;
295   }
296 }
297
298 void Command::doReboot()
299 {
300   VDR::getInstance()->disconnect();
301   // just kill it...
302   logger->log("Command", Log::NOTICE, "Reboot");
303   reboot(LINUX_REBOOT_CMD_RESTART);
304 }
305
306 void Command::doJustConnected(VConnect* vconnect)
307 {
308   I18n::initialize();
309   Video* video = Video::getInstance();
310   viewman->removeView(vconnect);
311
312   VInfo* vi = new VInfo();
313   vi->create(400, 200);
314   if (video->getFormat() == Video::PAL)
315     vi->setScreenPos(170, 200);
316   else
317     vi->setScreenPos(160, 150);
318
319   vi->setOneLiner(tr("Connected, loading config"));
320   vi->draw();
321   vi->show();
322   viewman->add(vi);
323
324
325   VDR* vdr = VDR::getInstance();
326   char* config;
327
328   // Power off if first boot and config says so
329   if (firstBoot)
330   {
331     firstBoot = 0;
332
333     config = vdr->configLoad("General", "Power After Boot");
334
335     if (config)
336     {
337       if (!strcasecmp(config, "On"))
338       {
339         logger->log("Command", Log::INFO, "Config says Power After Boot = On");
340       }
341       else if (!strcasecmp(config, "Off"))
342       {
343         logger->log("Command", Log::INFO, "Config says Power After Boot = Off");
344         doStandby();
345         delete[] config;
346         return; // quit here
347       }
348       else if (!strcasecmp(config, "Last state"))
349       {
350         char* lastPowerState = vdr->configLoad("General", "Last Power State");
351         if (lastPowerState)
352         {
353           if (!strcasecmp(lastPowerState, "On"))
354           {
355             logger->log("Command", Log::INFO, "Config says Last Power State = On");
356           }
357           else if (!strcasecmp(lastPowerState, "Off"))
358           {
359             logger->log("Command", Log::INFO, "Config says Last Power State = Off");
360             doStandby();
361             delete[] config;
362             return; // quit here
363           }
364           else
365           {
366             logger->log("Command", Log::INFO, "Config General/Last Power State not understood");
367           }
368         }
369         else
370         {
371           logger->log("Command", Log::INFO, "Config General/Last Power State not found");
372         }
373       }
374       else
375       {
376         logger->log("Command", Log::INFO, "Config/Power After Boot not understood");
377       }
378       delete[] config;
379     }
380     else
381     {
382       logger->log("Command", Log::INFO, "Config General/Power After Boot not found");
383     }
384   }
385
386
387   // Go S-Video if config says so
388
389   config = vdr->configLoad("TV", "Connection");
390
391   if (config)
392   {
393     if (!strcasecmp(config, "S-Video"))
394     {
395       logger->log("Command", Log::INFO, "Switching to S-Video as Connection=%s", config);
396       video->setConnection(Video::SVIDEO);
397     }
398     else
399     {
400       logger->log("Command", Log::INFO, "Switching to RGB/Composite as Connection=%s", config);
401       video->setConnection(Video::COMPOSITERGB);
402     }
403     delete[] config;
404   }
405   else
406   {
407     logger->log("Command", Log::INFO, "Config TV/S-Video not found");
408   }
409
410   // Set remote type
411
412   config = vdr->configLoad("General", "Remote type");
413
414   if (config)
415   {
416     if (!strcasecmp(config, "New"))
417     {
418       logger->log("Command", Log::INFO, "Switching to New remote type");
419       remote->setRemoteType(Remote::NEWREMOTE);
420     }
421     else
422     {
423       logger->log("Command", Log::INFO, "Switching to Old remote type");
424       remote->setRemoteType(Remote::OLDREMOTE);
425     }
426     delete[] config;
427   }
428   else
429   {
430     logger->log("Command", Log::INFO, "Config General/Remote type not found");
431     remote->setRemoteType(Remote::OLDREMOTE);
432   }
433
434   // Get TV aspect ratio
435
436   config = vdr->configLoad("TV", "Aspect");
437   if (config)
438   {
439     if (!strcasecmp(config, "16:9"))
440     {
441       logger->log("Command", Log::INFO, "/// Switching to TV aspect 16:9");
442       video->setTVsize(Video::ASPECT16X9);
443     }
444     else
445     {
446       logger->log("Command", Log::INFO, "/// Switching to TV aspect 4:3");
447       video->setTVsize(Video::ASPECT4X3);
448     }
449     delete[] config;
450   }
451   else
452   {
453     logger->log("Command", Log::INFO, "Config TV/Aspect type not found, going 4:3");
454     video->setTVsize(Video::ASPECT4X3);
455   }
456
457   config = vdr->configLoad("TV", "Widemode");
458   if (config)
459   {
460     if (!strcasecmp(config, "Letterbox"))
461     {
462       logger->log("Command", Log::INFO, "Setting letterbox mode");
463       video->setMode(Video::LETTERBOX);
464     }
465     else
466     {
467       logger->log("Command", Log::INFO, "Setting chop-sides mode");
468       video->setMode(Video::NORMAL);
469     }
470     delete[] config;
471   }
472   else
473   {
474     logger->log("Command", Log::INFO, "Config TV/Widemode not found, Setting chop-sides mode");
475     video->setMode(Video::NORMAL);
476   }
477
478   // config done
479
480   // Save power state = on
481
482   vdr->configSave("General", "Last Power State", "On");
483
484
485   viewman->removeView(vi);
486
487   VWelcome* vw = new VWelcome();
488   vw->draw();
489   vw->show();
490   viewman->add(vw);
491 }