]> sigrok.org Git - pulseview.git/blame_incremental - pv/session.hpp
MainBar: Make sure session save path is reset on non-srzip save
[pulseview.git] / pv / session.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012-14 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_SESSION_HPP
21#define PULSEVIEW_PV_SESSION_HPP
22
23#ifdef ENABLE_FLOW
24#include <atomic>
25#include <condition_variable>
26#endif
27
28#include <deque>
29#include <functional>
30#include <map>
31#include <memory>
32#include <mutex>
33#include <set>
34#include <string>
35#include <thread>
36#include <vector>
37
38#include <QObject>
39#include <QSettings>
40#include <QString>
41#include <QElapsedTimer>
42
43#ifdef ENABLE_FLOW
44#include <gstreamermm.h>
45#include <libsigrokflow/libsigrokflow.hpp>
46#endif
47
48#include "metadata_obj.hpp"
49#include "util.hpp"
50#include "views/viewbase.hpp"
51
52using std::deque;
53using std::function;
54using std::map;
55using std::mutex;
56using std::recursive_mutex;
57using std::shared_ptr;
58using std::string;
59using std::unordered_set;
60
61#ifdef ENABLE_FLOW
62using Glib::RefPtr;
63using Gst::AppSink;
64using Gst::Element;
65using Gst::Pipeline;
66#endif
67
68struct srd_decoder;
69struct srd_channel;
70
71namespace sigrok {
72class Analog;
73class Channel;
74class Device;
75class InputFormat;
76class Logic;
77class Meta;
78class Option;
79class OutputFormat;
80class Packet;
81class Session;
82} // namespace sigrok
83
84using sigrok::Option;
85
86namespace pv {
87
88class DeviceManager;
89
90namespace data {
91class Analog;
92class AnalogSegment;
93class DecodeSignal;
94class Logic;
95class LogicSegment;
96class SignalBase;
97class SignalData;
98class SignalGroup;
99}
100
101namespace devices {
102class Device;
103}
104
105namespace toolbars {
106class MainBar;
107}
108
109namespace views {
110class ViewBase;
111}
112
113using pv::views::ViewType;
114
115class Session : public QObject
116{
117 Q_OBJECT
118
119public:
120 enum capture_state {
121 Stopped,
122 AwaitingTrigger,
123 Running
124 };
125
126 static shared_ptr<sigrok::Context> sr_context;
127
128public:
129 Session(DeviceManager &device_manager, QString name);
130
131 ~Session();
132
133 DeviceManager& device_manager();
134
135 const DeviceManager& device_manager() const;
136
137 shared_ptr<sigrok::Session> session() const;
138
139 shared_ptr<devices::Device> device() const;
140
141 QString name() const;
142 void set_name(QString name);
143
144 QString save_path() const;
145 void set_save_path(QString path);
146
147 const vector< shared_ptr<views::ViewBase> > views() const;
148
149 shared_ptr<views::ViewBase> main_view() const;
150 shared_ptr<pv::toolbars::MainBar> main_bar() const;
151 void set_main_bar(shared_ptr<pv::toolbars::MainBar> main_bar);
152
153 /**
154 * Indicates whether the captured data was saved to disk already or not
155 */
156 bool data_saved() const;
157
158 void save_setup(QSettings &settings) const;
159 void save_settings(QSettings &settings) const;
160 void restore_setup(QSettings &settings);
161 void restore_settings(QSettings &settings);
162
163 /**
164 * Attempts to set device instance, may fall back to demo if needed
165 */
166 void select_device(shared_ptr<devices::Device> device);
167
168 /**
169 * Sets device instance that will be used in the next capture session.
170 */
171 void set_device(shared_ptr<devices::Device> device);
172 void set_default_device();
173 bool using_file_device() const;
174
175 void load_init_file(const string &file_name, const string &format,
176 const string &setup_file_name);
177
178 void load_file(QString file_name, QString setup_file_name = QString(),
179 shared_ptr<sigrok::InputFormat> format = nullptr,
180 const map<string, Glib::VariantBase> &options =
181 map<string, Glib::VariantBase>());
182
183 capture_state get_capture_state() const;
184 void start_capture(function<void (const QString)> error_handler);
185 void stop_capture();
186
187 double get_samplerate() const;
188
189 uint32_t get_segment_count() const;
190
191 vector<util::Timestamp> get_triggers(uint32_t segment_id) const;
192
193 void register_view(shared_ptr<views::ViewBase> view);
194 void deregister_view(shared_ptr<views::ViewBase> view);
195 bool has_view(shared_ptr<views::ViewBase> view);
196
197 const vector< shared_ptr<data::SignalBase> > signalbases() const;
198 void add_generated_signal(shared_ptr<data::SignalBase> signal);
199 void remove_generated_signal(shared_ptr<data::SignalBase> signal);
200
201#ifdef ENABLE_DECODE
202 shared_ptr<data::DecodeSignal> add_decode_signal();
203
204 void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
205#endif
206
207 bool all_segments_complete(uint32_t segment_id) const;
208
209 MetadataObjManager* metadata_obj_manager();
210
211private:
212 void set_capture_state(capture_state state);
213
214 void update_signals();
215
216 shared_ptr<data::SignalBase> signalbase_from_channel(
217 shared_ptr<sigrok::Channel> channel) const;
218
219 static map<string, Glib::VariantBase> input_format_options(
220 vector<string> user_spec,
221 map<string, shared_ptr<Option>> fmt_opts);
222
223 void sample_thread_proc(function<void (const QString)> error_handler);
224
225 void free_unused_memory();
226
227 void signal_new_segment();
228 void signal_segment_completed();
229
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
236 void feed_in_header();
237 void feed_in_meta(shared_ptr<sigrok::Meta> meta);
238 void feed_in_trigger();
239 void feed_in_frame_begin();
240 void feed_in_frame_end();
241 void feed_in_logic(shared_ptr<sigrok::Logic> logic);
242 void feed_in_analog(shared_ptr<sigrok::Analog> analog);
243
244 void data_feed_in(shared_ptr<sigrok::Device> device,
245 shared_ptr<sigrok::Packet> packet);
246
247Q_SIGNALS:
248 void capture_state_changed(int state);
249 void device_changed();
250
251 void signals_changed();
252
253 void name_changed();
254
255 void trigger_event(int segment_id, util::Timestamp location);
256
257 void new_segment(int new_segment_id);
258 void segment_completed(int segment_id);
259
260 void data_received();
261
262 void add_view(ViewType type, Session *session);
263
264public Q_SLOTS:
265 void on_data_saved();
266
267#ifdef ENABLE_DECODE
268 void on_new_decoders_selected(vector<const srd_decoder*> decoders);
269#endif
270
271private:
272 bool shutting_down_;
273
274 DeviceManager &device_manager_;
275 shared_ptr<devices::Device> device_;
276 QString default_name_, name_, save_path_;
277
278 vector< shared_ptr<views::ViewBase> > views_;
279 shared_ptr<pv::views::ViewBase> main_view_;
280
281 shared_ptr<pv::toolbars::MainBar> main_bar_;
282
283 mutable mutex sampling_mutex_; //!< Protects access to capture_state_
284 capture_state capture_state_;
285
286 vector< shared_ptr<data::SignalBase> > signalbases_;
287 unordered_set< shared_ptr<data::SignalData> > all_signal_data_;
288 deque<data::SignalGroup*> signal_groups_;
289
290 /// trigger_list_ contains pairs of <segment_id, timestamp> values
291 vector< std::pair<uint32_t, util::Timestamp> > trigger_list_;
292
293 mutable recursive_mutex data_mutex_;
294 shared_ptr<data::Logic> logic_data_;
295 uint64_t cur_samplerate_;
296 shared_ptr<data::LogicSegment> cur_logic_segment_;
297 map< shared_ptr<sigrok::Channel>, shared_ptr<data::AnalogSegment> >
298 cur_analog_segments_;
299 int32_t highest_segment_id_;
300
301 std::thread sampling_thread_;
302
303 bool out_of_memory_;
304 bool data_saved_;
305 bool frame_began_;
306
307 QElapsedTimer acq_time_;
308
309 MetadataObjManager metadata_obj_manager_;
310
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
320};
321
322} // namespace pv
323
324#endif // PULSEVIEW_PV_SESSION_HPP