]> sigrok.org Git - pulseview.git/blame - pv/session.hpp
Don't use std:: in the code directly (where possible).
[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
708c5523 23#include <map>
f9abf97e 24#include <memory>
3b68d03d 25#include <mutex>
bfc9f61e 26#include <set>
28a4c9c5 27#include <string>
3b68d03d 28#include <thread>
78b0af3e 29#include <unordered_set>
e3f65ace 30#include <vector>
28a4c9c5 31
627ffe3f 32#ifdef _WIN32
35750e4d 33// Windows: Avoid boost/thread namespace pollution (which includes windows.h).
627ffe3f
VI
34#define NOGDI
35#define NORESOURCE
36#endif
e71eb81c 37#include <boost/thread/shared_mutex.hpp>
aca64cac 38
009e1503 39#include <QObject>
101e7a9b 40#include <QSettings>
f2edb557 41#include <QString>
009e1503 42
48257a69 43#include "util.hpp"
f4e57597 44#include "views/viewbase.hpp"
48257a69 45
6f925ba9
UH
46using std::function;
47using std::list;
48using std::map;
49using std::mutex;
50using std::recursive_mutex;
51using std::shared_ptr;
52using std::string;
53using std::unordered_set;
54
82c7f640 55struct srd_decoder;
8bd26d8b 56struct srd_channel;
82c7f640 57
e8d00928 58namespace sigrok {
7d80a651
JH
59class Analog;
60class Channel;
61class Device;
fd22c71c 62class InputFormat;
7d80a651
JH
63class Logic;
64class Meta;
fd22c71c 65class OutputFormat;
7d80a651
JH
66class Packet;
67class Session;
e8d00928
ML
68}
69
51e77110
JH
70namespace pv {
71
dc0867ff
JH
72class DeviceManager;
73
1b1ec774
JH
74namespace data {
75class Analog;
f3d66e52 76class AnalogSegment;
1b1ec774 77class Logic;
f3d66e52 78class LogicSegment;
bf0edd2b 79class SignalBase;
02412f0b 80class SignalData;
1b1ec774 81}
8d634081 82
da30ecb7
JH
83namespace devices {
84class Device;
85}
86
0f8f8c18
SA
87namespace toolbars {
88class MainBar;
89}
90
f4e57597
SA
91namespace views {
92class ViewBase;
8d634081 93}
2953961c 94
2b81ae46 95class Session : public QObject
2953961c 96{
009e1503
JH
97 Q_OBJECT
98
5b7cf66c
JH
99public:
100 enum capture_state {
101 Stopped,
2b49eeb0 102 AwaitingTrigger,
5b7cf66c
JH
103 Running
104 };
105
2953961c 106public:
101e7a9b 107 Session(DeviceManager &device_manager, QString name);
2953961c 108
2b81ae46 109 ~Session();
2953961c 110
4cb0b033
JH
111 DeviceManager& device_manager();
112
113 const DeviceManager& device_manager() const;
114
6f925ba9 115 shared_ptr<sigrok::Session> session() const;
1f4caa77 116
6f925ba9 117 shared_ptr<devices::Device> device() const;
dc0867ff 118
101e7a9b
SA
119 QString name() const;
120
121 void set_name(QString name);
122
6f925ba9 123 const list< shared_ptr<views::ViewBase> > views() const;
36a8185e 124
6f925ba9 125 shared_ptr<views::ViewBase> main_view() const;
0f8f8c18 126
6f925ba9 127 shared_ptr<pv::toolbars::MainBar> main_bar() const;
0f8f8c18 128
6f925ba9 129 void set_main_bar(shared_ptr<pv::toolbars::MainBar> main_bar);
fd22c71c 130
5ccfc97e
SA
131 /**
132 * Indicates whether the captured data was saved to disk already or not
133 */
134 bool data_saved() const;
135
101e7a9b
SA
136 void save_settings(QSettings &settings) const;
137
138 void restore_settings(QSettings &settings);
139
fd22c71c
SA
140 /**
141 * Attempts to set device instance, may fall back to demo if needed
142 */
6f925ba9 143 void select_device(shared_ptr<devices::Device> device);
fd22c71c 144
d64d1596
JH
145 /**
146 * Sets device instance that will be used in the next capture session.
147 */
6f925ba9 148 void set_device(shared_ptr<devices::Device> device);
dc0867ff 149
6fd0b639
JH
150 void set_default_device();
151
6f925ba9 152 void load_init_file(const string &file_name, const string &format);
fd22c71c
SA
153
154 void load_file(QString file_name,
6f925ba9
UH
155 shared_ptr<sigrok::InputFormat> format = nullptr,
156 const map<string, Glib::VariantBase> &options =
157 map<string, Glib::VariantBase>());
fd22c71c 158
5b7cf66c
JH
159 capture_state get_capture_state() const;
160
6f925ba9 161 void start_capture(function<void (const QString)> error_handler);
274d4f13 162
5b7cf66c
JH
163 void stop_capture();
164
2220e942
SA
165 double get_samplerate() const;
166
6f925ba9 167 void register_view(shared_ptr<views::ViewBase> view);
47e9e7bb 168
6f925ba9 169 void deregister_view(shared_ptr<views::ViewBase> view);
47e9e7bb 170
6f925ba9 171 bool has_view(shared_ptr<views::ViewBase> view);
101e7a9b 172
6f925ba9 173 const unordered_set< shared_ptr<data::SignalBase> >
47e9e7bb 174 signalbases() const;
e3f65ace 175
269528f5 176#ifdef ENABLE_DECODE
4e5a4405 177 bool add_decoder(srd_decoder *const dec);
82c7f640 178
6f925ba9 179 void remove_decode_signal(shared_ptr<data::SignalBase> signalbase);
269528f5 180#endif
c51482b3 181
6ac96c2e
JH
182private:
183 void set_capture_state(capture_state state);
184
ffe00119 185 void update_signals();
b087ba7f 186
6f925ba9
UH
187 shared_ptr<data::SignalBase> signalbase_from_channel(
188 shared_ptr<sigrok::Channel> channel) const;
3ddcc083 189
2953961c 190private:
6f925ba9 191 void sample_thread_proc(function<void (const QString)> error_handler);
2e2946fe 192
5e6967cb
SA
193 void free_unused_memory();
194
da30ecb7 195 void feed_in_header();
eec446e1 196
6f925ba9 197 void feed_in_meta(shared_ptr<sigrok::Meta> meta);
aba1dd16 198
48257a69
SA
199 void feed_in_trigger();
200
82f50b10
JH
201 void feed_in_frame_begin();
202
6f925ba9 203 void feed_in_logic(shared_ptr<sigrok::Logic> logic);
aba1dd16 204
6f925ba9 205 void feed_in_analog(shared_ptr<sigrok::Analog> analog);
2953961c 206
6f925ba9
UH
207 void data_feed_in(shared_ptr<sigrok::Device> device,
208 shared_ptr<sigrok::Packet> packet);
2953961c
JH
209
210private:
8dbbc7f0 211 DeviceManager &device_manager_;
6f925ba9 212 shared_ptr<devices::Device> device_;
101e7a9b 213 QString default_name_, name_;
d64d1596 214
6f925ba9
UH
215 list< shared_ptr<views::ViewBase> > views_;
216 shared_ptr<pv::views::ViewBase> main_view_;
0f8f8c18 217
6f925ba9 218 shared_ptr<pv::toolbars::MainBar> main_bar_;
47e9e7bb 219
6f925ba9 220 mutable mutex sampling_mutex_; //!< Protects access to capture_state_.
8dbbc7f0 221 capture_state capture_state_;
5b7cf66c 222
6f925ba9
UH
223 unordered_set< shared_ptr<data::SignalBase> > signalbases_;
224 unordered_set< shared_ptr<data::SignalData> > all_signal_data_;
3868e5fa 225
6f925ba9
UH
226 mutable recursive_mutex data_mutex_;
227 shared_ptr<data::Logic> logic_data_;
ff008de6 228 uint64_t cur_samplerate_;
6f925ba9
UH
229 shared_ptr<data::LogicSegment> cur_logic_segment_;
230 map< shared_ptr<sigrok::Channel>, shared_ptr<data::AnalogSegment> >
f3d66e52 231 cur_analog_segments_;
009e1503 232
8dbbc7f0 233 std::thread sampling_thread_;
2e2946fe 234
e7216ae0 235 bool out_of_memory_;
5ccfc97e 236 bool data_saved_;
e7216ae0 237
e9213170 238Q_SIGNALS:
6ac96c2e 239 void capture_state_changed(int state);
91f8fe8c 240 void device_changed();
6ac96c2e 241
69dd2b03
JH
242 void signals_changed();
243
101e7a9b
SA
244 void name_changed();
245
48257a69
SA
246 void trigger_event(util::Timestamp location);
247
82f50b10
JH
248 void frame_began();
249
1f374035
JH
250 void data_received();
251
252 void frame_ended();
3a21afa6 253
f4e57597 254 void add_view(const QString &title, views::ViewType type,
3a21afa6 255 Session *session);
5ccfc97e
SA
256
257public Q_SLOTS:
258 void on_data_saved();
2953961c
JH
259};
260
51e77110
JH
261} // namespace pv
262
8e99ef96 263#endif // PULSEVIEW_PV_SESSION_HPP