]> sigrok.org Git - pulseview.git/blame - pv/sigsession.h
Moved DeviceManager::use_device and release_device into DevInst
[pulseview.git] / pv / sigsession.h
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
640d091b
UH
21#ifndef PULSEVIEW_PV_SIGSESSION_H
22#define PULSEVIEW_PV_SIGSESSION_H
2953961c 23
f2edb557 24#include <boost/function.hpp>
28a4c9c5 25#include <boost/shared_ptr.hpp>
2e2946fe 26#include <boost/thread.hpp>
28a4c9c5 27
708c5523 28#include <map>
bfc9f61e 29#include <set>
28a4c9c5 30#include <string>
e3f65ace 31#include <vector>
28a4c9c5 32
009e1503 33#include <QObject>
f2edb557 34#include <QString>
009e1503 35
2953961c 36#include <libsigrok/libsigrok.h>
2953961c 37
82c7f640 38struct srd_decoder;
708c5523 39struct srd_probe;
82c7f640 40
51e77110
JH
41namespace pv {
42
dc0867ff
JH
43class DeviceManager;
44
1b1ec774
JH
45namespace data {
46class Analog;
47class AnalogSnapshot;
48class Logic;
49class LogicSnapshot;
02412f0b 50class SignalData;
1b1ec774 51}
8d634081 52
94574501
JH
53namespace device {
54class DevInst;
55}
56
8d634081 57namespace view {
b9329558 58class DecodeTrace;
3045c869 59class LogicSignal;
28a4c9c5 60class Signal;
8d634081 61}
2953961c 62
009e1503 63class SigSession : public QObject
2953961c 64{
009e1503
JH
65 Q_OBJECT
66
5b7cf66c
JH
67public:
68 enum capture_state {
69 Stopped,
2b49eeb0 70 AwaitingTrigger,
5b7cf66c
JH
71 Running
72 };
73
2953961c 74public:
dc0867ff 75 SigSession(DeviceManager &device_manager);
2953961c
JH
76
77 ~SigSession();
78
94574501 79 boost::shared_ptr<device::DevInst> get_device() const;
dc0867ff 80
d64d1596
JH
81 /**
82 * Sets device instance that will be used in the next capture session.
83 */
94574501 84 void set_device(boost::shared_ptr<device::DevInst> dev_inst);
d64d1596 85
996b7c9d 86 void release_device(device::DevInst *dev_inst);
dc0867ff 87
f2edb557
JH
88 void load_file(const std::string &name,
89 boost::function<void (const QString)> error_handler);
2953961c 90
5b7cf66c
JH
91 capture_state get_capture_state() const;
92
d99dc9f2 93 void start_capture(boost::function<void (const QString)> error_handler);
274d4f13 94
5b7cf66c
JH
95 void stop_capture();
96
02412f0b
JH
97 std::set< boost::shared_ptr<data::SignalData> > get_data() const;
98
3868e5fa 99 std::vector< boost::shared_ptr<view::Signal> >
38eeddea 100 get_signals() const;
e3f65ace 101
269528f5 102#ifdef ENABLE_DECODE
4e5a4405 103 bool add_decoder(srd_decoder *const dec);
82c7f640 104
b9329558 105 std::vector< boost::shared_ptr<view::DecodeTrace> >
38eeddea
JH
106 get_decode_signals() const;
107
b9329558 108 void remove_decode_signal(view::DecodeTrace *signal);
269528f5 109#endif
c51482b3 110
6ac96c2e
JH
111private:
112 void set_capture_state(capture_state state);
113
94574501 114 void update_signals(boost::shared_ptr<device::DevInst> dev_inst);
b087ba7f 115
2b49eeb0
JH
116 bool is_trigger_enabled() const;
117
3ddcc083
JH
118 boost::shared_ptr<view::Signal> signal_from_probe(
119 const sr_probe *probe) const;
120
deef291c
JH
121 void read_sample_rate(const sr_dev_inst *const sdi);
122
2953961c 123private:
728e5ef7
JH
124 /**
125 * Attempts to autodetect the format. Failing that
126 * @param filename The filename of the input file.
127 * @return A pointer to the 'struct sr_input_format' that should be
128 * used, or NULL if no input format was selected or
129 * auto-detected.
130 */
131 static sr_input_format* determine_input_file_format(
132 const std::string &filename);
133
134 static sr_input* load_input_file_format(
135 const std::string &filename,
136 boost::function<void (const QString)> error_handler,
137 sr_input_format *format = NULL);
138
e8c9f8a5
JH
139 void load_session_thread_proc(
140 boost::function<void (const QString)> error_handler);
141
142 void load_input_thread_proc(const std::string name, sr_input *in,
f2edb557 143 boost::function<void (const QString)> error_handler);
8a67bd9e 144
94574501 145 void sample_thread_proc(boost::shared_ptr<device::DevInst> dev_inst,
f2edb557 146 boost::function<void (const QString)> error_handler);
2e2946fe 147
eec446e1
JH
148 void feed_in_header(const sr_dev_inst *sdi);
149
be73bdfa
JH
150 void feed_in_meta(const sr_dev_inst *sdi,
151 const sr_datafeed_meta &meta);
aba1dd16 152
9c112671
JH
153 void feed_in_logic(const sr_datafeed_logic &logic);
154
aba1dd16
JH
155 void feed_in_analog(const sr_datafeed_analog &analog);
156
04abfae9 157 void data_feed_in(const struct sr_dev_inst *sdi,
bc5c1a99 158 const struct sr_datafeed_packet *packet);
2953961c 159
04abfae9 160 static void data_feed_in_proc(const struct sr_dev_inst *sdi,
5045f16d 161 const struct sr_datafeed_packet *packet, void *cb_data);
2953961c
JH
162
163private:
dc0867ff 164 DeviceManager &_device_manager;
d64d1596
JH
165
166 /**
167 * The device instance that will be used in the next capture session.
168 */
94574501 169 boost::shared_ptr<device::DevInst> _dev_inst;
d64d1596 170
b9329558 171 std::vector< boost::shared_ptr<view::DecodeTrace> > _decode_traces;
82c7f640 172
949f8050 173 mutable boost::mutex _sampling_mutex;
5b7cf66c
JH
174 capture_state _capture_state;
175
3868e5fa 176 mutable boost::mutex _signals_mutex;
8d634081 177 std::vector< boost::shared_ptr<view::Signal> > _signals;
3868e5fa
JH
178
179 mutable boost::mutex _data_mutex;
1b1ec774
JH
180 boost::shared_ptr<data::Logic> _logic_data;
181 boost::shared_ptr<data::LogicSnapshot> _cur_logic_snapshot;
bb2cdfff
JH
182 std::map< const sr_probe*, boost::shared_ptr<data::AnalogSnapshot> >
183 _cur_analog_snapshots;
009e1503 184
e042ad64 185 boost::thread _sampling_thread;
2e2946fe 186
009e1503 187signals:
6ac96c2e
JH
188 void capture_state_changed(int state);
189
69dd2b03
JH
190 void signals_changed();
191
04abfae9 192 void data_updated();
2953961c
JH
193
194private:
195 // TODO: This should not be necessary. Multiple concurrent
196 // sessions should should be supported and it should be
197 // possible to associate a pointer with a sr_session.
04abfae9 198 static SigSession *_session;
2953961c
JH
199};
200
51e77110
JH
201} // namespace pv
202
640d091b 203#endif // PULSEVIEW_PV_SIGSESSION_H