]> git.vomp.tv Git - vompclient.git/blob - command.h
WIP
[vompclient.git] / command.h
1 /*
2     Copyright 2004-2020 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, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef COMMAND_H
21 #define COMMAND_H
22
23 #ifndef WIN32
24 #include <unistd.h> // for reboot
25 #include <linux/reboot.h>
26 #include <sys/reboot.h>
27 #endif
28
29 #include <time.h>
30 #ifndef WIN32
31 #include <pthread.h>
32 #endif
33
34 #include <signal.h>
35
36 #include <string>
37 #include <vector>
38
39 #include "defines.h"
40 #include "messagequeue.h"
41 #include "udp.h"
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 {
54   std::string langcode;
55   int audiopref;
56   int subtitlepref;
57 };
58
59 typedef std::vector<struct ASLPref> ASLPrefList;
60
61 class Command : public MessageQueue
62 {
63   public:
64     Command();
65     ~Command();
66     static Command* getInstance();
67
68     int init(bool crashed = false, char* server = NULL);
69     int shutdown();
70     void run();
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 setSignal(int signalReceived);
77     void connectionLost();
78
79     void setAdvMenus(bool adv) { advMenus = adv; };
80     bool isAdvMenus() { return advMenus; };
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 stop();
88     void handleCommand(int);
89     void processSignals();
90     void doStandby();
91     void doPowerOn();
92     void doPowerOff();
93     void doJustConnected(VConnect* vconnect);
94     void doWallpaper();
95     void doFromTheTop(bool which);  // true - show vinfo,wait. false - del vinfo,restart
96     void buildCrashedBox();
97     void sig1();
98
99     static Command* instance;
100 #ifndef WIN32
101     pid_t mainPid;
102     pthread_mutex_t masterLock;
103 #else
104     HANDLE masterLock;
105     HANDLE mainPid; //Window
106 #endif
107
108     Log* logger;
109     BoxStack* boxstack;
110     Remote* remote;
111
112     bool initted{};
113     bool irun{};
114     bool isStandby{};
115     bool firstBoot{true};
116     int signals{};
117     Boxx* wallpaper{};
118     WJpeg* wallpaper_pict{};
119     VInfo* connLost{};
120     bool crashed{};
121     char* server{};
122
123     bool advMenus{};
124     ASLPrefList langcodes;
125     int subdefault;
126         
127     UDP udp;
128
129     void processMessage(Message* m);
130
131     const static int SIG_INT{1};
132     const static int SIG_TERM{2};
133     const static int SIG_USR1{4};
134     const static int SIG_USR2{8};
135     const static int SIG_URG{16};
136
137 };
138
139 #endif