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