]> git.vomp.tv Git - vompclient.git/blob - vconnect.cc
Rename TCP class to TCPOld
[vompclient.git] / vconnect.cc
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 #include "defines.h"
21 #include "video.h"
22 #include "colour.h"
23 #include "command.h"
24 #include "i18n.h"
25 #include "boxstack.h"
26 #include "message.h"
27 #include "log.h"
28 #include "vdr.h"
29 #include "wol.h"
30 #include "vserverselect.h"
31 #include "messagequeue.h"
32
33 #include "vconnect.h"
34
35 VConnect::VConnect()
36 {
37   boxstack = BoxStack::getInstance();
38   vdr = VDR::getInstance();
39   logger = Log::getInstance();
40
41   setSize(400, 200);
42   createBuffer();
43   if (Video::getInstance()->getFormat() == Video::PAL)
44   {
45     setPosition(170, 200);
46   }
47   else
48   {
49     setPosition(160, 150);
50   }
51
52   exitable = 0;
53 }
54
55 VConnect::~VConnect()
56 {
57   threadReqQuit = true;
58   vdpc.stop();
59   stop();
60 }
61
62 void VConnect::draw()
63 {
64   VInfo::draw();
65   logger->log("VConnect", Log::DEBUG, "Draw done");
66 }
67
68 int VConnect::handleCommand(int /* command */)
69 {
70   return 1;
71 }
72
73 void VConnect::run()
74 {
75   threadMutex.lock();
76   threadReqQuit = false;
77   connectThread = std::thread([this]
78   {
79     threadMutex.lock();
80     threadMutex.unlock();
81     threadMethod();
82   });
83   threadMutex.unlock();
84 }
85
86 void VConnect::stop()
87 {
88   threadMutex.lock();
89   threadReqQuit = true;
90   threadCond.notify_one();
91   threadMutex.unlock();
92   connectThread.join();
93 }
94
95 void VConnect::threadMethod()
96 {
97   ULONG delay = 0;
98   int success;
99
100   std::unique_lock<std::mutex> ul(threadMutex, std::defer_lock);
101
102   const std::string& commandLineServer = getCommandLineServer();
103
104   if (!vdpc.init())
105   {
106     logger->log("VConnect", Log::CRIT, "Failed to init VDPC");
107     return;
108   }
109
110   do
111   {
112     if (!commandLineServer.empty()) // Server is specified, fake a servers array
113     {
114       //servers.emplace_back(commandLineServer, "", 3024, 0);
115
116       vdpc.TEMPaddCLIServer(commandLineServer); // FIXME move to new config system NCONFIG
117     }
118     else
119     {
120       setOneLiner(tr("Locating server"));
121       draw();
122       boxstack->update(this);
123       vdpc.go();
124       if (threadReqQuit) return;
125     }
126
127     for (ULONG i = 0; i < vdpc.numServers(); i++)
128       logger->log("VConnect", Log::INFO, "Found server: %i %s %s %u", vdpc[i].ipVersion, vdpc[i].ip.c_str(), vdpc[i].name.c_str(), vdpc[i].port, vdpc[i].version);
129
130     if (vdpc.numServers() == 1)
131     {
132       selectedServer = 0;
133     }
134     else
135     {
136       selectedServer = -1;
137       VServerSelect* vs = new VServerSelect(vdpc, this);
138       vs->draw();
139       boxstack->add(vs);
140       boxstack->update(vs);
141
142       ul.lock();
143       if (threadReqQuit) { ul.unlock(); return; }
144       threadCond.wait(ul);
145       ul.unlock();
146     }
147
148     if (threadReqQuit) return;
149
150     logger->log("VConnect", Log::NOTICE, "Connecting to server at %s %u", vdpc[selectedServer].ip.c_str(), vdpc[selectedServer].port);
151     Wol::getInstance()->setWakeUpIP(vdpc[selectedServer].ip.c_str());
152     vdr->setServerIP(vdpc[selectedServer].ip.c_str());
153     vdr->setServerPort(vdpc[selectedServer].port);
154
155     setOneLiner(tr("Connecting to VDR"));
156     draw();
157     boxstack->update(this);
158
159     success = vdr->connect();
160     if (success)
161     {
162       logger->log("VConnect", Log::DEBUG, "Connected ok, doing login");
163       unsigned int version_server_min, version_server_max, version_client;
164       int subtitles;
165       success = vdr->doLogin(&version_server_min, &version_server_max, &version_client, Command::getInstance()->getASLList(), subtitles);
166       Command::getInstance()->setSubDefault(subtitles);
167
168       if (!success)
169       {
170         vdr->disconnect();
171         if (version_server_min >version_client || version_client > version_server_max) {
172                 char buffer[1024];
173                 sprintf(buffer,"Version error: s min: %x s max: %x c: %x",version_server_min,version_server_max,version_client);
174                 setOneLiner(buffer);
175         } else {
176                 setOneLiner(tr("Login failed"));
177         }
178         delay = 3000;
179       }
180     }
181     else
182     {
183       setOneLiner(tr("Connection failed"));
184       delay = 3000;
185     }
186
187     draw();
188     boxstack->update(this);
189     MILLISLEEP(delay);
190   } while(!success);
191
192   logger->log("VConnect", Log::INFO, "Send VDR connected message");
193   Message* m = new Message(); // Must be done after this thread ends
194   m->from = this;
195   m->to = Command::getInstance();
196   m->message = Message::VDR_CONNECTED;
197   MessageQueue::getInstance()->postMessage(m);
198 }
199
200 void VConnect::processMessage(Message* m)
201 {
202   if (m->message == Message::SERVER_SELECTED)
203   {
204     selectedServer = m->parameter;
205     threadCond.notify_one();
206   }
207 }