]> sigrok.org Git - pulseview.git/blame - pv/session.hpp
Add a tooltip for the "Stack decoder" button/dropdown.
[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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
2953961c
JH
18 */
19
8e99ef96
JH
20#ifndef PULSEVIEW_PV_SESSION_HPP
21#define PULSEVIEW_PV_SESSION_HPP
2953961c 22
708c5523 23#include <map>
f9abf97e 24#include <memory>
3b68d03d 25#include <mutex>
bfc9f61e 26#include <set>
28a4c9c5 27#include <string>
3b68d03d 28#include <thread>
78b0af3e 29#include <unordered_set>
e3f65ace 30#include <vector>
28a4c9c5 31
009e1503 32#include <QObject>
101e7a9b 33#include <QSettings>
f2edb557 34#include <QString>
009e1503 35
48257a69 36#include "util.hpp"
f4e57597 37#include "views/viewbase.hpp"
48257a69 38
6f925ba9
UH
39using std::function;
40using std::list;
41using std::map;
42using std::mutex;
43using std::recursive_mutex;
44using std::shared_ptr;
45using std::string;
46using std::unordered_set;
47
82c7f640 48struct srd_decoder;
8bd26d8b 49struct srd_channel;
82c7f640 50
e8d00928 51namespace sigrok {
7d80a651
JH
52class Analog;
53class Channel;
54class Device;
fd22c71c 55class InputFormat;
7d80a651
JH
56class Logic;
57class Meta;
fd22c71c 58class OutputFormat;
7d80a651
JH
59class Packet;
60class Session;
870ea3db 61} // namespace sigrok
e8d00928 62
51e77110
JH
63namespace pv {
64
dc0867ff
JH
65class DeviceManager;
66
1b1ec774
JH
67namespace data {
68class Analog;
f3d66e52 69class AnalogSegment;
1b1ec774 70class Logic;
f3d66e52 71class LogicSegment;
bf0edd2b 72class SignalBase;
02412f0b 73class SignalData;
1b1ec774 74}
8d634081 75
da30ecb7
JH
76namespace devices {
77class Device;
78}
79
0f8f8c18
SA
80namespace toolbars {
81class MainBar;
82}
83
f4e57597
SA
84namespace views {
85class ViewBase;
8d634081 86}
2953961c 87
2b81ae46 88class Session : public QObject
2953961c 89{
009e1503
JH
90 Q_OBJECT
91
5b7cf66c
JH
92public:
93 enum capture_state {
94 Stopped,
2b49eeb0 95 AwaitingTrigger,
5b7cf66c
JH
96 Running
97 };
98
2953961c 99public:
101e7a9b 100 Session(DeviceManager &device_manager, QString name);
2953961c 101
2b81ae46 102 ~Session();
2953961c 103
4cb0b033
JH
104 DeviceManager& device_manager();
105
106 const DeviceManager& device_manager() const;
107
6f925ba9 108 shared_ptr<sigrok::Session> session() const;
1f4caa77 109
6f925ba9 110 shared_ptr<devices::Device> device() const;
dc0867ff 111
101e7a9b
SA
112 QString name() const;
113
114 void set_name(QString name);
115
6f925ba9 116 const list< shared_ptr<views::ViewBase> > views() const;
36a8185e 117
6f925ba9 118 shared_ptr<views::ViewBase> main_view() const;
0f8f8c18 119
6f925ba9 120 shared_ptr<pv::toolbars::MainBar> main_bar() const;
0f8f8c18 121
6f925ba9 122 void set_main_bar(shared_ptr<pv::toolbars::MainBar> main_bar);
fd22c71c 123
5ccfc97e
SA
124 /**
125 * Indicates whether the captured data was saved to disk already or not
126 */
127 bool data_saved() const;
128
101e7a9b
SA
129 void save_settings(QSettings &settings) const;
130
131 void restore_settings(QSettings &settings);
132
fd22c71c
SA
133 /**
134 * Attempts to set device instance, may fall back to demo if needed
135 */
6f925ba9 136 void select_device(shared_ptr<devices::Device> device);
fd22c71c 137
d64d1596
JH
138 /**
139 * Sets device instance that will be used in the next capture session.
140 */
6f925ba9 141 void set_device(shared_ptr<devices::Device> device);
dc0867ff 142
6fd0b639
JH
143 void set_default_device();
144
6f925ba9 145 void load_init_file(const string &file_name, const string &format);
fd22c71c
SA
146
147 void load_file(QString file_name,
6f925ba9
UH
148 shared_ptr<sigrok::InputFormat> format = nullptr,
149 const map<string, Glib::VariantBase> &options =
150 map<string, Glib::VariantBase>());
fd22c71c 151
5b7cf66c
JH
152 capture_state get_capture_state() const;
153
6f925ba9 154 void start_capture(function<void (const QString)> error_handler);
274d4f13 155
5b7cf66c
JH
156 void stop_capture();
157
2220e942
SA
158 double get_samplerate() const;
159
6f925ba9 160 void register_view(shared_ptr<views::ViewBase> view);
47e9e7bb 161
6f925ba9 162 void deregister_view(shared_ptr<views::ViewBase> view);
47e9e7bb 163
6f925ba9 164 bool has_view(shared_ptr<views::ViewBase> view);
101e7a9b 165
c063290a 166 const unordered_set< shared_ptr<data::SignalBase> > signalbases() const;
e3f65ace 167
269528f5 168#ifdef ENABLE_DECODE
4e5a4405 169 bool add_decoder(srd_decoder *const dec);
82c7f640 170
6f925ba9 171 void remove_decode_signal(shared_ptr<data::SignalBase> signalbase);
269528f5 172#endif
c51482b3 173
6ac96c2e
JH
174private:
175 void set_capture_state(capture_state state);
176
ffe00119 177 void update_signals();
b087ba7f 178
6f925ba9
UH
179 shared_ptr<data::SignalBase> signalbase_from_channel(
180 shared_ptr<sigrok::Channel> channel) const;
3ddcc083 181
2953961c 182private:
6f925ba9 183 void sample_thread_proc(function<void (const QString)> error_handler);
2e2946fe 184
5e6967cb
SA
185 void free_unused_memory();
186
da30ecb7 187 void feed_in_header();
eec446e1 188
6f925ba9 189 void feed_in_meta(shared_ptr<sigrok::Meta> meta);
aba1dd16 190
48257a69
SA
191 void feed_in_trigger();
192
82f50b10
JH
193 void feed_in_frame_begin();
194
6f925ba9 195 void feed_in_logic(shared_ptr<sigrok::Logic> logic);
aba1dd16 196
6f925ba9 197 void feed_in_analog(shared_ptr<sigrok::Analog> analog);
2953961c 198
6f925ba9
UH
199 void data_feed_in(shared_ptr<sigrok::Device> device,
200 shared_ptr<sigrok::Packet> packet);
2953961c
JH
201
202private:
8dbbc7f0 203 DeviceManager &device_manager_;
6f925ba9 204 shared_ptr<devices::Device> device_;
101e7a9b 205 QString default_name_, name_;
d64d1596 206
6f925ba9
UH
207 list< shared_ptr<views::ViewBase> > views_;
208 shared_ptr<pv::views::ViewBase> main_view_;
0f8f8c18 209
6f925ba9 210 shared_ptr<pv::toolbars::MainBar> main_bar_;
47e9e7bb 211
6f925ba9 212 mutable mutex sampling_mutex_; //!< Protects access to capture_state_.
8dbbc7f0 213 capture_state capture_state_;
5b7cf66c 214
6f925ba9
UH
215 unordered_set< shared_ptr<data::SignalBase> > signalbases_;
216 unordered_set< shared_ptr<data::SignalData> > all_signal_data_;
3868e5fa 217
6f925ba9
UH
218 mutable recursive_mutex data_mutex_;
219 shared_ptr<data::Logic> logic_data_;
ff008de6 220 uint64_t cur_samplerate_;
6f925ba9
UH
221 shared_ptr<data::LogicSegment> cur_logic_segment_;
222 map< shared_ptr<sigrok::Channel>, shared_ptr<data::AnalogSegment> >
f3d66e52 223 cur_analog_segments_;
009e1503 224
8dbbc7f0 225 std::thread sampling_thread_;
2e2946fe 226
e7216ae0 227 bool out_of_memory_;
5ccfc97e 228 bool data_saved_;
e7216ae0 229
e9213170 230Q_SIGNALS:
6ac96c2e 231 void capture_state_changed(int state);
91f8fe8c 232 void device_changed();
6ac96c2e 233
69dd2b03
JH
234 void signals_changed();
235
101e7a9b
SA
236 void name_changed();
237
48257a69
SA
238 void trigger_event(util::Timestamp location);
239
82f50b10
JH
240 void frame_began();
241
1f374035
JH
242 void data_received();
243
244 void frame_ended();
3a21afa6 245
f4e57597 246 void add_view(const QString &title, views::ViewType type,
3a21afa6 247 Session *session);
5ccfc97e
SA
248
249public Q_SLOTS:
250 void on_data_saved();
2953961c
JH
251};
252
51e77110
JH
253} // namespace pv
254
8e99ef96 255#endif // PULSEVIEW_PV_SESSION_HPP