]> sigrok.org Git - pulseview.git/blob - pv/devices/hardwaredevice.cpp
4fa27f6dd7521e8b8a82433c9b5c940bc4bea435
[pulseview.git] / pv / devices / hardwaredevice.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 <QString>
22
23 #include <libsigrokcxx/libsigrokcxx.hpp>
24
25 #include "hardwaredevice.hpp"
26
27 using std::shared_ptr;
28 using std::static_pointer_cast;
29
30 namespace pv {
31 namespace devices {
32
33 HardwareDevice::HardwareDevice(const std::shared_ptr<sigrok::Context> &context,
34         std::shared_ptr<sigrok::HardwareDevice> device) :
35         context_(context) {
36         device_ = device;
37 }
38
39 HardwareDevice::~HardwareDevice() {
40         device_->close();
41         if (session_)
42                 session_->remove_devices();
43 }
44
45 shared_ptr<sigrok::HardwareDevice> HardwareDevice::hardware_device() const {
46         return static_pointer_cast<sigrok::HardwareDevice>(device_);
47 }
48
49 void HardwareDevice::create() {
50         // Open the device
51         try {
52                 device_->open();
53         } catch(const sigrok::Error &e) {
54                 throw QString(e.what());
55         }
56
57         // Set up the session
58         session_ = context_->create_session();
59         session_->add_device(device_);
60 }
61
62 } // namespace devices
63 } // namespace pv