]> sigrok.org Git - pulseview.git/blob - pv/sigsession.h
cea426a0d2eb12833a1a9b1f705188cee91c95dc
[pulseview.git] / pv / sigsession.h
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012-14 Joel Holdsworth <joel@airwebreathe.org.uk>
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
21 #ifndef PULSEVIEW_PV_SIGSESSION_H
22 #define PULSEVIEW_PV_SIGSESSION_H
23
24 #include <map>
25 #include <memory>
26 #include <mutex>
27 #include <set>
28 #include <string>
29 #include <thread>
30 #include <vector>
31
32 #include <QObject>
33 #include <QString>
34
35 struct srd_decoder;
36 struct srd_channel;
37
38 namespace sigrok {
39         class Analog;
40         class Channel;
41         class Device;
42         class Logic;
43         class Meta;
44         class Packet;
45         class Session;
46 }
47
48 namespace pv {
49
50 class DeviceManager;
51
52 namespace data {
53 class Analog;
54 class AnalogSnapshot;
55 class Logic;
56 class LogicSnapshot;
57 class SignalData;
58 }
59
60 namespace view {
61 class DecodeTrace;
62 class LogicSignal;
63 class Signal;
64 }
65
66 class SigSession : public QObject
67 {
68         Q_OBJECT
69
70 public:
71         enum capture_state {
72                 Stopped,
73                 AwaitingTrigger,
74                 Running
75         };
76
77 public:
78         SigSession(DeviceManager &device_manager);
79
80         ~SigSession();
81
82         const std::shared_ptr<sigrok::Session>& session() const;
83
84         std::shared_ptr<sigrok::Device> device() const;
85
86         /**
87          * Sets device instance that will be used in the next capture session.
88          */
89         void set_device(std::shared_ptr<sigrok::Device> device);
90
91         void set_file(const std::string &name);
92
93         void set_default_device();
94
95         capture_state get_capture_state() const;
96
97         void start_capture(std::function<void (const QString)> error_handler);
98
99         void stop_capture();
100
101         std::set< std::shared_ptr<data::SignalData> > get_data() const;
102
103         std::vector< std::shared_ptr<view::Signal> >
104                 get_signals() const;
105
106 #ifdef ENABLE_DECODE
107         bool add_decoder(srd_decoder *const dec);
108
109         std::vector< std::shared_ptr<view::DecodeTrace> >
110                 get_decode_signals() const;
111
112         void remove_decode_signal(view::DecodeTrace *signal);
113 #endif
114
115 private:
116         void set_capture_state(capture_state state);
117
118         void update_signals(std::shared_ptr<sigrok::Device> device);
119
120         std::shared_ptr<view::Signal> signal_from_channel(
121                 std::shared_ptr<sigrok::Channel> channel) const;
122
123         void read_sample_rate(std::shared_ptr<sigrok::Device>);
124
125 private:
126         void sample_thread_proc(std::shared_ptr<sigrok::Device> device,
127                 std::function<void (const QString)> error_handler);
128
129         void feed_in_header(std::shared_ptr<sigrok::Device> device);
130
131         void feed_in_meta(std::shared_ptr<sigrok::Device> device,
132                 std::shared_ptr<sigrok::Meta> meta);
133
134         void feed_in_frame_begin();
135
136         void feed_in_logic(std::shared_ptr<sigrok::Logic> logic);
137
138         void feed_in_analog(std::shared_ptr<sigrok::Analog> analog);
139
140         void data_feed_in(std::shared_ptr<sigrok::Device> device,
141                 std::shared_ptr<sigrok::Packet> packet);
142
143 private:
144         DeviceManager &_device_manager;
145         std::shared_ptr<sigrok::Session> _session;
146
147         /**
148          * The device instance that will be used in the next capture session.
149          */
150         std::shared_ptr<sigrok::Device> _device;
151
152         std::vector< std::shared_ptr<view::DecodeTrace> > _decode_traces;
153
154         mutable std::mutex _sampling_mutex;
155         capture_state _capture_state;
156
157         mutable std::mutex _signals_mutex;
158         std::vector< std::shared_ptr<view::Signal> > _signals;
159
160         mutable std::mutex _data_mutex;
161         std::shared_ptr<data::Logic> _logic_data;
162         std::shared_ptr<data::LogicSnapshot> _cur_logic_snapshot;
163         std::map< std::shared_ptr<sigrok::Channel>, std::shared_ptr<data::AnalogSnapshot> >
164                 _cur_analog_snapshots;
165
166         std::thread _sampling_thread;
167
168 Q_SIGNALS:
169         void capture_state_changed(int state);
170
171         void signals_changed();
172
173         void frame_began();
174
175         void data_received();
176
177         void frame_ended();
178 };
179
180 } // namespace pv
181
182 #endif // PULSEVIEW_PV_SIGSESSION_H