]> sigrok.org Git - pulseview.git/blame - pv/devices/hardwaredevice.cpp
Use device::Devices to represent sigrok Devices
[pulseview.git] / pv / devices / hardwaredevice.cpp
CommitLineData
da30ecb7
JH
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
27using std::shared_ptr;
28using std::static_pointer_cast;
29
30namespace pv {
31namespace devices {
32
33HardwareDevice::HardwareDevice(const std::shared_ptr<sigrok::Context> &context,
34 std::shared_ptr<sigrok::HardwareDevice> device) :
35 context_(context) {
36 device_ = device;
37}
38
39HardwareDevice::~HardwareDevice() {
40 device_->close();
41 if (session_)
42 session_->remove_devices();
43}
44
45shared_ptr<sigrok::HardwareDevice> HardwareDevice::hardware_device() const {
46 return static_pointer_cast<sigrok::HardwareDevice>(device_);
47}
48
49void 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