X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdevice%2Fdevinst.cpp;h=f85c6f5e0dd7ea8756784521f6eca36df2e60af8;hb=2445160a5d1eb98196d2a1d57246d4c37dd13811;hp=a5f96808e55d14161050b5d3e966ca0e847b3c62;hpb=945745012eb57cefa1ef457daf48cfffa99f9ec2;p=pulseview.git diff --git a/pv/device/devinst.cpp b/pv/device/devinst.cpp index a5f9680..f85c6f5 100644 --- a/pv/device/devinst.cpp +++ b/pv/device/devinst.cpp @@ -19,7 +19,6 @@ */ #include -#include #include @@ -27,76 +26,76 @@ #include "devinst.h" -using std::ostringstream; -using std::string; +#include namespace pv { namespace device { -DevInst::DevInst(sr_dev_inst *sdi) : - _sdi(sdi) +DevInst::DevInst() : + _owner(NULL) { - assert(_sdi); } -sr_dev_inst* DevInst::dev_inst() const +void DevInst::use(SigSession *owner) throw(QString) { - return _sdi; + assert(owner); + assert(!_owner); + _owner = owner; } -string DevInst::format_device_title() const +void DevInst::release() { - ostringstream s; - - assert(_sdi); - - if (_sdi->vendor && _sdi->vendor[0]) { - s << _sdi->vendor; - if ((_sdi->model && _sdi->model[0]) || - (_sdi->version && _sdi->version[0])) - s << ' '; + if (_owner) { + _owner->release_device(this); + _owner = NULL; } +} - if (_sdi->model && _sdi->model[0]) { - s << _sdi->model; - if (_sdi->version && _sdi->version[0]) - s << ' '; - } - - if (_sdi->version && _sdi->version[0]) - s << _sdi->version; - - return s.str(); +SigSession* DevInst::owner() const +{ + return _owner; } -GVariant* DevInst::get_config(const sr_probe_group *group, int key) +GVariant* DevInst::get_config(const sr_channel_group *group, int key) { GVariant *data = NULL; - if (sr_config_get(_sdi->driver, _sdi, group, key, &data) != SR_OK) + assert(_owner); + sr_dev_inst *const sdi = dev_inst(); + assert(sdi); + if (sr_config_get(sdi->driver, sdi, group, key, &data) != SR_OK) return NULL; return data; } -bool DevInst::set_config(const sr_probe_group *group, int key, GVariant *data) +bool DevInst::set_config(const sr_channel_group *group, int key, GVariant *data) { - if(sr_config_set(_sdi, group, key, data) == SR_OK) { + assert(_owner); + sr_dev_inst *const sdi = dev_inst(); + assert(sdi); + if(sr_config_set(sdi, group, key, data) == SR_OK) { config_changed(); return true; } return false; } -GVariant* DevInst::list_config(const sr_probe_group *group, int key) +GVariant* DevInst::list_config(const sr_channel_group *group, int key) { GVariant *data = NULL; - if (sr_config_list(_sdi->driver, _sdi, group, key, &data) != SR_OK) + assert(_owner); + sr_dev_inst *const sdi = dev_inst(); + assert(sdi); + if (sr_config_list(sdi->driver, sdi, group, key, &data) != SR_OK) return NULL; return data; } void DevInst::enable_probe(const sr_probe *probe, bool enable) { - for (const GSList *p = _sdi->probes; p; p = p->next) + assert(_owner); + sr_dev_inst *const sdi = dev_inst(); + assert(sdi); + for (const GSList *p = sdi->probes; p; p = p->next) if (probe == p->data) { const_cast(probe)->enabled = enable; config_changed(); @@ -120,5 +119,21 @@ uint64_t DevInst::get_sample_limit() return sample_limit; } +bool DevInst::is_trigger_enabled() const +{ + return false; +} + +void DevInst::start() +{ + if (sr_session_start() != SR_OK) + throw tr("Failed to start session."); +} + +void DevInst::run() +{ + sr_session_run(); +} + } // device } // pv