X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsession.hpp;h=424bf6375cd0d14850df3714ad0d1f41c87cc9b4;hp=0f067a47be1f8e2875467c976cd4424e616c046b;hb=e771b42d654ecb1e8e4d6ca60687c545461e3750;hpb=5ccfc97e20bbea19b9bc37905dd4cf63ee1f6303 diff --git a/pv/session.hpp b/pv/session.hpp index 0f067a47..424bf637 100644 --- a/pv/session.hpp +++ b/pv/session.hpp @@ -29,13 +29,6 @@ #include #include -#ifdef _WIN32 -// Windows: Avoid boost/thread namespace pollution (which includes windows.h). -#define NOGDI -#define NORESOURCE -#endif -#include - #include #include #include @@ -43,6 +36,15 @@ #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; + struct srd_decoder; struct srd_channel; @@ -53,10 +55,13 @@ class Device; class InputFormat; class Logic; class Meta; +class Option; class OutputFormat; class Packet; class Session; -} +} // namespace sigrok + +using sigrok::Option; namespace pv { @@ -65,6 +70,7 @@ class DeviceManager; namespace data { class Analog; class AnalogSegment; +class DecodeSignal; class Logic; class LogicSegment; class SignalBase; @@ -103,21 +109,21 @@ public: const DeviceManager& device_manager() 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 std::list< std::shared_ptr > views() const; + const list< shared_ptr > views() const; - std::shared_ptr main_view() const; + shared_ptr main_view() const; - std::shared_ptr main_bar() const; + shared_ptr main_bar() const; - void set_main_bar(std::shared_ptr main_bar); + void set_main_bar(shared_ptr main_bar); /** * Indicates whether the captured data was saved to disk already or not @@ -131,44 +137,42 @@ public: /** * Attempts to set device instance, may fall back to demo if needed */ - void select_device(std::shared_ptr device); + void select_device(shared_ptr device); /** * Sets device instance that will be used in the next capture session. */ - void set_device(std::shared_ptr device); + void set_device(shared_ptr device); void set_default_device(); - void load_init_file(const std::string &file_name, - const std::string &format); + void load_init_file(const string &file_name, const string &format); void load_file(QString file_name, - std::shared_ptr format = nullptr, - const std::map &options = - std::map()); + 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(); double get_samplerate() const; - void register_view(std::shared_ptr view); + void register_view(shared_ptr view); - void deregister_view(std::shared_ptr view); + void deregister_view(shared_ptr view); - bool has_view(std::shared_ptr view); + bool has_view(shared_ptr view); - const std::unordered_set< std::shared_ptr > - signalbases() const; + 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(std::shared_ptr signalbase); + void remove_decode_signal(shared_ptr signal); #endif private: @@ -176,48 +180,54 @@ private: void update_signals(); - std::shared_ptr signalbase_from_channel( - std::shared_ptr channel) const; + 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(std::function error_handler); + void sample_thread_proc(function error_handler); + + void free_unused_memory(); void feed_in_header(); - void feed_in_meta(std::shared_ptr meta); + void feed_in_meta(shared_ptr meta); void feed_in_trigger(); void feed_in_frame_begin(); - void feed_in_logic(std::shared_ptr logic); + void feed_in_logic(shared_ptr logic); - void feed_in_analog(std::shared_ptr analog); + void feed_in_analog(shared_ptr analog); - void data_feed_in(std::shared_ptr device, - std::shared_ptr packet); + void data_feed_in(shared_ptr device, + shared_ptr packet); private: DeviceManager &device_manager_; - std::shared_ptr device_; + shared_ptr device_; QString default_name_, name_; - std::list< std::shared_ptr > views_; - std::shared_ptr main_view_; + list< shared_ptr > views_; + shared_ptr main_view_; - std::shared_ptr main_bar_; + shared_ptr main_bar_; - mutable std::mutex sampling_mutex_; //!< Protects access to capture_state_. + mutable mutex sampling_mutex_; //!< Protects access to capture_state_. capture_state capture_state_; - std::unordered_set< std::shared_ptr > signalbases_; - std::unordered_set< std::shared_ptr > all_signal_data_; + unordered_set< shared_ptr > signalbases_; + unordered_set< shared_ptr > all_signal_data_; - mutable std::recursive_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_; std::thread sampling_thread_;