close Warning: Can't use blame annotator:
svn blame failed on trunk/tools/FlairGCS/src/Manager.cpp: 200029 - Couldn't perform atomic initialization

source: flair-src/trunk/tools/FlairGCS/src/Manager.cpp@ 248

Last change on this file since 248 was 248, checked in by Sanahuja Guillaume, 6 years ago

add orange icon to gcs

File size: 11.7 KB
RevLine 
1// %flair:license{
2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
4// %flair:license}
5#include "Manager.h"
6#include "UdtSocket.h"
7#include "ConnectionLayout.h"
8#include "communication.h"
9#include "file_ui.h"
10#include <QDate>
11#include <QFileDialog>
12#include <QMessageBox>
13#include <QPushButton>
14#include <QTabBar>
15#include <QTimer>
16#include <QThread>
17#include <QTextStream>
18#include <QVBoxLayout>
19#include <QModelIndex>
20#include <QStatusBar>
21#include <qendian.h>
22#include <iostream>
23#include <string>
24#include <fstream>
25#include <stdio.h>
26
27#ifndef WIN32
28#include <arpa/inet.h>
29#else
30#include <winsock2.h>
31#include <ws2tcpip.h>
32#endif
33
34using namespace std;
35
36Manager::Manager(QString name, int port) : QWidget() {
37 qRegisterMetaType<QModelIndex>("QModelIndex"); // pour le file ui??
38 this->name = name;
39//fprintf(stderr,stderr,"Manager %x\n",thread());
40 setWindowTitle(name);
41
42 // manager layout
43 managerLayout = new QVBoxLayout;
44 setLayout(managerLayout);
45
46 // tab bar for multiple connections
47 tabBar = new QTabBar();
48 //tabBar->setTabsClosable(true);
49 managerLayout->addWidget(tabBar);
50 connect(tabBar, SIGNAL(currentChanged(int)), this,
51 SLOT(tabBarCurrentChanged(int)));
52 currentTab = 0;
53
54 // layout boutons
55 button_layout = new QGridLayout();
56 managerLayout->addLayout(button_layout);
57
58 // boutons du button_Layout
59 send_button = new QPushButton("apply all");
60 reset_button = new QPushButton("reset all");
61 load_button = new QPushButton("load all locally");
62 save_button = new QPushButton("save all locally");
63 button_layout->addWidget(send_button, 0, 0);
64 button_layout->addWidget(reset_button, 0, 1);
65 button_layout->addWidget(load_button, 0, 2);
66 button_layout->addWidget(save_button, 0, 3);
67
68 connect(send_button, SIGNAL(clicked(bool)), this, SLOT(send()));
69 connect(reset_button, SIGNAL(clicked(bool)), this, SLOT(reset()));
70 connect(load_button, SIGNAL(clicked(bool)), this, SLOT(load()));
71 connect(save_button, SIGNAL(clicked(bool)), this, SLOT(save()));
72
73 status=new QStatusBar();
74 status->setSizeGripEnabled(false);
75 button_layout->addWidget(status, 1,0);
76
77 UDT::startup();
78 serv = UDT::socket(AF_INET, SOCK_DGRAM, 0);
79
80 // for non blocking accept
81 bool blocking = false;
82 UDT::setsockopt(serv, 0, UDT_RCVSYN, &blocking, sizeof(bool));
83//UDT::setsockopt(serv, 0, UDT_CC, new CCCFactory<CUDPBlast>, sizeof(CCCFactory<CUDPBlast>));
84 sockaddr_in my_addr;
85 my_addr.sin_family = AF_INET;
86 my_addr.sin_port = htons(port);
87 my_addr.sin_addr.s_addr = INADDR_ANY;
88 memset(&(my_addr.sin_zero), '\0', 8);
89
90 if (UDT::ERROR == UDT::bind(serv, (sockaddr *)&my_addr, sizeof(my_addr))) {
91 fprintf(stderr,"bind error, %s\n", UDT::getlasterror().getErrorMessage());
92 }
93
94 if (UDT::ERROR == UDT::listen(serv, 1)) {
95 fprintf(stderr,"listen error, %s\n", UDT::getlasterror().getErrorMessage());
96 }
97
98
99 icon_green = QIcon(":green.png");
100 icon_red = QIcon(":red.png");
101 icon_orange = QIcon(":orange.png");
102
103
104 QTimer *timer = new QTimer(this);
105 connect(timer, SIGNAL(timeout()), this, SLOT(acceptConnections()));
106 timer->start(500);
107}
108
109Manager::~Manager() {
110 for (int i = 0; i < connections.count(); i++) {
111 if(connections.at(i).socket!=NULL) {
112 connections.at(i).socket->kill();
113 connections.at(i).socket->thread()->wait();
114 }
115 }
116
117 // delete main_layout;
118 UDT::cleanup();
119}
120
121void Manager::acceptConnections(void) {
122 UDTSOCKET socket;
123
124 sockaddr_in their_addr;
125 int namelen = sizeof(their_addr);
126
127 if (UDT::INVALID_SOCK ==(socket = UDT::accept(serv, (sockaddr *)&their_addr, &namelen))) {
128 if (UDT::getlasterror().getErrorCode() != 6002)
129 fprintf(stderr,"accept error: %s, code %i\n", UDT::getlasterror().getErrorMessage(),UDT::getlasterror().getErrorCode());
130 return;
131 } else {
132 QString name=QString("%1:%2").arg(inet_ntoa(their_addr.sin_addr)).arg(their_addr.sin_port);
133 fprintf(stderr,"connected to %s\n",name.toLocal8Bit().constData());
134
135 QThread *thread = new QThread(this);
136 UdtSocket *udtSocket = new UdtSocket(socket,name);
137 udtSocket->moveToThread(thread);
138
139 connect(udtSocket, SIGNAL(newFileUI(UDTSOCKET)), this, SLOT(newFileUI(UDTSOCKET)));
140 connect(udtSocket, SIGNAL(newConnectionLayout(QString)), this, SLOT(newConnectionLayout(QString)),Qt::BlockingQueuedConnection);
141 connect(thread, SIGNAL(started()), udtSocket, SLOT(receiveData()));
142
143 thread->start();
144 }
145}
146
147void Manager::newConnectionLayout(QString name) {
148 UdtSocket* udtSocket=(UdtSocket *)sender();
149
150 ConnectionLayout *newLayout = new ConnectionLayout(udtSocket, name);
151 connect(udtSocket, SIGNAL(UDTStats(QString,bool)), newLayout, SIGNAL(UDTStats(QString,bool)));//connection in 2 steps to get udtsocket as sender
152 connect(newLayout, SIGNAL(UDTStats(QString,bool)), this, SLOT(printUDTStats(QString,bool)));
153 connect(udtSocket, SIGNAL(dataReady(char *, int)), newLayout,SLOT(receive(char *, int)),Qt::BlockingQueuedConnection);
154 connect(newLayout, SIGNAL(destroyed(QObject *)), this, SLOT(layoutDestroyed(QObject *)));
155 connect(udtSocket, SIGNAL(destroyed(QObject *)), this, SLOT(udtSocketDestroyed(QObject *)));
156
157 // widget
158 QWidget *newWidget = new QWidget();
159 newWidget->setLayout(newLayout->getQGridLayout());
160 managerLayout->insertWidget(1, newWidget);
161 newWidget->hide();
162
163 connections_t connection;
164 connection.layout=newLayout;
165 connection.widget=newWidget;
166 connection.socket=udtSocket;
167 connections.append(connection);
168
169 //tab: avoid having only 1 tab (0, 2 or more)
170 if (connections.count() == 1) { // first connection
171 newWidget->show();
172 hiddenTabName = name;
173 }
174 if (connections.count() == 2) {
175 tabBar->addTab(icon_green,hiddenTabName);
176 currentTab = 0;
177 }
178 if (connections.count() > 1) {
179 tabBar->addTab(icon_green,name);
180 }
181}
182
183void Manager::udtSocketDestroyed(QObject *obj) {
184 //mark socket as not valid, it can be a connection lost
185 //in this case we keep the layout for reading, and mark it as problematic
186 for(int i=0;i<connections.count();i++) {
187 if(connections.at(i).socket==(UdtSocket *)obj) {
188 connections[i].socket=NULL;
189 tabBar->setTabIcon(i,icon_red);
190 break;
191 }
192 }
193}
194
195void Manager::layoutDestroyed(QObject *obj) {
196 //remove the connection, it comes from a proper close
197 int index=-1;
198 for(int i=0;i<connections.count();i++) {
199 if(connections.at(i).layout==(ConnectionLayout *)obj) {
200 delete connections.at(i).widget;
201 //connections[i].widget=NULL;
202 //connections[i].layout=NULL;
203 connections.removeAt(i);
204 index=i;
205 break;
206 }
207 }
208
209 if(index==-1) {
210 fprintf(stderr,"layoutDestroyed: error, layout not found!\n");
211 return;
212 }
213
214 //tab: avoid having only 1 tab (only 0, 2 or more)
215 if (tabBar->count() > 1) {
216 tabBar->removeTab(index);
217 }
218
219 if (connections.count() == 1) {
220 hiddenTabName = tabBar->tabText(0);
221 tabBar->removeTab(0);
222 }
223
224 if (connections.count() == 0) {
225 status->showMessage("");
226 }
227}
228
229void Manager::newFileUI(UDTSOCKET socket) {
230 QThread *thread = new QThread(this);
231 file_ui* fileUi = new file_ui(socket,name);
232 fileUi->moveToThread(thread);
233 connect(thread, SIGNAL(started()), fileUi, SLOT(receive()));
234 connect(fileUi, SIGNAL(finished()), this, SLOT(deleteFileUI()));
235 thread->start();
236}
237
238void Manager::deleteFileUI(void) {
239 sender()->thread()->quit();
240 delete sender();
241}
242
243void Manager::printUDTStats(QString stats,bool loosingPackets) {
244 int index = -1;
245 for(int i=0;i<connections.count();i++) {
246 if(connections.at(i).layout==(ConnectionLayout *)sender()) {
247 index=i;
248 break;
249 }
250 }
251
252 if(index==-1) return;
253
254 if(!loosingPackets) {
255 tabBar->setTabIcon(index,icon_green);
256 } else {
257 tabBar->setTabIcon(index,icon_orange);
258 }
259
260 if (tabBar->count() == 0) {
261 status->showMessage(stats);
262 } else if (index==tabBar->currentIndex()) {
263 status->showMessage(QString("%1: %2").arg(tabBar->tabText(index)).arg(stats));
264 }
265}
266
267void Manager::tabBarCurrentChanged(int index) {
268
269 if (index >= 0) {
270 //if we are coming from layout destroyed
271 if(currentTab<connections.count()) connections.at(currentTab).widget->hide();
272 connections.at(index).widget->show();
273 currentTab = index;
274 } else {
275 currentTab = 0;
276 connections.at(0).widget->show();
277 }
278 QString msg="not connected";
279 if (tabBar->count() == 0) {
280 if(connections.at(0).socket!=NULL) msg=connections.at(0).socket->getUDTStats();
281
282 } else {
283 if(connections.at(index).socket!=NULL) msg=QString("%1: %2").arg(tabBar->tabText(index)).arg(connections.at(index).socket->getUDTStats());
284 }
285 status->showMessage(msg);
286}
287
288void Manager::load(void) {
289 QString dir_name =
290 QFileDialog::getExistingDirectory(this, "Select a directory", 0, 0);
291
292 if (dir_name != "") {
293 for (int i = 0; i < connections.count(); i++) {
294 QFile *file;
295 file = new QFile(dir_name + "/" +
296 connections.at(i).layout->getName() + ".xml");
297 if (!file->open(QIODevice::ReadOnly | QIODevice::Text)) {
298 QMessageBox::warning(this, "Warning",
299 "Enable to load " +
300 connections.at(i).layout->getName() +
301 ".xml");
302 continue;
303 }
304
305 QDomDocument doc;
306 QString errorMsg;
307 int errorLine;
308 int errorColumn;
309 if (!doc.setContent(file, &errorMsg, &errorLine, &errorColumn)) {
310 QMessageBox::critical(
311 this, "Error",
312 "unable to read " + connections.at(i).layout->getName() +
313 ".xml" + " (" + errorMsg + " at " + QString::number(errorLine) +
314 "," + QString::number(errorColumn) + ")");
315 } else {
316 connections.at(i).layout->LoadXml(doc);
317 }
318 delete file;
319 }
320 }
321}
322
323void Manager::save(void) {
324 bool isUptodate = true;
325
326 for (int i = 0; i < connections.count(); i++) {
327 if (!connections.at(i).layout->IsUptodate()) {
328 isUptodate = false;
329 break;
330 }
331 }
332
333 if (!isUptodate) {
334 QMessageBox msgBox;
335 msgBox.setText("There are pending modifications");
336 msgBox.setInformativeText("Apply and save?");
337 msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::Cancel);
338 msgBox.setDefaultButton(QMessageBox::Yes);
339 int ret = msgBox.exec();
340
341 switch (ret) {
342 case QMessageBox::Yes:
343 send();
344 break;
345 case QMessageBox::Cancel:
346 return;
347 break;
348 default:
349 // should never be reached
350 break;
351 }
352 }
353
354 // create dirctory for storage
355 QDateTime dateTime = QDateTime::currentDateTime();
356 QString dir_name =
357 "configs_" + dateTime.toString("yyyyMMdd_hhmm") + "_" + name;
358 if (QDir().exists(dir_name) == true) {
359 dir_name = "configs_" + dateTime.toString("yyyyMMdd_hhmm_ss") + "_" + name;
360 }
361 QDir().mkdir(dir_name);
362
363 for (int i = 0; i < connections.count(); i++) {
364 QDomDocument *xml = new QDomDocument("remote_ui_xml");
365
366 connections.at(i).layout->GetFullXml((QDomElement *)xml);
367
368 QFile fichier(dir_name + "/" + connections.at(i).layout->getName() +
369 ".xml");
370 QString write_doc = (xml->ownerDocument()).toString();
371
372 if (!fichier.open(QIODevice::WriteOnly)) {
373 fichier.close();
374 QMessageBox::critical(this, "Error", "Enable to write XML");
375 continue;
376 }
377 QTextStream stream(&fichier);
378 stream << write_doc;
379 fichier.close();
380
381 delete xml;
382 }
383
384 QMessageBox::information(this, "save all", "saved to ./" + dir_name);
385}
386
387void Manager::send(void) {
388 for (int i = 0; i < connections.count(); i++) {
389 QDomDocument doc("remote_ui_xml");
390 connections.at(i).layout->GetUpdateXml((QDomElement *)&doc);
391 // fprintf(stderr,"merge\n%s\n",doc.toString().toLocal8Bit().constData());
392
393 connections.at(i).layout->XmlToSend(doc);
394 }
395}
396
397void Manager::reset() {
398 for (int i = 0; i < connections.count(); i++)
399 connections.at(i).layout->ResetAllChilds();
400}
Note: See TracBrowser for help on using the repository browser.