]> sigrok.org Git - pulseview.git/blame - pv/session.hpp
SignalData: Renamed get_max_sample_count
[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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_SIGSESSION_HPP
22#define PULSEVIEW_PV_SIGSESSION_HPP
2953961c 23
708c5523 24#include <map>
f9abf97e 25#include <memory>
3b68d03d 26#include <mutex>
bfc9f61e 27#include <set>
28a4c9c5 28#include <string>
3b68d03d 29#include <thread>
78b0af3e 30#include <unordered_set>
e3f65ace 31#include <vector>
28a4c9c5 32
627ffe3f
VI
33#ifdef _WIN32
34// Windows: Avoid namespace pollution by thread.hpp (which includes windows.h).
35#define NOGDI
36#define NORESOURCE
37#endif
aca64cac
JH
38#include <boost/thread.hpp>
39
009e1503 40#include <QObject>
f2edb557 41#include <QString>
009e1503 42
82c7f640 43struct srd_decoder;
8bd26d8b 44struct srd_channel;
82c7f640 45
e8d00928 46namespace sigrok {
7d80a651
JH
47class Analog;
48class Channel;
49class Device;
50class Logic;
51class Meta;
52class Packet;
53class Session;
e8d00928
ML
54}
55
51e77110
JH
56namespace pv {
57
dc0867ff
JH
58class DeviceManager;
59
1b1ec774
JH
60namespace data {
61class Analog;
f3d66e52 62class AnalogSegment;
1b1ec774 63class Logic;
f3d66e52 64class LogicSegment;
02412f0b 65class SignalData;
1b1ec774 66}
8d634081
JH
67
68namespace view {
b9329558 69class DecodeTrace;
3045c869 70class LogicSignal;
28a4c9c5 71class Signal;
8d634081 72}
2953961c 73
2b81ae46 74class Session : public QObject
2953961c 75{
009e1503
JH
76 Q_OBJECT
77
5b7cf66c
JH
78public:
79 enum capture_state {
80 Stopped,
2b49eeb0 81 AwaitingTrigger,
5b7cf66c
JH
82 Running
83 };
84
2953961c 85public:
2b81ae46 86 Session(DeviceManager &device_manager);
2953961c 87
2b81ae46 88 ~Session();
2953961c 89
4cb0b033
JH
90 DeviceManager& device_manager();
91
92 const DeviceManager& device_manager() const;
93
1f4caa77
JH
94 const std::shared_ptr<sigrok::Session>& session() const;
95
d260d425 96 std::shared_ptr<sigrok::Device> device() const;
dc0867ff 97
d64d1596
JH
98 /**
99 * Sets device instance that will be used in the next capture session.
100 */
e8d00928 101 void set_device(std::shared_ptr<sigrok::Device> device);
d64d1596 102
4b5537c5
JH
103 /**
104 * Sets a sigrok session file as the capture device.
105 * @param name the path to the file.
106 */
107 void set_session_file(const std::string &name);
dc0867ff 108
6fd0b639
JH
109 void set_default_device();
110
5b7cf66c
JH
111 capture_state get_capture_state() const;
112
d2344534 113 void start_capture(std::function<void (const QString)> error_handler);
274d4f13 114
5b7cf66c
JH
115 void stop_capture();
116
f9abf97e 117 std::set< std::shared_ptr<data::SignalData> > get_data() const;
02412f0b 118
aca64cac 119 boost::shared_mutex& signals_mutex() const;
c3a740dd 120
78b0af3e
JH
121 const std::unordered_set< std::shared_ptr<view::Signal> >&
122 signals() const;
e3f65ace 123
269528f5 124#ifdef ENABLE_DECODE
4e5a4405 125 bool add_decoder(srd_decoder *const dec);
82c7f640 126
f9abf97e 127 std::vector< std::shared_ptr<view::DecodeTrace> >
38eeddea
JH
128 get_decode_signals() const;
129
b9329558 130 void remove_decode_signal(view::DecodeTrace *signal);
269528f5 131#endif
c51482b3 132
6ac96c2e
JH
133private:
134 void set_capture_state(capture_state state);
135
e8d00928 136 void update_signals(std::shared_ptr<sigrok::Device> device);
b087ba7f 137
6ac6242b 138 std::shared_ptr<view::Signal> signal_from_channel(
e8d00928 139 std::shared_ptr<sigrok::Channel> channel) const;
3ddcc083 140
e8d00928 141 void read_sample_rate(std::shared_ptr<sigrok::Device>);
deef291c 142
2953961c 143private:
e8d00928 144 void sample_thread_proc(std::shared_ptr<sigrok::Device> device,
d2344534 145 std::function<void (const QString)> error_handler);
2e2946fe 146
e8d00928 147 void feed_in_header(std::shared_ptr<sigrok::Device> device);
eec446e1 148
e8d00928
ML
149 void feed_in_meta(std::shared_ptr<sigrok::Device> device,
150 std::shared_ptr<sigrok::Meta> meta);
aba1dd16 151
82f50b10
JH
152 void feed_in_frame_begin();
153
e8d00928 154 void feed_in_logic(std::shared_ptr<sigrok::Logic> logic);
aba1dd16 155
e8d00928 156 void feed_in_analog(std::shared_ptr<sigrok::Analog> analog);
2953961c 157
e8d00928
ML
158 void data_feed_in(std::shared_ptr<sigrok::Device> device,
159 std::shared_ptr<sigrok::Packet> packet);
2953961c
JH
160
161private:
8dbbc7f0
JH
162 DeviceManager &device_manager_;
163 std::shared_ptr<sigrok::Session> session_;
d64d1596
JH
164
165 /**
166 * The device instance that will be used in the next capture session.
167 */
8dbbc7f0 168 std::shared_ptr<sigrok::Device> device_;
d64d1596 169
8dbbc7f0 170 std::vector< std::shared_ptr<view::DecodeTrace> > decode_traces_;
82c7f640 171
8dbbc7f0
JH
172 mutable std::mutex sampling_mutex_;
173 capture_state capture_state_;
5b7cf66c 174
8dbbc7f0 175 mutable boost::shared_mutex signals_mutex_;
78b0af3e 176 std::unordered_set< std::shared_ptr<view::Signal> > signals_;
3868e5fa 177
8dbbc7f0
JH
178 mutable std::mutex data_mutex_;
179 std::shared_ptr<data::Logic> logic_data_;
ff008de6 180 uint64_t cur_samplerate_;
f3d66e52
JH
181 std::shared_ptr<data::LogicSegment> cur_logic_segment_;
182 std::map< std::shared_ptr<sigrok::Channel>, std::shared_ptr<data::AnalogSegment> >
183 cur_analog_segments_;
009e1503 184
8dbbc7f0 185 std::thread sampling_thread_;
2e2946fe 186
e9213170 187Q_SIGNALS:
6ac96c2e 188 void capture_state_changed(int state);
20f81a58 189 void device_selected();
6ac96c2e 190
69dd2b03
JH
191 void signals_changed();
192
82f50b10
JH
193 void frame_began();
194
1f374035
JH
195 void data_received();
196
197 void frame_ended();
2953961c
JH
198};
199
51e77110
JH
200} // namespace pv
201
7a01bd36 202#endif // PULSEVIEW_PV_SIGSESSION_HPP