2 * This file is part of the PulseView project.
4 * Copyright (C) 2012-14 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_SESSION_HPP
21 #define PULSEVIEW_PV_SESSION_HPP
25 #include <condition_variable>
35 #include <unordered_set>
41 #include <QElapsedTimer>
44 #include <gstreamermm.h>
45 #include <libsigrokflow/libsigrokflow.hpp>
49 #include "views/viewbase.hpp"
56 using std::recursive_mutex
;
57 using std::shared_ptr
;
59 using std::unordered_set
;
112 class Session
: public QObject
123 static shared_ptr
<sigrok::Context
> sr_context
;
126 Session(DeviceManager
&device_manager
, QString name
);
130 DeviceManager
& device_manager();
132 const DeviceManager
& device_manager() const;
134 shared_ptr
<sigrok::Session
> session() const;
136 shared_ptr
<devices::Device
> device() const;
138 QString
name() const;
140 void set_name(QString name
);
142 const list
< shared_ptr
<views::ViewBase
> > views() const;
144 shared_ptr
<views::ViewBase
> main_view() const;
146 shared_ptr
<pv::toolbars::MainBar
> main_bar() const;
148 void set_main_bar(shared_ptr
<pv::toolbars::MainBar
> main_bar
);
151 * Indicates whether the captured data was saved to disk already or not
153 bool data_saved() const;
155 void save_setup(QSettings
&settings
) const;
157 void save_settings(QSettings
&settings
) const;
159 void restore_setup(QSettings
&settings
);
161 void restore_settings(QSettings
&settings
);
164 * Attempts to set device instance, may fall back to demo if needed
166 void select_device(shared_ptr
<devices::Device
> device
);
169 * Sets device instance that will be used in the next capture session.
171 void set_device(shared_ptr
<devices::Device
> device
);
173 void set_default_device();
175 void load_init_file(const string
&file_name
, const string
&format
,
176 const string
&setup_file_name
);
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
>());
183 capture_state
get_capture_state() const;
185 void start_capture(function
<void (const QString
)> error_handler
);
189 double get_samplerate() const;
191 uint32_t get_segment_count() const;
193 vector
<util::Timestamp
> get_triggers(uint32_t segment_id
) const;
195 void register_view(shared_ptr
<views::ViewBase
> view
);
197 void deregister_view(shared_ptr
<views::ViewBase
> view
);
199 bool has_view(shared_ptr
<views::ViewBase
> view
);
201 const unordered_set
< shared_ptr
<data::SignalBase
> > signalbases() const;
203 bool all_segments_complete(uint32_t segment_id
) const;
206 shared_ptr
<data::DecodeSignal
> add_decode_signal();
208 void remove_decode_signal(shared_ptr
<data::DecodeSignal
> signal
);
212 void set_capture_state(capture_state state
);
214 void update_signals();
216 shared_ptr
<data::SignalBase
> signalbase_from_channel(
217 shared_ptr
<sigrok::Channel
> channel
) const;
219 static map
<string
, Glib::VariantBase
> input_format_options(
220 vector
<string
> user_spec
,
221 map
<string
, shared_ptr
<Option
>> fmt_opts
);
223 void sample_thread_proc(function
<void (const QString
)> error_handler
);
225 void free_unused_memory();
227 void signal_new_segment();
228 void signal_segment_completed();
231 bool on_gst_bus_message(const Glib::RefPtr
<Gst::Bus
>& bus
, const Glib::RefPtr
<Gst::Message
>& message
);
233 Gst::FlowReturn
on_gst_new_sample();
236 void feed_in_header();
238 void feed_in_meta(shared_ptr
<sigrok::Meta
> meta
);
240 void feed_in_trigger();
242 void feed_in_frame_begin();
243 void feed_in_frame_end();
245 void feed_in_logic(shared_ptr
<sigrok::Logic
> logic
);
247 void feed_in_analog(shared_ptr
<sigrok::Analog
> analog
);
249 void data_feed_in(shared_ptr
<sigrok::Device
> device
,
250 shared_ptr
<sigrok::Packet
> packet
);
253 void capture_state_changed(int state
);
254 void device_changed();
256 void signals_changed();
260 void trigger_event(int segment_id
, util::Timestamp location
);
262 void new_segment(int new_segment_id
);
263 void segment_completed(int segment_id
);
265 void data_received();
267 void add_view(views::ViewType type
, Session
*session
);
270 void on_data_saved();
273 void on_new_decoders_selected(vector
<const srd_decoder
*> decoders
);
277 DeviceManager
&device_manager_
;
278 shared_ptr
<devices::Device
> device_
;
279 QString default_name_
, name_
;
281 list
< shared_ptr
<views::ViewBase
> > views_
;
282 shared_ptr
<pv::views::ViewBase
> main_view_
;
284 shared_ptr
<pv::toolbars::MainBar
> main_bar_
;
286 mutable mutex sampling_mutex_
; //!< Protects access to capture_state_.
287 capture_state capture_state_
;
289 unordered_set
< shared_ptr
<data::SignalBase
> > signalbases_
;
290 unordered_set
< shared_ptr
<data::SignalData
> > all_signal_data_
;
292 /// trigger_list_ contains pairs of <segment_id, timestamp> values.
293 vector
< std::pair
<uint32_t, util::Timestamp
> > trigger_list_
;
295 mutable recursive_mutex data_mutex_
;
296 shared_ptr
<data::Logic
> logic_data_
;
297 uint64_t cur_samplerate_
;
298 shared_ptr
<data::LogicSegment
> cur_logic_segment_
;
299 map
< shared_ptr
<sigrok::Channel
>, shared_ptr
<data::AnalogSegment
> >
300 cur_analog_segments_
;
301 int32_t highest_segment_id_
;
303 std::thread sampling_thread_
;
309 QElapsedTimer acq_time_
;
312 RefPtr
<Pipeline
> pipeline_
;
313 RefPtr
<Element
> source_
;
314 RefPtr
<AppSink
> sink_
;
316 mutable mutex pipeline_done_mutex_
;
317 mutable condition_variable pipeline_done_cond_
;
318 atomic
<bool> pipeline_done_interrupt_
;
324 #endif // PULSEVIEW_PV_SESSION_HPP