]> sigrok.org Git - pulseview.git/blob - pv/sigsession.h
Adjust pv::toolbars::SamplingBar to GVariant-based sr_config_* functions
[pulseview.git] / pv / sigsession.h
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012 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 <boost/function.hpp>
25 #include <boost/shared_ptr.hpp>
26 #include <boost/thread.hpp>
27
28 #include <string>
29 #include <utility>
30 #include <vector>
31
32 #include <QObject>
33 #include <QString>
34
35 #include <libsigrok/libsigrok.h>
36
37 namespace pv {
38
39 namespace data {
40 class Analog;
41 class AnalogSnapshot;
42 class Logic;
43 class LogicSnapshot;
44 }
45
46 namespace view {
47 class Signal;
48 }
49
50 class SigSession : public QObject
51 {
52         Q_OBJECT
53
54 public:
55         enum capture_state {
56                 Stopped,
57                 Running
58         };
59
60 public:
61         SigSession();
62
63         ~SigSession();
64
65         void load_file(const std::string &name,
66                 boost::function<void (const QString)> error_handler);
67
68         capture_state get_capture_state() const;
69
70         void start_capture(struct sr_dev_inst* sdi,
71                 uint64_t record_length,
72                 boost::function<void (const QString)> error_handler);
73
74         void stop_capture();
75
76         std::vector< boost::shared_ptr<view::Signal> >
77                 get_signals();
78
79         boost::shared_ptr<data::Logic> get_data();
80
81 private:
82         void set_capture_state(capture_state state);
83
84 private:
85         void load_thread_proc(const std::string name,
86                 boost::function<void (const QString)> error_handler);
87
88         void sample_thread_proc(struct sr_dev_inst *sdi,
89                 uint64_t record_length,
90                 boost::function<void (const QString)> error_handler);
91
92         void feed_in_header(const sr_dev_inst *sdi);
93
94         void feed_in_meta(const sr_dev_inst *sdi,
95                 const sr_datafeed_meta &meta);
96
97         void feed_in_logic(const sr_datafeed_logic &logic);
98
99         void feed_in_analog(const sr_datafeed_analog &analog);
100
101         void data_feed_in(const struct sr_dev_inst *sdi,
102                 const struct sr_datafeed_packet *packet);
103
104         static void data_feed_in_proc(const struct sr_dev_inst *sdi,
105                 const struct sr_datafeed_packet *packet);
106
107 private:
108         mutable boost::mutex _sampling_mutex;
109         capture_state _capture_state;
110
111         mutable boost::mutex _signals_mutex;
112         std::vector< boost::shared_ptr<view::Signal> > _signals;
113
114         mutable boost::mutex _data_mutex;
115         boost::shared_ptr<data::Logic> _logic_data;
116         boost::shared_ptr<data::LogicSnapshot> _cur_logic_snapshot;
117         boost::shared_ptr<data::Analog> _analog_data;
118         boost::shared_ptr<data::AnalogSnapshot> _cur_analog_snapshot;
119
120         std::auto_ptr<boost::thread> _sampling_thread;
121
122 signals:
123         void capture_state_changed(int state);
124
125         void signals_changed();
126
127         void data_updated();
128
129 private:
130         // TODO: This should not be necessary. Multiple concurrent
131         // sessions should should be supported and it should be
132         // possible to associate a pointer with a sr_session.
133         static SigSession *_session;
134 };
135
136 } // namespace pv
137
138 #endif // PULSEVIEW_PV_SIGSESSION_H