]> git.vomp.tv Git - vompclient.git/blob - inputudp.h
Change WSelectList option data to void*. About 65 CWFs
[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     // InputUDP doesn't do any translation stuff so just keep everything happy here
43     void InitHWCListwithDefaults() {};
44     UCHAR TranslateHWCFixed(int code) { return static_cast<UCHAR>(code); };
45     const char* getHardCodedHardwareKeyNamesForVompKey(UCHAR vompKey);
46     std::string getHardwareKeyName(int hardwareKey);
47
48   private:
49     static constexpr const char* myModName = "InputUDP";
50     const char* modName() { return myModName; }
51
52     bool initted{};
53     DatagramSocket* ds{};
54     Log* log{};
55
56     std::thread listenThread;
57     std::mutex threadStartProtect;
58     void listenLoop();
59     bool listenLoopStop{};
60     int pfds[2];
61
62     void processRequest(const void* data, UINT length);
63 };
64
65 #endif