X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsession.hpp;h=f4d150dbe0031133afbd2497db3c4947a047c01b;hp=2ee31cfee5afb8ef6de44171322d1d20086e755a;hb=31d1aca6b7ab1b890b5ec7c05862e87986d5e6fd;hpb=7671200bd71de8cdd922b41b025ea18de6422345 diff --git a/pv/session.hpp b/pv/session.hpp index 2ee31cfe..f4d150db 100644 --- a/pv/session.hpp +++ b/pv/session.hpp @@ -20,6 +20,11 @@ #ifndef PULSEVIEW_PV_SESSION_HPP #define PULSEVIEW_PV_SESSION_HPP +#ifdef ENABLE_FLOW +#include +#include +#endif + #include #include #include @@ -33,10 +38,17 @@ #include #include #include +#include + +#ifdef ENABLE_FLOW +#include +#include +#endif #include "util.hpp" #include "views/viewbase.hpp" + using std::function; using std::list; using std::map; @@ -46,6 +58,13 @@ using std::shared_ptr; using std::string; using std::unordered_set; +#ifdef ENABLE_FLOW +using Glib::RefPtr; +using Gst::AppSink; +using Gst::Element; +using Gst::Pipeline; +#endif + struct srd_decoder; struct srd_channel; @@ -133,8 +152,12 @@ public: */ bool data_saved() const; + void save_setup(QSettings &settings) const; + void save_settings(QSettings &settings) const; + void restore_setup(QSettings &settings); + void restore_settings(QSettings &settings); /** @@ -149,9 +172,12 @@ public: void set_default_device(); - void load_init_file(const string &file_name, const string &format); + bool using_file_device() const; + + void load_init_file(const string &file_name, const string &format, + const string &setup_file_name); - void load_file(QString file_name, + void load_file(QString file_name, QString setup_file_name = QString(), shared_ptr format = nullptr, const map &options = map()); @@ -203,6 +229,12 @@ private: void signal_new_segment(); void signal_segment_completed(); +#ifdef ENABLE_FLOW + bool on_gst_bus_message(const Glib::RefPtr& bus, const Glib::RefPtr& message); + + Gst::FlowReturn on_gst_new_sample(); +#endif + void feed_in_header(); void feed_in_meta(shared_ptr meta); @@ -234,12 +266,15 @@ Q_SIGNALS: void data_received(); - void add_view(const QString &title, views::ViewType type, - Session *session); + void add_view(views::ViewType type, Session *session); public Q_SLOTS: void on_data_saved(); +#ifdef ENABLE_DECODE + void on_new_decoders_selected(vector decoders); +#endif + private: DeviceManager &device_manager_; shared_ptr device_; @@ -272,6 +307,18 @@ private: bool out_of_memory_; bool data_saved_; bool frame_began_; + + QElapsedTimer acq_time_; + +#ifdef ENABLE_FLOW + RefPtr pipeline_; + RefPtr source_; + RefPtr sink_; + + mutable mutex pipeline_done_mutex_; + mutable condition_variable pipeline_done_cond_; + atomic pipeline_done_interrupt_; +#endif }; } // namespace pv