]> sigrok.org Git - libsigrokflow.git/commitdiff
Factor out src/legacy_input.cpp.
authorUwe Hermann <redacted>
Wed, 9 Jan 2019 01:25:29 +0000 (02:25 +0100)
committerUwe Hermann <redacted>
Wed, 9 Jan 2019 01:25:29 +0000 (02:25 +0100)
Makefile.am
src/legacy_input.cpp [new file with mode: 0644]
src/main.cpp

index de5381f64029209c1d37783ffb276c1145157d3a..2f2c41880fbd2333fc6841726adc9b020bb0c411 100644 (file)
@@ -30,7 +30,8 @@ lib_LTLIBRARIES = libsigrokflow.la
 libsigrokflow_la_SOURCES = \
        src/main.cpp \
        src/init.cpp \
-       src/legacy_capture_device.cpp
+       src/legacy_capture_device.cpp \
+       src/legacy_input.cpp
 
 libsigrokflow_la_LIBADD = $(LIBSIGROKFLOW_LIBS)
 libsigrokflow_la_LDFLAGS = -version-info $(SRF_LIB_VERSION) -no-undefined
diff --git a/src/legacy_input.cpp b/src/legacy_input.cpp
new file mode 100644 (file)
index 0000000..c29f127
--- /dev/null
@@ -0,0 +1,142 @@
+/*
+ * This file is part of the libsigrokflow project.
+ *
+ * Copyright (C) 2018 Martin Ling <martin-sigrok@earth.li>
+ * Copyright (C) 2018 Uwe Hermann <uwe@hermann-uwe.de>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <config.h>
+#include <libsigrokflow/libsigrokflow.hpp>
+
+namespace Srf
+{
+
+using namespace std;
+using namespace std::placeholders;
+
+#ifdef HAVE_LIBSIGROKCXX
+void LegacyInput::class_init(Gst::ElementClass<LegacyInput> *klass)
+{
+       klass->set_metadata("sigrok legacy input",
+                       "Transform", "Wrapper for inputs using legacy libsigrok APIs",
+                       "Martin Ling");
+
+       klass->add_pad_template(Gst::PadTemplate::create(
+                       "sink",
+                       Gst::PAD_SINK,
+                       Gst::PAD_ALWAYS,
+                       Gst::Caps::create_any()));
+
+       klass->add_pad_template(Gst::PadTemplate::create(
+                       "src",
+                       Gst::PAD_SRC,
+                       Gst::PAD_ALWAYS,
+                       Gst::Caps::create_any()));
+}
+
+bool LegacyInput::register_element(Glib::RefPtr<Gst::Plugin> plugin)
+{
+       Gst::ElementFactory::register_element(plugin, "sigrok_legacy_input",
+                       0, Gst::register_mm_type<LegacyInput>(
+                               "sigrok_legacy_input"));
+
+       return true;
+}
+
+LegacyInput::LegacyInput(GstElement *gobj) :
+       Glib::ObjectBase(typeid(LegacyInput)),
+       Gst::Element(gobj)
+{
+       add_pad(sink_pad_ = Gst::Pad::create(get_pad_template("sink"), "sink"));
+       add_pad(src_pad_ = Gst::Pad::create(get_pad_template("src"), "src"));
+       sink_pad_->set_chain_function(sigc::mem_fun(*this, &LegacyInput::chain));
+}
+
+Glib::RefPtr<LegacyInput> LegacyInput::create(
+       shared_ptr<sigrok::InputFormat> libsigrok_input_format,
+       map<string, Glib::VariantBase> options)
+{
+       auto element = Gst::ElementFactory::create_element("sigrok_legacy_input");
+       if (!element)
+               throw runtime_error("Failed to create element - plugin not registered?");
+       auto input = Glib::RefPtr<LegacyInput>::cast_static(element);
+       input->libsigrok_input_format_ = libsigrok_input_format;
+       input->options_ = options;
+
+       return input;
+}
+
+bool LegacyInput::start_vfunc()
+{
+       libsigrok_input_ = libsigrok_input_format_->create_input(options_);
+       auto context = libsigrok_input_format_->parent();
+       session_ = context->create_session();
+       session_->add_device(libsigrok_input_->device());
+       session_->add_datafeed_callback(bind(&LegacyInput::datafeed_callback_, this, _1, _2));
+       session_->start();
+
+       return true;
+}
+
+void LegacyInput::datafeed_callback_(
+       shared_ptr<sigrok::Device> device,
+       shared_ptr<sigrok::Packet> packet)
+{
+       (void)device;
+
+       switch (packet->type()->id()) {
+       case SR_DF_LOGIC: {
+               auto logic = static_pointer_cast<sigrok::Logic>(packet->payload());
+               auto mem = Gst::Memory::create(
+                               Gst::MEMORY_FLAG_READONLY,
+                               logic->data_pointer(),
+                               logic->data_length(),
+                               0,
+                               logic->data_length());
+               auto buf = Gst::Buffer::create();
+               buf->append_memory(move(mem));
+               src_pad_->push(move(buf));
+               break;
+       }
+       case SR_DF_END:
+               session_->stop();
+               src_pad_->push_event(Gst::EventEos::create());
+               break;
+       default:
+               break;
+       }
+}
+
+Gst::FlowReturn LegacyInput::chain(const Glib::RefPtr<Gst::Pad> &,
+       const Glib::RefPtr<Gst::Buffer> &buf)
+{
+       Gst::MapInfo info;
+       buf->map(info, Gst::MAP_READ);
+       libsigrok_input_->send(info.get_data(), info.get_size());
+       buf->unmap(info);
+
+       return Gst::FLOW_OK;
+}
+
+bool LegacyInput::stop_vfunc()
+{
+       libsigrok_input_->end();
+
+       return true;
+}
+#endif
+
+}
index fadd19c50df9a660c100b483fb6a8bb1583cd4d4..15c968e7b2bc1e0fd70a63cb3889343a65950609 100644 (file)
@@ -44,116 +44,6 @@ CaptureDevice::CaptureDevice(GstElement *gobj) :
 }
 
 #ifdef HAVE_LIBSIGROKCXX
-void LegacyInput::class_init(Gst::ElementClass<LegacyInput> *klass)
-{
-       klass->set_metadata("sigrok legacy input",
-                       "Transform", "Wrapper for inputs using legacy libsigrok APIs",
-                       "Martin Ling");
-
-       klass->add_pad_template(Gst::PadTemplate::create(
-                       "sink",
-                       Gst::PAD_SINK,
-                       Gst::PAD_ALWAYS,
-                       Gst::Caps::create_any()));
-
-       klass->add_pad_template(Gst::PadTemplate::create(
-                       "src",
-                       Gst::PAD_SRC,
-                       Gst::PAD_ALWAYS,
-                       Gst::Caps::create_any()));
-}
-
-bool LegacyInput::register_element(Glib::RefPtr<Gst::Plugin> plugin)
-{
-       Gst::ElementFactory::register_element(plugin, "sigrok_legacy_input",
-                       0, Gst::register_mm_type<LegacyInput>(
-                               "sigrok_legacy_input"));
-
-       return true;
-}
-
-LegacyInput::LegacyInput(GstElement *gobj) :
-       Glib::ObjectBase(typeid(LegacyInput)),
-       Gst::Element(gobj)
-{
-       add_pad(sink_pad_ = Gst::Pad::create(get_pad_template("sink"), "sink"));
-       add_pad(src_pad_ = Gst::Pad::create(get_pad_template("src"), "src"));
-       sink_pad_->set_chain_function(sigc::mem_fun(*this, &LegacyInput::chain));
-}
-
-Glib::RefPtr<LegacyInput> LegacyInput::create(
-       shared_ptr<sigrok::InputFormat> libsigrok_input_format,
-       map<string, Glib::VariantBase> options)
-{
-       auto element = Gst::ElementFactory::create_element("sigrok_legacy_input");
-       if (!element)
-               throw runtime_error("Failed to create element - plugin not registered?");
-       auto input = Glib::RefPtr<LegacyInput>::cast_static(element);
-       input->libsigrok_input_format_ = libsigrok_input_format;
-       input->options_ = options;
-
-       return input;
-}
-
-bool LegacyInput::start_vfunc()
-{
-       libsigrok_input_ = libsigrok_input_format_->create_input(options_);
-       auto context = libsigrok_input_format_->parent();
-       session_ = context->create_session();
-       session_->add_device(libsigrok_input_->device());
-       session_->add_datafeed_callback(bind(&LegacyInput::datafeed_callback_, this, _1, _2));
-       session_->start();
-
-       return true;
-}
-
-void LegacyInput::datafeed_callback_(
-       shared_ptr<sigrok::Device> device,
-       shared_ptr<sigrok::Packet> packet)
-{
-       (void)device;
-
-       switch (packet->type()->id()) {
-       case SR_DF_LOGIC: {
-               auto logic = static_pointer_cast<sigrok::Logic>(packet->payload());
-               auto mem = Gst::Memory::create(
-                               Gst::MEMORY_FLAG_READONLY,
-                               logic->data_pointer(),
-                               logic->data_length(),
-                               0,
-                               logic->data_length());
-               auto buf = Gst::Buffer::create();
-               buf->append_memory(move(mem));
-               src_pad_->push(move(buf));
-               break;
-       }
-       case SR_DF_END:
-               session_->stop();
-               src_pad_->push_event(Gst::EventEos::create());
-               break;
-       default:
-               break;
-       }
-}
-
-Gst::FlowReturn LegacyInput::chain(const Glib::RefPtr<Gst::Pad> &,
-       const Glib::RefPtr<Gst::Buffer> &buf)
-{
-       Gst::MapInfo info;
-       buf->map(info, Gst::MAP_READ);
-       libsigrok_input_->send(info.get_data(), info.get_size());
-       buf->unmap(info);
-
-       return Gst::FLOW_OK;
-}
-
-bool LegacyInput::stop_vfunc()
-{
-       libsigrok_input_->end();
-
-       return true;
-}
-
 void LegacyOutput::class_init(Gst::ElementClass<LegacyOutput> *klass)
 {
        klass->set_metadata("sigrok legacy output",