]> git.vomp.tv Git - vompclient.git/blob - inputudp.h
WIP [broken]
[vompclient.git] / inputudp.h
1 /*
2     Copyright 2006 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 INPUTUDP_H
21 #define INPUTUDP_H
22
23 #include <string>
24 #include <thread>
25 #include <mutex>
26
27 #include "defines.h"
28 #include "input.h"
29
30 class DatagramSocket;
31 class Log;
32
33 class InputUDP : public Input
34 {
35   public:
36     bool init();
37     void shutdown();
38
39     bool start();
40     void stop();
41
42     // FIXME these 2..
43     void InitHWCListwithDefaults() {};
44     UCHAR TranslateHWCFixed(int code) { return code; };
45     const char* getHardCodedHardwareKeyNamesForVompKey(UCHAR vompKey);
46     std::string getHardwareKeyName(int hardwareKey);
47
48
49   private:
50     bool initted{};
51     DatagramSocket* ds{};
52     Log* log{};
53
54     std::thread listenThread;
55     std::mutex threadStartProtect;
56     void listenLoop();
57     bool listenLoopStop{};
58     int pfds[2];
59
60     void processRequest(const void* data, UINT length);
61 };
62
63 #endif