forked from analogdevicesinc/scopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnectDialog.cpp
149 lines (126 loc) · 4.15 KB
/
connectDialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
* Copyright (c) 2019 Analog Devices Inc.
*
* This file is part of Scopy
* (see http://www.github.com/analogdevicesinc/scopy).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "connectDialog.hpp"
#include "dynamicWidget.hpp"
#include <QtConcurrentRun>
#include <functional>
#include "ui_connect.h"
#include <iio.h>
#include <iostream>
using namespace adiscope;
ConnectDialog::ConnectDialog(QWidget *widget) : QWidget(widget),
ui(new Ui::Connect), connected(false)
{
ui->setupUi(this);
ui->connectBtn->setText(tr("Connect"));
//The connect button will be disabled untill we write something in the hostname line edit
ui->connectBtn->setDisabled(true);
connect(ui->connectBtn, SIGNAL(clicked()), this, SLOT(btnClicked()));
connect(ui->hostname, SIGNAL(returnPressed()),
this, SLOT(btnClicked()));
connect(ui->hostname, SIGNAL(textChanged(const QString&)),
this, SLOT(discardSettings()));
connect(this,SIGNAL(finished(struct iio_context *)),this,
SLOT(updatePopUp(struct iio_context *)));
ui->hostname->activateWindow();
ui->hostname->setFocus();
setDynamicProperty(ui->hostname, "invalid", false);
setDynamicProperty(ui->hostname, "valid", false);
ui->infoSection->hide();
}
ConnectDialog::~ConnectDialog()
{
delete ui;
}
void ConnectDialog::btnClicked()
{
if (!ui->connectBtn->isEnabled()) {
return;
} else {
ui->infoSection->setText(tr("Waiting for connection ..."));
}
if (connected) {
QString new_uri = "ip:" + ui->hostname->text();
Q_EMIT newContext(new_uri);
} else {
validateInput();
}
}
void ConnectDialog::discardSettings()
{
if (!ui->hostname->text().isEmpty()) {
ui->connectBtn->setDisabled(false);
} else {
ui->connectBtn->setDisabled(true);
}
ui->infoSection->setText(tr("Context info"));
setDynamicProperty(ui->connectBtn, "failed", false);
setDynamicProperty(ui->hostname, "invalid", false);
setDynamicProperty(ui->hostname, "valid", false);
ui->connectBtn->setText(tr("Connect"));
ui->infoSection->hide();
ui->description->setText(QString(""));
this->connected = false;
}
void ConnectDialog::validateInput()
{
ui->connectBtn->setDisabled(true);
QString new_uri = "ip:" + ui->hostname->text();
this->ui->hostname->setDisabled(true);
QtConcurrent::run(std::bind(&ConnectDialog::createContext,this,new_uri));
}
void ConnectDialog::createContext(const QString& uri)
{
this->parent()->installEventFilter(this);
struct iio_context *ctx_from_uri = iio_create_context_from_uri(
uri.toStdString().c_str());
this->parent()->removeEventFilter(this);
Q_EMIT finished(ctx_from_uri);
}
void ConnectDialog::updatePopUp(struct iio_context *ctx)
{
this->ui->hostname->setDisabled(false);
this->connected = !!ctx;
ui->infoSection->show();
if (!!ctx) {
ui->connectBtn->setDisabled(false);
QString description(iio_context_get_description(ctx));
ui->description->setText(description);
ui->infoSection->setText(tr("Context info"));
setDynamicProperty(ui->hostname, "invalid", false);
setDynamicProperty(ui->hostname, "valid", true);
ui->connectBtn->setText(tr("Add"));
iio_context_destroy(ctx);
} else {
setDynamicProperty(ui->hostname, "valid", false);
setDynamicProperty(ui->hostname, "invalid", true);
ui->infoSection->setText(tr("Warning"));
ui->description->setText(tr("Error: Unable to find host: No such host is known!"));
}
}
bool ConnectDialog::eventFilter(QObject *watched, QEvent *event)
{
if (event->type() == QEvent::MouseButtonPress ||
event->type() == QEvent::MouseButtonDblClick ||
event->type() == QEvent::MouseButtonRelease) {
return true;
}
return false;
}