-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathiiodeviceimpl.cpp
71 lines (61 loc) · 1.96 KB
/
iiodeviceimpl.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
/*
* Copyright (c) 2024 Analog Devices Inc.
*
* This file is part of Scopy
* (see https://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 <https://www.gnu.org/licenses/>.
*
*/
#include "iiodeviceimpl.h"
#include "iioutil/connectionprovider.h"
#include <QLoggingCategory>
Q_LOGGING_CATEGORY(CAT_IIO_DEVICEIMPL, "IIODevice")
using namespace scopy;
void IIODeviceImpl::init()
{
auto cp = ConnectionProvider::GetInstance();
// Optimization for iio plugins - keep context open while running compatible
cp->open(m_param);
DeviceImpl::init();
cp->close(m_param);
}
bool IIODeviceImpl::verify()
{
Connection *conn = ConnectionProvider::GetInstance()->open(m_param);
if(!conn) {
return false;
}
ConnectionProvider::GetInstance()->close(m_param);
return true;
}
QMap<QString, QString> IIODeviceImpl::readDeviceInfo()
{
QMap<QString, QString> contextAttributes;
Connection *conn = ConnectionProvider::GetInstance()->open(m_param);
if(!conn) {
qWarning(CAT_IIO_DEVICEIMPL) << "Cannot read the device info! (unavailable context)";
} else {
for(int i = 0; i < iio_context_get_attrs_count(conn->context()); i++) {
const char *name;
const char *value;
int ret = iio_context_get_attr(conn->context(), i, &name, &value);
if(ret != 0)
continue;
contextAttributes[name] = value;
}
ConnectionProvider::GetInstance()->close(m_param);
}
return contextAttributes;
}