mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-16 17:11:46 -05:00
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
// Copyright (c) Charles J. Cliffe
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <map>
|
|
#include <string>
|
|
#include "IOThread.h"
|
|
#include "SDRDeviceInfo.h"
|
|
#include "AppConfig.h"
|
|
|
|
#include <SoapySDR/Version.hpp>
|
|
#include <SoapySDR/Modules.hpp>
|
|
#include <SoapySDR/Registry.hpp>
|
|
#include <SoapySDR/Device.hpp>
|
|
|
|
|
|
class SDREnumerator: public IOThread {
|
|
private:
|
|
|
|
public:
|
|
SDREnumerator();
|
|
~SDREnumerator();
|
|
enum SDREnumState { SDR_ENUM_DEVICES_READY, SDR_ENUM_MESSAGE, SDR_ENUM_TERMINATED, SDR_ENUM_FAILED };
|
|
|
|
static std::vector<SDRDeviceInfo *> *enumerate_devices(std::string remoteAddr = "", bool noInit=false);
|
|
|
|
virtual void run();
|
|
|
|
static SoapySDR::Kwargs argsStrToKwargs(const std::string &args);
|
|
static void addRemote(std::string remoteAddr);
|
|
static void removeRemote(std::string remoteAddr);
|
|
static std::vector<std::string> &getRemotes();
|
|
static bool hasRemoteModule();
|
|
static void addManual(std::string factory, std::string params);
|
|
static void removeManual(std::string factory, std::string params);
|
|
static std::vector<SDRManualDef> &getManuals();
|
|
static void setManuals(std::vector<SDRManualDef> manuals);
|
|
static void reset();
|
|
static std::vector<std::string> &getFactories();
|
|
|
|
protected:
|
|
static bool soapy_initialized, has_remote;
|
|
static std::vector<std::string> factories;
|
|
static std::vector<std::string> modules;
|
|
static std::vector<std::string> remotes;
|
|
static std::map< std::string, std::vector<SDRDeviceInfo *> > devs;
|
|
static std::vector<SDRManualDef> manuals;
|
|
static std::mutex devs_busy;
|
|
};
|