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
29 #include <unordered_set>
37 #include "views/viewbase.hpp"
43 using std::recursive_mutex;
44 using std::shared_ptr;
46 using std::unordered_set;
92 class Session : public QObject
103 static shared_ptr<sigrok::Context> sr_context;
106 Session(DeviceManager &device_manager, QString name);
110 DeviceManager& device_manager();
112 const DeviceManager& device_manager() const;
114 shared_ptr<sigrok::Session> session() const;
116 shared_ptr<devices::Device> device() const;
118 QString name() const;
120 void set_name(QString name);
122 const list< shared_ptr<views::ViewBase> > views() const;
124 shared_ptr<views::ViewBase> main_view() const;
126 shared_ptr<pv::toolbars::MainBar> main_bar() const;
128 void set_main_bar(shared_ptr<pv::toolbars::MainBar> main_bar);
131 * Indicates whether the captured data was saved to disk already or not
133 bool data_saved() const;
135 void save_settings(QSettings &settings) const;
137 void restore_settings(QSettings &settings);
140 * Attempts to set device instance, may fall back to demo if needed
142 void select_device(shared_ptr<devices::Device> device);
145 * Sets device instance that will be used in the next capture session.
147 void set_device(shared_ptr<devices::Device> device);
149 void set_default_device();
151 void load_init_file(const string &file_name, const string &format);
153 void load_file(QString file_name,
154 shared_ptr<sigrok::InputFormat> format = nullptr,
155 const map<string, Glib::VariantBase> &options =
156 map<string, Glib::VariantBase>());
158 capture_state get_capture_state() const;
160 void start_capture(function<void (const QString)> error_handler);
164 double get_samplerate() const;
166 int get_segment_count() const;
168 void register_view(shared_ptr<views::ViewBase> view);
170 void deregister_view(shared_ptr<views::ViewBase> view);
172 bool has_view(shared_ptr<views::ViewBase> view);
174 const unordered_set< shared_ptr<data::SignalBase> > signalbases() const;
177 shared_ptr<data::DecodeSignal> add_decode_signal();
179 void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
183 void set_capture_state(capture_state state);
185 void update_signals();
187 shared_ptr<data::SignalBase> signalbase_from_channel(
188 shared_ptr<sigrok::Channel> channel) const;
190 static map<string, Glib::VariantBase> input_format_options(
191 vector<string> user_spec,
192 map<string, shared_ptr<Option>> fmt_opts);
195 void sample_thread_proc(function<void (const QString)> error_handler);
197 void free_unused_memory();
199 void signal_new_segment();
200 void signal_segment_completed();
202 void feed_in_header();
204 void feed_in_meta(shared_ptr<sigrok::Meta> meta);
206 void feed_in_trigger();
208 void feed_in_frame_begin();
209 void feed_in_frame_end();
211 void feed_in_logic(shared_ptr<sigrok::Logic> logic);
213 void feed_in_analog(shared_ptr<sigrok::Analog> analog);
215 void data_feed_in(shared_ptr<sigrok::Device> device,
216 shared_ptr<sigrok::Packet> packet);
219 DeviceManager &device_manager_;
220 shared_ptr<devices::Device> device_;
221 QString default_name_, name_;
223 list< shared_ptr<views::ViewBase> > views_;
224 shared_ptr<pv::views::ViewBase> main_view_;
226 shared_ptr<pv::toolbars::MainBar> main_bar_;
228 mutable mutex sampling_mutex_; //!< Protects access to capture_state_.
229 capture_state capture_state_;
231 unordered_set< shared_ptr<data::SignalBase> > signalbases_;
232 unordered_set< shared_ptr<data::SignalData> > all_signal_data_;
234 mutable recursive_mutex data_mutex_;
235 shared_ptr<data::Logic> logic_data_;
236 uint64_t cur_samplerate_;
237 shared_ptr<data::LogicSegment> cur_logic_segment_;
238 map< shared_ptr<sigrok::Channel>, shared_ptr<data::AnalogSegment> >
239 cur_analog_segments_;
240 int32_t highest_segment_id_;
242 std::thread sampling_thread_;
249 void capture_state_changed(int state);
250 void device_changed();
252 void signals_changed();
256 void trigger_event(util::Timestamp location);
258 void new_segment(int new_segment_id);
259 void segment_completed(int segment_id);
261 void data_received();
263 void add_view(const QString &title, views::ViewType type,
267 void on_data_saved();
272 #endif // PULSEVIEW_PV_SESSION_HPP