mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
116 lines
3.7 KiB
C++
116 lines
3.7 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
|
// //
|
|
// 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 as version 3 of the License, or //
|
|
// //
|
|
// 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 V3 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 <iostream>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <regex>
|
|
#include <iio.h>
|
|
|
|
#include "deviceplutosdrscan.h"
|
|
|
|
void DevicePlutoSDRScan::scan()
|
|
{
|
|
int i, num_contexts;
|
|
struct iio_scan_context *scan_ctx;
|
|
struct iio_context_info **info;
|
|
|
|
scan_ctx = iio_create_scan_context(0, 0);
|
|
|
|
if (!scan_ctx)
|
|
{
|
|
std::cerr << "PlutoSDRScan::scan: could not create scan context" << std::endl;
|
|
return;
|
|
}
|
|
|
|
num_contexts = iio_scan_context_get_info_list(scan_ctx, &info);
|
|
|
|
if (num_contexts < 0)
|
|
{
|
|
std::cerr << "PlutoSDRScan::scan: could not get contexts" << std::endl;
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < num_contexts; i++)
|
|
{
|
|
const char *description = iio_context_info_get_description(info[i]);
|
|
const char *uri = iio_context_info_get_uri(info[i]);
|
|
printf("PlutoSDRScan::scan: %d: %s [%s]\n", i, description, uri);
|
|
char *pch = strstr(const_cast<char*>(description), "PlutoSDR");
|
|
|
|
if (pch)
|
|
{
|
|
m_scans.push_back({std::string(description), std::string("TBD"), std::string(uri)});
|
|
m_urilMap[m_scans.back().m_uri] = &m_scans.back();
|
|
|
|
std::regex desc_regex(".*serial=(.+)");
|
|
std::smatch desc_match;
|
|
std::regex_search(m_scans.back().m_name, desc_match, desc_regex);
|
|
|
|
if (desc_match.size() == 2)
|
|
{
|
|
m_scans.back().m_serial = desc_match[1];
|
|
m_serialMap[m_scans.back().m_serial] = &m_scans.back();
|
|
}
|
|
}
|
|
}
|
|
|
|
iio_context_info_list_free(info);
|
|
iio_scan_context_destroy(scan_ctx);
|
|
}
|
|
|
|
const std::string* DevicePlutoSDRScan::getURIAt(unsigned int index) const
|
|
{
|
|
if (index < m_scans.size()) {
|
|
return &(m_scans[index].m_uri);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
const std::string* DevicePlutoSDRScan::getSerialAt(unsigned int index) const
|
|
{
|
|
if (index < m_scans.size()) {
|
|
return &(m_scans[index].m_serial);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
const std::string* DevicePlutoSDRScan::getURIFromSerial(
|
|
const std::string& serial) const
|
|
{
|
|
std::map<std::string, DeviceScan*>::const_iterator it = m_serialMap.find(serial);
|
|
if (it == m_serialMap.end()) {
|
|
return 0;
|
|
} else {
|
|
return &((it->second)->m_uri);
|
|
}
|
|
}
|
|
|
|
void DevicePlutoSDRScan::getSerials(std::vector<std::string>& serials) const
|
|
{
|
|
std::vector<DeviceScan>::const_iterator it = m_scans.begin();
|
|
serials.clear();
|
|
|
|
for (; it != m_scans.end(); ++it) {
|
|
serials.push_back(it->m_serial);
|
|
}
|
|
}
|
|
|
|
|
|
|