]> git.vomp.tv Git - vompclient.git/blob - command.h
Make localtime_r portable for windows
[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 #define SIG_INT 1
61 #define SIG_TERM 2
62 #define SIG_USR1 4
63 #define SIG_USR2 8
64 #define SIG_URG 16
65
66 class Command : public MessageQueue
67 {
68   public:
69     Command();
70     ~Command();
71     static Command* getInstance();
72
73     int init(bool crashed = false, char* server = NULL);
74     int shutdown();
75     void run();
76     void stop();
77     void doReboot();
78     void postMessage(Message* m); // override of MessageQueue::postMessage
79     void postMessageNoLock(Message* m); // override of MessageQueue::postMessage
80     bool postMessageIfNotBusy(Message* m); // for timers, when masterMutex might be locked
81     void postMessageFromOuterSpace(Message* m); // err, read the cc comments.
82     void setSignal(int signalReceived);
83     void connectionLost();
84
85     void setAdvMenues(bool adv) {advmenues=adv;};
86     bool advMenues() { return advmenues;};
87     int getLangPref(bool subtitle,const char* langcode);
88     void setSubDefault(int subon) {subdefault=subon;};
89     int getSubDefault() { return subdefault;};
90     ASLPrefList &getASLList(){return langcodes;};
91
92   private:
93     void handleCommand(int);
94     void processSignals();
95     void doStandby();
96     void doPowerOn();
97     void doPowerOff();
98     void doJustConnected(VConnect* vconnect);
99     void doWallpaper();
100     void doFromTheTop(bool which);  // true - show vinfo,wait. false - del vinfo,restart
101     void buildCrashedBox();
102     void sig1();
103
104     static Command* instance;
105 #ifndef WIN32
106     pid_t mainPid;
107     pthread_mutex_t masterLock;
108 #else
109     HANDLE masterLock;
110     HANDLE mainPid; //Window
111 #endif
112     UCHAR initted;
113     UCHAR irun;
114     UCHAR isStandby;
115     UCHAR firstBoot;
116     ULONG signals;
117
118     Log* logger;
119     BoxStack* boxstack;
120     Remote* remote;
121     Boxx* wallpaper;
122     WJpeg* wallpaper_pict;
123     VInfo* connLost;
124     bool crashed;
125     char* server;
126
127     bool  advmenues;
128     ASLPrefList langcodes;
129     int subdefault;
130         
131     UDP udp;
132
133     void processMessage(Message* m);
134 };
135
136 #endif