X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsession.hpp;h=a4aaf6aabbcc8c94bf32e446375e8b9218a36b26;hp=3bb10e25731f5168a826c06497c0af84842d146e;hb=HEAD;hpb=4b5537c576c37884c2a0254985893e20ea5338e6 diff --git a/pv/session.hpp b/pv/session.hpp index 3bb10e2..a4aaf6a 100644 --- a/pv/session.hpp +++ b/pv/session.hpp @@ -14,38 +14,74 @@ * 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, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_SIGSESSION_H -#define PULSEVIEW_PV_SIGSESSION_H +#ifndef PULSEVIEW_PV_SESSION_HPP +#define PULSEVIEW_PV_SESSION_HPP +#ifdef ENABLE_FLOW +#include +#include +#endif + +#include #include #include #include #include #include #include +#include #include -#include - #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; +using std::mutex; +using std::recursive_mutex; +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; namespace sigrok { - class Analog; - class Channel; - class Device; - class Logic; - class Meta; - class Packet; - class Session; -} +class Analog; +class Channel; +class Device; +class InputFormat; +class Logic; +class Meta; +class Option; +class OutputFormat; +class Packet; +class Session; +} // namespace sigrok + +using sigrok::Option; namespace pv { @@ -54,15 +90,23 @@ class DeviceManager; namespace data { class Analog; class AnalogSegment; +class DecodeSignal; class Logic; class LogicSegment; +class SignalBase; class SignalData; } -namespace view { -class DecodeTrace; -class LogicSignal; -class Signal; +namespace devices { +class Device; +} + +namespace toolbars { +class MainBar; +} + +namespace views { +class ViewBase; } class Session : public QObject @@ -76,8 +120,10 @@ public: Running }; + static shared_ptr sr_context; + public: - Session(DeviceManager &device_manager); + Session(DeviceManager &device_manager, QString name); ~Session(); @@ -85,111 +131,195 @@ public: const DeviceManager& device_manager() const; - const std::shared_ptr& session() const; + shared_ptr session() const; - std::shared_ptr device() const; + shared_ptr device() const; + + QString name() const; + + void set_name(QString name); + + const list< shared_ptr > views() const; + + shared_ptr main_view() const; + + shared_ptr main_bar() const; + + void set_main_bar(shared_ptr main_bar); /** - * Sets device instance that will be used in the next capture session. + * Indicates whether the captured data was saved to disk already or not + */ + 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); + + /** + * Attempts to set device instance, may fall back to demo if needed */ - void set_device(std::shared_ptr device); + void select_device(shared_ptr device); /** - * Sets a sigrok session file as the capture device. - * @param name the path to the file. + * Sets device instance that will be used in the next capture session. */ - void set_session_file(const std::string &name); + void set_device(shared_ptr device); void set_default_device(); + void load_init_file(const string &file_name, const string &format, + const string &setup_file_name); + + void load_file(QString file_name, QString setup_file_name = QString(), + shared_ptr format = nullptr, + const map &options = + map()); + capture_state get_capture_state() const; - void start_capture(std::function error_handler); + void start_capture(function error_handler); void stop_capture(); - std::set< std::shared_ptr > get_data() const; + double get_samplerate() const; - boost::shared_mutex& signals_mutex() const; + uint32_t get_segment_count() const; - const std::vector< std::shared_ptr >& signals() const; + vector get_triggers(uint32_t segment_id) const; -#ifdef ENABLE_DECODE - bool add_decoder(srd_decoder *const dec); + void register_view(shared_ptr view); - std::vector< std::shared_ptr > - get_decode_signals() const; + void deregister_view(shared_ptr view); - void remove_decode_signal(view::DecodeTrace *signal); + bool has_view(shared_ptr view); + + const unordered_set< shared_ptr > signalbases() const; + + bool all_segments_complete(uint32_t segment_id) const; + +#ifdef ENABLE_DECODE + shared_ptr add_decode_signal(); + + void remove_decode_signal(shared_ptr signal); #endif private: void set_capture_state(capture_state state); - void update_signals(std::shared_ptr device); + void update_signals(); - std::shared_ptr signal_from_channel( - std::shared_ptr channel) const; + shared_ptr signalbase_from_channel( + shared_ptr channel) const; - void read_sample_rate(std::shared_ptr); + static map input_format_options( + vector user_spec, + map> fmt_opts); -private: - void sample_thread_proc(std::shared_ptr device, - std::function error_handler); + void sample_thread_proc(function error_handler); + + void free_unused_memory(); + + void signal_new_segment(); + void signal_segment_completed(); + +#ifdef ENABLE_FLOW + bool on_gst_bus_message(const Glib::RefPtr& bus, const Glib::RefPtr& message); - void feed_in_header(std::shared_ptr device); + Gst::FlowReturn on_gst_new_sample(); +#endif + + void feed_in_header(); + + void feed_in_meta(shared_ptr meta); - void feed_in_meta(std::shared_ptr device, - std::shared_ptr meta); + void feed_in_trigger(); void feed_in_frame_begin(); + void feed_in_frame_end(); + + void feed_in_logic(shared_ptr logic); + + void feed_in_analog(shared_ptr analog); + + void data_feed_in(shared_ptr device, + shared_ptr packet); + +Q_SIGNALS: + void capture_state_changed(int state); + void device_changed(); - void feed_in_logic(std::shared_ptr logic); + void signals_changed(); + + void name_changed(); + + void trigger_event(int segment_id, util::Timestamp location); - void feed_in_analog(std::shared_ptr analog); + void new_segment(int new_segment_id); + void segment_completed(int segment_id); + + void data_received(); - void data_feed_in(std::shared_ptr device, - std::shared_ptr packet); + void add_view(const QString &title, 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_; - std::shared_ptr session_; + shared_ptr device_; + QString default_name_, name_; - /** - * The device instance that will be used in the next capture session. - */ - std::shared_ptr device_; + list< shared_ptr > views_; + shared_ptr main_view_; - std::vector< std::shared_ptr > decode_traces_; + shared_ptr main_bar_; - mutable std::mutex sampling_mutex_; + mutable mutex sampling_mutex_; //!< Protects access to capture_state_. capture_state capture_state_; - mutable boost::shared_mutex signals_mutex_; - std::vector< std::shared_ptr > signals_; + unordered_set< shared_ptr > signalbases_; + unordered_set< shared_ptr > all_signal_data_; + + /// trigger_list_ contains pairs of values. + vector< std::pair > trigger_list_; - mutable std::mutex data_mutex_; - std::shared_ptr logic_data_; + mutable recursive_mutex data_mutex_; + shared_ptr logic_data_; uint64_t cur_samplerate_; - std::shared_ptr cur_logic_segment_; - std::map< std::shared_ptr, std::shared_ptr > + shared_ptr cur_logic_segment_; + map< shared_ptr, shared_ptr > cur_analog_segments_; + int32_t highest_segment_id_; std::thread sampling_thread_; -Q_SIGNALS: - void capture_state_changed(int state); - void device_selected(); + bool out_of_memory_; + bool data_saved_; + bool frame_began_; - void signals_changed(); - - void frame_began(); + QElapsedTimer acq_time_; - void data_received(); +#ifdef ENABLE_FLOW + RefPtr pipeline_; + RefPtr source_; + RefPtr sink_; - void frame_ended(); + mutable mutex pipeline_done_mutex_; + mutable condition_variable pipeline_done_cond_; + atomic pipeline_done_interrupt_; +#endif }; } // namespace pv -#endif // PULSEVIEW_PV_SIGSESSION_H +#endif // PULSEVIEW_PV_SESSION_HPP