]> sigrok.org Git - pulseview.git/blame - pv/session.hpp
Fix some signal/slot bugs
[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
5f9a5209
SA
23#ifdef ENABLE_FLOW
24#include <atomic>
25#include <condition_variable>
26#endif
27
7671200b 28#include <functional>
708c5523 29#include <map>
f9abf97e 30#include <memory>
3b68d03d 31#include <mutex>
bfc9f61e 32#include <set>
28a4c9c5 33#include <string>
3b68d03d 34#include <thread>
e3f65ace 35#include <vector>
28a4c9c5 36
009e1503 37#include <QObject>
101e7a9b 38#include <QSettings>
f2edb557 39#include <QString>
5322d2d0 40#include <QElapsedTimer>
009e1503 41
5f9a5209
SA
42#ifdef ENABLE_FLOW
43#include <gstreamermm.h>
44#include <libsigrokflow/libsigrokflow.hpp>
45#endif
46
f2739bae 47#include "metadata_obj.hpp"
48257a69 48#include "util.hpp"
f4e57597 49#include "views/viewbase.hpp"
48257a69 50
6f925ba9 51using std::function;
6f925ba9
UH
52using std::map;
53using std::mutex;
54using std::recursive_mutex;
55using std::shared_ptr;
56using std::string;
57using std::unordered_set;
58
5f9a5209
SA
59#ifdef ENABLE_FLOW
60using Glib::RefPtr;
61using Gst::AppSink;
62using Gst::Element;
63using Gst::Pipeline;
64#endif
65
82c7f640 66struct srd_decoder;
8bd26d8b 67struct srd_channel;
82c7f640 68
e8d00928 69namespace sigrok {
7d80a651
JH
70class Analog;
71class Channel;
72class Device;
fd22c71c 73class InputFormat;
7d80a651
JH
74class Logic;
75class Meta;
724f29f3 76class Option;
fd22c71c 77class OutputFormat;
7d80a651
JH
78class Packet;
79class Session;
870ea3db 80} // namespace sigrok
e8d00928 81
724f29f3
GS
82using sigrok::Option;
83
51e77110
JH
84namespace pv {
85
dc0867ff
JH
86class DeviceManager;
87
1b1ec774
JH
88namespace data {
89class Analog;
f3d66e52 90class AnalogSegment;
ad908057 91class DecodeSignal;
1b1ec774 92class Logic;
f3d66e52 93class LogicSegment;
bf0edd2b 94class SignalBase;
02412f0b 95class SignalData;
1b1ec774 96}
8d634081 97
da30ecb7
JH
98namespace devices {
99class Device;
100}
101
0f8f8c18
SA
102namespace toolbars {
103class MainBar;
104}
105
f4e57597
SA
106namespace views {
107class ViewBase;
8d634081 108}
2953961c 109
2c5b0f46 110using pv::views::ViewType;
f2739bae 111
2b81ae46 112class Session : public QObject
2953961c 113{
009e1503
JH
114 Q_OBJECT
115
5b7cf66c
JH
116public:
117 enum capture_state {
118 Stopped,
2b49eeb0 119 AwaitingTrigger,
5b7cf66c
JH
120 Running
121 };
122
419ec4e1
SA
123 static shared_ptr<sigrok::Context> sr_context;
124
2953961c 125public:
101e7a9b 126 Session(DeviceManager &device_manager, QString name);
2953961c 127
2b81ae46 128 ~Session();
2953961c 129
4cb0b033
JH
130 DeviceManager& device_manager();
131
132 const DeviceManager& device_manager() const;
133
6f925ba9 134 shared_ptr<sigrok::Session> session() const;
1f4caa77 135
6f925ba9 136 shared_ptr<devices::Device> device() const;
dc0867ff 137
101e7a9b 138 QString name() const;
101e7a9b
SA
139 void set_name(QString name);
140
2db6e874 141 const vector< shared_ptr<views::ViewBase> > views() const;
36a8185e 142
6f925ba9 143 shared_ptr<views::ViewBase> main_view() const;
6f925ba9 144 shared_ptr<pv::toolbars::MainBar> main_bar() const;
6f925ba9 145 void set_main_bar(shared_ptr<pv::toolbars::MainBar> main_bar);
fd22c71c 146
5ccfc97e
SA
147 /**
148 * Indicates whether the captured data was saved to disk already or not
149 */
150 bool data_saved() const;
151
323715c4 152 void save_setup(QSettings &settings) const;
101e7a9b 153 void save_settings(QSettings &settings) const;
323715c4 154 void restore_setup(QSettings &settings);
101e7a9b
SA
155 void restore_settings(QSettings &settings);
156
fd22c71c
SA
157 /**
158 * Attempts to set device instance, may fall back to demo if needed
159 */
6f925ba9 160 void select_device(shared_ptr<devices::Device> device);
fd22c71c 161
d64d1596
JH
162 /**
163 * Sets device instance that will be used in the next capture session.
164 */
6f925ba9 165 void set_device(shared_ptr<devices::Device> device);
6fd0b639 166 void set_default_device();
31d1aca6
SA
167 bool using_file_device() const;
168
96dbf014 169 void load_init_file(const string &file_name, const string &format,
611c8625 170 const string &setup_file_name);
fd22c71c 171
96dbf014 172 void load_file(QString file_name, QString setup_file_name = QString(),
6f925ba9
UH
173 shared_ptr<sigrok::InputFormat> format = nullptr,
174 const map<string, Glib::VariantBase> &options =
175 map<string, Glib::VariantBase>());
fd22c71c 176
5b7cf66c 177 capture_state get_capture_state() const;
6f925ba9 178 void start_capture(function<void (const QString)> error_handler);
5b7cf66c
JH
179 void stop_capture();
180
2220e942
SA
181 double get_samplerate() const;
182
9009d9b5 183 uint32_t get_segment_count() const;
7f965464 184
7ea2a4ff
SA
185 vector<util::Timestamp> get_triggers(uint32_t segment_id) const;
186
6f925ba9 187 void register_view(shared_ptr<views::ViewBase> view);
6f925ba9 188 void deregister_view(shared_ptr<views::ViewBase> view);
6f925ba9 189 bool has_view(shared_ptr<views::ViewBase> view);
101e7a9b 190
56c4de9a 191 const vector< shared_ptr<data::SignalBase> > signalbases() const;
999869aa
SA
192 void add_generated_signal(shared_ptr<data::SignalBase> signal);
193 void remove_generated_signal(shared_ptr<data::SignalBase> signal);
e3f65ace 194
89914a86
SA
195 bool all_segments_complete(uint32_t segment_id) const;
196
269528f5 197#ifdef ENABLE_DECODE
e771b42d 198 shared_ptr<data::DecodeSignal> add_decode_signal();
82c7f640 199
ad908057 200 void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
269528f5 201#endif
c51482b3 202
f2739bae
SA
203 MetadataObjManager* metadata_obj_manager();
204
6ac96c2e
JH
205private:
206 void set_capture_state(capture_state state);
207
ffe00119 208 void update_signals();
b087ba7f 209
6f925ba9
UH
210 shared_ptr<data::SignalBase> signalbase_from_channel(
211 shared_ptr<sigrok::Channel> channel) const;
3ddcc083 212
724f29f3
GS
213 static map<string, Glib::VariantBase> input_format_options(
214 vector<string> user_spec,
215 map<string, shared_ptr<Option>> fmt_opts);
216
6f925ba9 217 void sample_thread_proc(function<void (const QString)> error_handler);
2e2946fe 218
5e6967cb
SA
219 void free_unused_memory();
220
4e86ec70 221 void signal_new_segment();
558ad6ce 222 void signal_segment_completed();
4e86ec70 223
5f9a5209
SA
224#ifdef ENABLE_FLOW
225 bool on_gst_bus_message(const Glib::RefPtr<Gst::Bus>& bus, const Glib::RefPtr<Gst::Message>& message);
226
227 Gst::FlowReturn on_gst_new_sample();
228#endif
229
da30ecb7 230 void feed_in_header();
6f925ba9 231 void feed_in_meta(shared_ptr<sigrok::Meta> meta);
48257a69 232 void feed_in_trigger();
82f50b10 233 void feed_in_frame_begin();
837bb15a 234 void feed_in_frame_end();
6f925ba9 235 void feed_in_logic(shared_ptr<sigrok::Logic> logic);
6f925ba9 236 void feed_in_analog(shared_ptr<sigrok::Analog> analog);
2953961c 237
6f925ba9
UH
238 void data_feed_in(shared_ptr<sigrok::Device> device,
239 shared_ptr<sigrok::Packet> packet);
2953961c 240
056f443e
SA
241Q_SIGNALS:
242 void capture_state_changed(int state);
243 void device_changed();
244
245 void signals_changed();
246
247 void name_changed();
248
7ea2a4ff 249 void trigger_event(int segment_id, util::Timestamp location);
056f443e
SA
250
251 void new_segment(int new_segment_id);
252 void segment_completed(int segment_id);
253
254 void data_received();
255
2c5b0f46 256 void add_view(ViewType type, Session *session);
056f443e
SA
257
258public Q_SLOTS:
259 void on_data_saved();
260
97378470
SA
261#ifdef ENABLE_DECODE
262 void on_new_decoders_selected(vector<const srd_decoder*> decoders);
263#endif
264
2953961c 265private:
f9a0fd83
SA
266 bool shutting_down_;
267
8dbbc7f0 268 DeviceManager &device_manager_;
6f925ba9 269 shared_ptr<devices::Device> device_;
101e7a9b 270 QString default_name_, name_;
d64d1596 271
2db6e874 272 vector< shared_ptr<views::ViewBase> > views_;
6f925ba9 273 shared_ptr<pv::views::ViewBase> main_view_;
0f8f8c18 274
6f925ba9 275 shared_ptr<pv::toolbars::MainBar> main_bar_;
47e9e7bb 276
578d0735 277 mutable mutex sampling_mutex_; //!< Protects access to capture_state_
8dbbc7f0 278 capture_state capture_state_;
5b7cf66c 279
56c4de9a 280 vector< shared_ptr<data::SignalBase> > signalbases_;
6f925ba9 281 unordered_set< shared_ptr<data::SignalData> > all_signal_data_;
3868e5fa 282
578d0735 283 /// trigger_list_ contains pairs of <segment_id, timestamp> values
7ea2a4ff
SA
284 vector< std::pair<uint32_t, util::Timestamp> > trigger_list_;
285
6f925ba9
UH
286 mutable recursive_mutex data_mutex_;
287 shared_ptr<data::Logic> logic_data_;
ff008de6 288 uint64_t cur_samplerate_;
6f925ba9
UH
289 shared_ptr<data::LogicSegment> cur_logic_segment_;
290 map< shared_ptr<sigrok::Channel>, shared_ptr<data::AnalogSegment> >
f3d66e52 291 cur_analog_segments_;
4e86ec70 292 int32_t highest_segment_id_;
009e1503 293
8dbbc7f0 294 std::thread sampling_thread_;
2e2946fe 295
e7216ae0 296 bool out_of_memory_;
5ccfc97e 297 bool data_saved_;
837bb15a 298 bool frame_began_;
5f9a5209 299
5322d2d0 300 QElapsedTimer acq_time_;
268fd2b8 301
f2739bae
SA
302 MetadataObjManager metadata_obj_manager_;
303
5f9a5209
SA
304#ifdef ENABLE_FLOW
305 RefPtr<Pipeline> pipeline_;
306 RefPtr<Element> source_;
307 RefPtr<AppSink> sink_;
308
309 mutable mutex pipeline_done_mutex_;
310 mutable condition_variable pipeline_done_cond_;
311 atomic<bool> pipeline_done_interrupt_;
312#endif
2953961c
JH
313};
314
51e77110
JH
315} // namespace pv
316
8e99ef96 317#endif // PULSEVIEW_PV_SESSION_HPP