]> sigrok.org Git - pulseview.git/blame - pv/session.hpp
Move signals to views and make Session handle multiple views
[pulseview.git] / pv / session.hpp
CommitLineData
2953961c 1/*
b3f22de0 2 * This file is part of the PulseView project.
2953961c 3 *
1bc6525b 4 * Copyright (C) 2012-14 Joel Holdsworth <joel@airwebreathe.org.uk>
2953961c
JH
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
8e99ef96
JH
21#ifndef PULSEVIEW_PV_SESSION_HPP
22#define PULSEVIEW_PV_SESSION_HPP
2953961c 23
708c5523 24#include <map>
f9abf97e 25#include <memory>
3b68d03d 26#include <mutex>
bfc9f61e 27#include <set>
28a4c9c5 28#include <string>
3b68d03d 29#include <thread>
78b0af3e 30#include <unordered_set>
e3f65ace 31#include <vector>
28a4c9c5 32
627ffe3f 33#ifdef _WIN32
35750e4d 34// Windows: Avoid boost/thread namespace pollution (which includes windows.h).
627ffe3f
VI
35#define NOGDI
36#define NORESOURCE
37#endif
e71eb81c 38#include <boost/thread/shared_mutex.hpp>
aca64cac 39
009e1503 40#include <QObject>
f2edb557 41#include <QString>
009e1503 42
48257a69
SA
43#include "util.hpp"
44
82c7f640 45struct srd_decoder;
8bd26d8b 46struct srd_channel;
82c7f640 47
e8d00928 48namespace sigrok {
7d80a651
JH
49class Analog;
50class Channel;
51class Device;
52class Logic;
53class Meta;
54class Packet;
55class Session;
e8d00928
ML
56}
57
51e77110
JH
58namespace pv {
59
dc0867ff
JH
60class DeviceManager;
61
1b1ec774
JH
62namespace data {
63class Analog;
f3d66e52 64class AnalogSegment;
1b1ec774 65class Logic;
f3d66e52 66class LogicSegment;
bf0edd2b 67class SignalBase;
02412f0b 68class SignalData;
1b1ec774 69}
8d634081 70
da30ecb7
JH
71namespace devices {
72class Device;
73}
74
8d634081 75namespace view {
b9329558 76class DecodeTrace;
47e9e7bb 77class View;
8d634081 78}
2953961c 79
2b81ae46 80class Session : public QObject
2953961c 81{
009e1503
JH
82 Q_OBJECT
83
5b7cf66c
JH
84public:
85 enum capture_state {
86 Stopped,
2b49eeb0 87 AwaitingTrigger,
5b7cf66c
JH
88 Running
89 };
90
2953961c 91public:
2b81ae46 92 Session(DeviceManager &device_manager);
2953961c 93
2b81ae46 94 ~Session();
2953961c 95
4cb0b033
JH
96 DeviceManager& device_manager();
97
98 const DeviceManager& device_manager() const;
99
da30ecb7 100 std::shared_ptr<sigrok::Session> session() const;
1f4caa77 101
da30ecb7 102 std::shared_ptr<devices::Device> device() const;
dc0867ff 103
d64d1596
JH
104 /**
105 * Sets device instance that will be used in the next capture session.
106 */
da30ecb7 107 void set_device(std::shared_ptr<devices::Device> device);
dc0867ff 108
6fd0b639
JH
109 void set_default_device();
110
5b7cf66c
JH
111 capture_state get_capture_state() const;
112
d2344534 113 void start_capture(std::function<void (const QString)> error_handler);
274d4f13 114
5b7cf66c
JH
115 void stop_capture();
116
2220e942
SA
117 double get_samplerate() const;
118
47e9e7bb
SA
119 void register_view(std::shared_ptr<pv::view::View> view);
120
121 void deregister_view(std::shared_ptr<pv::view::View> view);
122
123 const std::unordered_set< std::shared_ptr<data::SignalBase> >
124 signalbases() const;
e3f65ace 125
269528f5 126#ifdef ENABLE_DECODE
4e5a4405 127 bool add_decoder(srd_decoder *const dec);
82c7f640 128
f9abf97e 129 std::vector< std::shared_ptr<view::DecodeTrace> >
38eeddea
JH
130 get_decode_signals() const;
131
b9329558 132 void remove_decode_signal(view::DecodeTrace *signal);
269528f5 133#endif
c51482b3 134
6ac96c2e
JH
135private:
136 void set_capture_state(capture_state state);
137
ffe00119 138 void update_signals();
b087ba7f 139
cbd2a2de 140 std::shared_ptr<data::SignalBase> signalbase_from_channel(
e8d00928 141 std::shared_ptr<sigrok::Channel> channel) const;
3ddcc083 142
2953961c 143private:
2b05d311 144 void sample_thread_proc(std::function<void (const QString)> error_handler);
2e2946fe 145
da30ecb7 146 void feed_in_header();
eec446e1 147
da30ecb7 148 void feed_in_meta(std::shared_ptr<sigrok::Meta> meta);
aba1dd16 149
48257a69
SA
150 void feed_in_trigger();
151
82f50b10
JH
152 void feed_in_frame_begin();
153
e8d00928 154 void feed_in_logic(std::shared_ptr<sigrok::Logic> logic);
aba1dd16 155
e8d00928 156 void feed_in_analog(std::shared_ptr<sigrok::Analog> analog);
2953961c 157
e8d00928
ML
158 void data_feed_in(std::shared_ptr<sigrok::Device> device,
159 std::shared_ptr<sigrok::Packet> packet);
2953961c
JH
160
161private:
8dbbc7f0 162 DeviceManager &device_manager_;
da30ecb7 163 std::shared_ptr<devices::Device> device_;
d64d1596 164
47e9e7bb
SA
165 std::unordered_set< std::shared_ptr<pv::view::View> > views_;
166
8dbbc7f0 167 std::vector< std::shared_ptr<view::DecodeTrace> > decode_traces_;
82c7f640 168
8f6b98ff 169 mutable std::mutex sampling_mutex_; //!< Protects access to capture_state_.
8dbbc7f0 170 capture_state capture_state_;
5b7cf66c 171
bf0edd2b 172
47e9e7bb
SA
173 std::unordered_set< std::shared_ptr<data::SignalBase> > signalbases_;
174 std::unordered_set< std::shared_ptr<data::SignalData> > all_signal_data_;
3868e5fa 175
8524a597 176 mutable std::recursive_mutex data_mutex_;
8dbbc7f0 177 std::shared_ptr<data::Logic> logic_data_;
ff008de6 178 uint64_t cur_samplerate_;
f3d66e52
JH
179 std::shared_ptr<data::LogicSegment> cur_logic_segment_;
180 std::map< std::shared_ptr<sigrok::Channel>, std::shared_ptr<data::AnalogSegment> >
181 cur_analog_segments_;
009e1503 182
8dbbc7f0 183 std::thread sampling_thread_;
2e2946fe 184
e7216ae0
SA
185 bool out_of_memory_;
186
e9213170 187Q_SIGNALS:
6ac96c2e 188 void capture_state_changed(int state);
20f81a58 189 void device_selected();
6ac96c2e 190
69dd2b03
JH
191 void signals_changed();
192
48257a69
SA
193 void trigger_event(util::Timestamp location);
194
82f50b10
JH
195 void frame_began();
196
1f374035
JH
197 void data_received();
198
199 void frame_ended();
2953961c
JH
200};
201
51e77110
JH
202} // namespace pv
203
8e99ef96 204#endif // PULSEVIEW_PV_SESSION_HPP