]> git.vomp.tv Git - vompclient.git/blob - command.h
Reverting changes in mutex
[vompclient.git] / command.h
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef COMMAND_H
22 #define COMMAND_H
23
24 #ifndef WIN32
25 #include <unistd.h> // for reboot
26 #include <linux/reboot.h>
27 #include <sys/reboot.h>
28 #endif
29
30 #include <time.h>
31 #ifndef WIN32
32 #include <pthread.h>
33 #endif
34
35 #include <signal.h>
36
37 #include "defines.h"
38 #include "messagequeue.h"
39 #include "udp.h"
40 #include <vector>
41 #include <string>
42
43 class VConnect;
44 class Message;
45 class Remote;
46 class Boxx;
47 class BoxStack;
48 class Log;
49 class VInfo;
50 class WJpeg;
51
52 struct ASLPref {
53         std::string langcode;
54         int audiopref;
55         int subtitlepref;
56 };
57
58 typedef vector<struct ASLPref> ASLPrefList;
59
60 class Command : public MessageQueue
61 {
62   public:
63     Command();
64     ~Command();
65     static Command* getInstance();
66
67     int init(bool crashed = false, char* server = NULL);
68     int shutdown();
69     void run();
70     void stop();
71     void doReboot();
72     void postMessage(Message* m); // override of MessageQueue::postMessage
73     void postMessageNoLock(Message* m); // override of MessageQueue::postMessage
74     bool postMessageIfNotBusy(Message* m); // for timers, when masterMutex might be locked
75     void postMessageFromOuterSpace(Message* m); // err, read the cc comments.
76     void sig1();
77     void connectionLost();
78
79     void setAdvMenues(bool adv) {advmenues=adv;};
80     bool advMenues() { return advmenues;};
81     int getLangPref(bool subtitle,const char* langcode);
82     void setSubDefault(int subon) {subdefault=subon;};
83     int getSubDefault() { return subdefault;};
84     ASLPrefList &getASLList(){return langcodes;};
85
86   private:
87     void handleCommand(int);
88     void doStandby();
89     void doPowerOn();
90     void doPowerOff();
91     void doJustConnected(VConnect* vconnect);
92     void doWallpaper();
93     void doFromTheTop(bool which);  // true - show vinfo,wait. false - del vinfo,restart
94     void buildCrashedBox();
95
96     static Command* instance;
97 #ifndef WIN32
98     pid_t mainPid;
99     pthread_mutex_t masterLock;
100 #else
101     HANDLE masterLock;
102     HANDLE mainPid; //Window
103 #endif
104     UCHAR initted;
105     UCHAR irun;
106     UCHAR isStandby;
107     UCHAR firstBoot;
108
109     Log* logger;
110     BoxStack* boxstack;
111     Remote* remote;
112     Boxx* wallpaper;
113     WJpeg* wallpaper_pict;
114     VInfo* connLost;
115     bool crashed;
116     char* server;
117
118     bool  advmenues;
119     ASLPrefList langcodes;
120     int subdefault;
121         
122     UDP udp;
123
124     void processMessage(Message* m);
125 };
126
127 #endif