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