-
Notifications
You must be signed in to change notification settings - Fork 31
/
Registration.cpp
89 lines (72 loc) · 3.33 KB
/
Registration.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
/*
* The MIT License (MIT)
*
* Copyright (c) 2015 Charles J. Cliffe
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "SoapyRTLSDR.hpp"
#include <SoapySDR/Registry.hpp>
#include <mutex>
#include <map>
//lookup the tuner by opening the device, it's used in the discovery arguments
//the tuner is cached because the device cannot be opened twice in the same process,
//and we require that findRTLSDR() yield the same results for SoapySDR device cache.
//if another process attempts to find an open rtlsdr, it will be marked unavailable
static std::string get_tuner(const std::string &serial, const size_t deviceIndex)
{
static std::mutex mutex;
std::lock_guard<std::mutex> lock(mutex);
static std::map<std::string, std::string> cache;
auto it = cache.find(serial);
if (it != cache.end()) return it->second;
rtlsdr_dev_t *devTest;
if (rtlsdr_open(&devTest, deviceIndex) != 0) return "unavailable";
const auto tuner = SoapyRTLSDR::rtlTunerToString(rtlsdr_get_tuner_type(devTest));
rtlsdr_close(devTest);
cache[serial] = tuner;
return tuner;
}
static std::vector<SoapySDR::Kwargs> findRTLSDR(const SoapySDR::Kwargs &args)
{
std::vector<SoapySDR::Kwargs> results;
char manufact[256], product[256], serial[256];
const size_t this_count = rtlsdr_get_device_count();
for (size_t i = 0; i < this_count; i++)
{
if (rtlsdr_get_device_usb_strings(i, manufact, product, serial) != 0)
{
SoapySDR_logf(SOAPY_SDR_ERROR, "rtlsdr_get_device_usb_strings(%zu) failed", i);
continue;
}
SoapySDR_logf(SOAPY_SDR_DEBUG, "\tManufacturer: %s, Product Name: %s, Serial: %s", manufact, product, serial);
SoapySDR::Kwargs devInfo;
devInfo["label"] = std::string(rtlsdr_get_device_name(i)) + " :: " + serial;
devInfo["product"] = product;
devInfo["serial"] = serial;
devInfo["manufacturer"] = manufact;
devInfo["tuner"] = get_tuner(serial, i);
//filtering by serial
if (args.count("serial") != 0 and args.at("serial") != serial) continue;
results.push_back(devInfo);
}
return results;
}
static SoapySDR::Device *makeRTLSDR(const SoapySDR::Kwargs &args)
{
return new SoapyRTLSDR(args);
}
static SoapySDR::Registry registerRTLSDR("rtlsdr", &findRTLSDR, &makeRTLSDR, SOAPY_SDR_ABI_VERSION);