]> sigrok.org Git - pulseview.git/blame_incremental - pv/devicemanager.hpp
Fix #1089 by updating the signal labels and group labels
[pulseview.git] / pv / devicemanager.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_DEVICEMANAGER_HPP
21#define PULSEVIEW_PV_DEVICEMANAGER_HPP
22
23#include <list>
24#include <map>
25#include <memory>
26#include <set>
27#include <string>
28#include <vector>
29
30using std::list;
31using std::map;
32using std::set;
33using std::shared_ptr;
34using std::string;
35using std::vector;
36
37namespace Glib {
38class VariantBase;
39}
40
41namespace sigrok {
42class ConfigKey;
43class Context;
44class Driver;
45}
46
47using sigrok::ConfigKey;
48
49namespace pv {
50
51namespace devices {
52class Device;
53class HardwareDevice;
54}
55
56class Session;
57
58class DeviceManager
59{
60public:
61 DeviceManager(shared_ptr<sigrok::Context> context,
62 std::string driver, bool do_scan);
63
64 ~DeviceManager() = default;
65
66 const shared_ptr<sigrok::Context>& context() const;
67
68 shared_ptr<sigrok::Context> context();
69
70 const list< shared_ptr<devices::HardwareDevice> >& devices() const;
71 shared_ptr<devices::HardwareDevice> user_spec_device() const;
72
73 list< shared_ptr<devices::HardwareDevice> > driver_scan(
74 shared_ptr<sigrok::Driver> driver,
75 map<const sigrok::ConfigKey *, Glib::VariantBase> drvopts);
76
77 const map<string, string> get_device_info(
78 const shared_ptr<devices::Device> device);
79
80 const shared_ptr<devices::HardwareDevice> find_device_from_info(
81 const map<string, string> search_info);
82
83private:
84 bool compare_devices(shared_ptr<devices::Device> a,
85 shared_ptr<devices::Device> b);
86
87 static map<const ConfigKey *, Glib::VariantBase>
88 drive_scan_options(vector<string> user_spec,
89 set<const ConfigKey *> driver_opts);
90
91protected:
92 shared_ptr<sigrok::Context> context_;
93 list< shared_ptr<devices::HardwareDevice> > devices_;
94 shared_ptr<devices::HardwareDevice> user_spec_device_;
95};
96
97} // namespace pv
98
99#endif // PULSEVIEW_PV_DEVICEMANAGER_HPP