X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fdevice.cpp;h=4edc1d10e11cbb3be3e1b5ae1e79760da47fc4cb;hp=004749c9462f5bee93bd983901151737d5ea3337;hb=2ad82c2e40b6865481733913a2c32735602f63c4;hpb=da30ecb7e72bd2547e524258efa5ec642988b70b diff --git a/pv/devices/device.cpp b/pv/devices/device.cpp index 004749c..4edc1d1 100644 --- a/pv/devices/device.cpp +++ b/pv/devices/device.cpp @@ -24,32 +24,81 @@ #include "device.hpp" +using std::map; +using std::set; + +using sigrok::ConfigKey; +using sigrok::Error; + +using Glib::VariantBase; +using Glib::Variant; + namespace pv { namespace devices { -Device::Device() { +Device::Device() +{ } -Device::~Device() { +Device::~Device() +{ if (session_) session_->remove_datafeed_callbacks(); } -std::shared_ptr Device::session() const { +std::shared_ptr Device::session() const +{ return session_; } -std::shared_ptr Device::device() const { +std::shared_ptr Device::device() const +{ return device_; } -void Device::run() { +template +uint64_t Device::read_config(const sigrok::ConfigKey*, + const uint64_t); + +template +T Device::read_config(const ConfigKey *key, const T default_value) +{ + assert(key); + map< const ConfigKey*, set > keys; + + if (!device_) + return default_value; + + try { + keys = device_->config_keys(ConfigKey::DEVICE_OPTIONS); + } catch (const Error) { + return default_value; + } + + const auto iter = keys.find(key); + if (iter == keys.end() || + (*iter).second.find(sigrok::GET) == (*iter).second.end()) + return default_value; + + return VariantBase::cast_dynamic>( + device_->config_get(ConfigKey::SAMPLERATE)).get(); +} + +void Device::start() +{ + assert(session_); + session_->start(); +} + +void Device::run() +{ assert(device_); assert(session_); session_->run(); } -void Device::stop() { +void Device::stop() +{ assert(session_); session_->stop(); }