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