]> sigrok.org Git - libsigrokflow.git/blame - include/libsigrokflow/libsigrokflow.hpp
Fix implementation of LegacyInput.
[libsigrokflow.git] / include / libsigrokflow / libsigrokflow.hpp
CommitLineData
572e76fe
UH
1/*
2 * This file is part of the libsigrokflow project.
3 *
f1eaad84 4 * Copyright (C) 2018 Martin Ling <martin-sigrok@earth.li>
572e76fe
UH
5 * Copyright (C) 2018 Uwe Hermann <uwe@hermann-uwe.de>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef LIBSIGROKFLOW_LIBSIGROKFLOW_HPP
22#define LIBSIGROKFLOW_LIBSIGROKFLOW_HPP
23
15c57e97
UH
24/* Temporary workaround, will be dropped later. */
25#define HAVE_LIBSIGROKCXX 1
26#define HAVE_LIBSIGROKDECODE 1
27
f7363af1 28#include <gstreamermm.h>
37469b3d 29#include <gstreamermm/private/element_p.h>
e2cfc0ef 30#include <gstreamermm/private/basesink_p.h>
1060e9b5 31#ifdef HAVE_LIBSIGROKCXX
f7363af1 32#include <libsigrokcxx/libsigrokcxx.hpp>
1060e9b5 33#endif
45e6e688 34#ifdef HAVE_LIBSIGROKDECODE
b1322000 35#include <libsigrokdecode/libsigrokdecode.h>
45e6e688 36#endif
f7363af1 37
b903bb0a
UH
38namespace Srf
39{
40
f7363af1
ML
41using namespace std;
42
b903bb0a
UH
43void init();
44
870da4f2
UH
45void deinit();
46
f7363af1
ML
47class Block
48{
31b3babd 49 /* Config API etc. goes here. */
f7363af1
ML
50};
51
e2cfc0ef 52class Sink :
31b3babd 53 public Gst::BaseSink
f7363af1 54{
6d71d36a 55protected:
31b3babd 56 explicit Sink(GstBaseSink *gobj);
f7363af1
ML
57};
58
59class Device :
31b3babd 60 public Gst::Element
f7363af1 61{
31b3babd 62 /* Operations specific to hardware devices go here. */
6d71d36a 63protected:
31b3babd 64 explicit Device(GstElement *gobj);
f7363af1 65};
b903bb0a 66
f7363af1 67class CaptureDevice :
31b3babd 68 public Device
f7363af1 69{
31b3babd 70 /* Operations specific to capture (source) devices go here. */
6d71d36a 71protected:
31b3babd 72 explicit CaptureDevice(GstElement *gobj);
f7363af1
ML
73};
74
1060e9b5 75#ifdef HAVE_LIBSIGROKCXX
f7363af1 76class LegacyCaptureDevice :
31b3babd 77 public CaptureDevice
f7363af1
ML
78{
79public:
31b3babd
UH
80 /* Create from libsigrok device object. */
81 static Glib::RefPtr<LegacyCaptureDevice> create(
82 shared_ptr<sigrok::HardwareDevice> libsigrok_device);
f7363af1 83
31b3babd
UH
84 /* Retrieve libsigrok device object. */
85 shared_ptr<sigrok::HardwareDevice> libsigrok_device();
d03b3a98 86
31b3babd 87 /* Override state change. */
8ddc0b74 88 Gst::StateChangeReturn change_state_vfunc(Gst::StateChange transition) override;
6d71d36a 89
31b3babd
UH
90 /* Gst class init. */
91 static void class_init(Gst::ElementClass<LegacyCaptureDevice> *klass);
6d71d36a 92
31b3babd
UH
93 /* Register class with plugin. */
94 static bool register_element(Glib::RefPtr<Gst::Plugin> plugin);
95
96 /* Constructor used by element factory. */
97 explicit LegacyCaptureDevice(GstElement *gobj);
6d71d36a 98
f7363af1 99private:
b37c14d6
UH
100 shared_ptr<sigrok::HardwareDevice> libsigrok_device_;
101 Glib::RefPtr<Gst::Pad> src_pad_;
102 Glib::Threads::RecMutex mutex_;
103 Glib::RefPtr<Gst::Task> task_;
104 shared_ptr<sigrok::Session> session_;
31b3babd 105
897cb509 106 void datafeed_callback(shared_ptr<sigrok::Device> device,
31b3babd 107 shared_ptr<sigrok::Packet> packet);
897cb509 108 void run();
f7363af1
ML
109};
110
92d521e7 111class LegacyInput :
31b3babd 112 public Gst::Element
92d521e7
ML
113{
114public:
31b3babd
UH
115 /* Create from libsigrok input. */
116 static Glib::RefPtr<LegacyInput> create(
117 shared_ptr<sigrok::InputFormat> format,
118 map<string, Glib::VariantBase> options = map<string, Glib::VariantBase>());
119
8ddc0b74 120 /* Chain function (not an override). */
31b3babd
UH
121 Gst::FlowReturn chain(const Glib::RefPtr<Gst::Pad> &pad,
122 const Glib::RefPtr<Gst::Buffer> &buf);
92d521e7 123
fce9342e
ML
124 /* Event function (not an override). */
125 bool event(const Glib::RefPtr<Gst::Pad> &pad,
126 Glib::RefPtr<Gst::Event> &event);
92d521e7 127
31b3babd
UH
128 /* Gst class init. */
129 static void class_init(Gst::ElementClass<LegacyInput> *klass);
92d521e7 130
31b3babd
UH
131 /* Register class with plugin. */
132 static bool register_element(Glib::RefPtr<Gst::Plugin> plugin);
92d521e7 133
31b3babd
UH
134 /* Constructor used by element factory. */
135 explicit LegacyInput(GstElement *gobj);
92d521e7 136
92d521e7 137private:
b37c14d6
UH
138 shared_ptr<sigrok::InputFormat> libsigrok_input_format_;
139 shared_ptr<sigrok::Input> libsigrok_input_;
140 shared_ptr<sigrok::Session> session_;
141 map<string, Glib::VariantBase> options_;
142 Glib::RefPtr<Gst::Pad> sink_pad_;
143 Glib::RefPtr<Gst::Pad> src_pad_;
144
897cb509 145 void datafeed_callback(shared_ptr<sigrok::Device> device,
31b3babd 146 shared_ptr<sigrok::Packet> packet);
92d521e7
ML
147};
148
e2cfc0ef 149class LegacyOutput :
31b3babd 150 public Sink
e2cfc0ef
ML
151{
152public:
31b3babd
UH
153 /* Create from libsigrok output object. */
154 static Glib::RefPtr<LegacyOutput> create(
155 shared_ptr<sigrok::OutputFormat> libsigrok_output_format,
31b3babd 156 map<string, Glib::VariantBase> options = map<string, Glib::VariantBase>());
e2cfc0ef 157
31b3babd 158 /* Override start. */
8ddc0b74 159 bool start_vfunc() override;
e2cfc0ef 160
31b3babd 161 /* Override render. */
8ddc0b74 162 Gst::FlowReturn render_vfunc(const Glib::RefPtr<Gst::Buffer> &buffer) override;
e2cfc0ef 163
31b3babd 164 /* Override stop. */
8ddc0b74 165 bool stop_vfunc() override;
e2cfc0ef 166
31b3babd
UH
167 /* Gst class init. */
168 static void class_init(Gst::ElementClass<LegacyOutput> *klass);
e2cfc0ef 169
31b3babd
UH
170 /* Register class with plugin. */
171 static bool register_element(Glib::RefPtr<Gst::Plugin> plugin);
172
173 /* Constructor used by element factory. */
174 explicit LegacyOutput(GstBaseSink *gobj);
e2cfc0ef 175
e2cfc0ef 176private:
b37c14d6
UH
177 shared_ptr<sigrok::OutputFormat> libsigrok_output_format_;
178 shared_ptr<sigrok::Device> libsigrok_device_;
179 shared_ptr<sigrok::Output> libsigrok_output_;
180 map<string, Glib::VariantBase> options_;
e2cfc0ef 181};
1060e9b5 182#endif
e2cfc0ef 183
45e6e688 184#ifdef HAVE_LIBSIGROKDECODE
b1322000 185class LegacyDecoder :
31b3babd 186 public Sink
b1322000
UH
187{
188public:
31b3babd
UH
189 static Glib::RefPtr<LegacyDecoder> create(
190 struct srd_session *libsigrokdecode_session, uint64_t unitsize);
191
192 /* Retrieve libsigrokdecode session. */
193 struct srd_session *libsigrokdecode_session();
b1322000 194
31b3babd 195 /* Override start. */
8ddc0b74 196 bool start_vfunc() override;
b1322000 197
31b3babd 198 /* Override render. */
8ddc0b74 199 Gst::FlowReturn render_vfunc(const Glib::RefPtr<Gst::Buffer> &buffer) override;
b1322000 200
31b3babd 201 /* Override stop. */
8ddc0b74 202 bool stop_vfunc() override;
b1322000 203
31b3babd
UH
204 /* Gst class init. */
205 static void class_init(Gst::ElementClass<LegacyDecoder> *klass);
b1322000 206
31b3babd
UH
207 /* Register class with plugin. */
208 static bool register_element(Glib::RefPtr<Gst::Plugin> plugin);
b1322000 209
31b3babd
UH
210 /* Constructor used by element factory. */
211 explicit LegacyDecoder(GstBaseSink *gobj);
b1322000 212
b1322000 213private:
b37c14d6
UH
214 struct srd_session *session_;
215 uint64_t abs_ss_;
216 uint64_t unitsite_;
b1322000 217};
45e6e688 218#endif
f7363af1
ML
219
220}
572e76fe 221#endif