]> sigrok.org Git - pulseview.git/blob - pv/devices/device.cpp
Various minor whitespace and consistency fixes.
[pulseview.git] / pv / devices / device.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2015 Joel Holdsworth <joel@airwebreathe.org.uk>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <cassert>
22
23 #include <libsigrokcxx/libsigrokcxx.hpp>
24
25 #include "device.hpp"
26
27 using std::map;
28 using std::set;
29
30 using sigrok::ConfigKey;
31 using sigrok::Error;
32
33 using Glib::VariantBase;
34 using Glib::Variant;
35
36 namespace pv {
37 namespace devices {
38
39 Device::Device()
40 {
41 }
42
43 Device::~Device()
44 {
45         if (session_)
46                 session_->remove_datafeed_callbacks();
47 }
48
49 std::shared_ptr<sigrok::Session> Device::session() const
50 {
51         return session_;
52 }
53
54 std::shared_ptr<sigrok::Device> Device::device() const
55 {
56         return device_;
57 }
58
59 template
60 uint64_t Device::read_config(const sigrok::ConfigKey*,
61         const uint64_t);
62
63 template<typename T>
64 T Device::read_config(const ConfigKey *key, const T default_value)
65 {
66         assert(key);
67         map< const ConfigKey*, set<sigrok::Capability> > keys;
68
69         if (!device_)
70                 return default_value;
71
72         try {
73                 keys = device_->config_keys(ConfigKey::DEVICE_OPTIONS);
74         } catch (const Error) {
75                 return default_value;
76         }
77
78         const auto iter = keys.find(key);
79         if (iter == keys.end() ||
80                 (*iter).second.find(sigrok::GET) == (*iter).second.end())
81                 return default_value;
82
83         return VariantBase::cast_dynamic<Glib::Variant<guint64>>(
84                 device_->config_get(ConfigKey::SAMPLERATE)).get();
85 }
86
87 void Device::start()
88 {
89         assert(session_);
90         session_->start();
91 }
92
93 void Device::run()
94 {
95         assert(device_);
96         assert(session_);
97         session_->run();
98 }
99
100 void Device::stop()
101 {
102         assert(session_);
103         session_->stop();
104 }
105
106 } // namespace devices
107 } // namespace pv