X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fsession.hpp;h=6bdfaa24ffe861c27b8919571115c0de67bb6ae7;hb=9009d9b5ca2e2039725040060c0fec19e7bc3caa;hp=c27afcb15f1177ed2b7951fec816279fc69ad92a;hpb=870ea3dbf35b182e120c5d84ab89bf9cb7691232;p=pulseview.git diff --git a/pv/session.hpp b/pv/session.hpp index c27afcb1..6bdfaa24 100644 --- a/pv/session.hpp +++ b/pv/session.hpp @@ -29,12 +29,6 @@ #include #include -#ifdef _WIN32 -// Windows: Avoid boost/thread namespace pollution (which includes windows.h). -#define NOGDI -#define NORESOURCE -#endif - #include #include #include @@ -61,11 +55,14 @@ class Device; class InputFormat; class Logic; class Meta; +class Option; class OutputFormat; class Packet; class Session; } // namespace sigrok +using sigrok::Option; + namespace pv { class DeviceManager; @@ -73,6 +70,7 @@ class DeviceManager; namespace data { class Analog; class AnalogSegment; +class DecodeSignal; class Logic; class LogicSegment; class SignalBase; @@ -102,6 +100,8 @@ public: Running }; + static shared_ptr sr_context; + public: Session(DeviceManager &device_manager, QString name); @@ -163,6 +163,8 @@ public: double get_samplerate() const; + uint32_t get_segment_count() const; + void register_view(shared_ptr view); void deregister_view(shared_ptr view); @@ -172,9 +174,9 @@ public: const unordered_set< shared_ptr > signalbases() const; #ifdef ENABLE_DECODE - bool add_decoder(srd_decoder *const dec); + shared_ptr add_decode_signal(); - void remove_decode_signal(shared_ptr signalbase); + void remove_decode_signal(shared_ptr signal); #endif private: @@ -185,11 +187,18 @@ private: shared_ptr signalbase_from_channel( shared_ptr channel) const; + static map input_format_options( + vector user_spec, + map> fmt_opts); + private: void sample_thread_proc(function error_handler); void free_unused_memory(); + void signal_new_segment(); + void signal_segment_completed(); + void feed_in_header(); void feed_in_meta(shared_ptr meta); @@ -197,6 +206,7 @@ private: void feed_in_trigger(); void feed_in_frame_begin(); + void feed_in_frame_end(); void feed_in_logic(shared_ptr logic); @@ -227,11 +237,13 @@ private: shared_ptr cur_logic_segment_; map< shared_ptr, shared_ptr > cur_analog_segments_; + int32_t highest_segment_id_; std::thread sampling_thread_; bool out_of_memory_; bool data_saved_; + bool frame_began_; Q_SIGNALS: void capture_state_changed(int state); @@ -243,12 +255,11 @@ Q_SIGNALS: void trigger_event(util::Timestamp location); - void frame_began(); + void new_segment(int new_segment_id); + void segment_completed(int segment_id); void data_received(); - void frame_ended(); - void add_view(const QString &title, views::ViewType type, Session *session);