X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsigsession.h;h=a4e14d9cd099e8a6755ace39ddd26fd9d3bd21b5;hp=10d1e23de55d618d9a44ea36085955d23b55b3e7;hb=ab973f4729258b729d2aa84abfa14b61609fa35e;hpb=3b68d03ddae96edb38a80f31bf6a990bde21cd1d diff --git a/pv/sigsession.h b/pv/sigsession.h index 10d1e23d..a4e14d9c 100644 --- a/pv/sigsession.h +++ b/pv/sigsession.h @@ -21,8 +21,6 @@ #ifndef PULSEVIEW_PV_SIGSESSION_H #define PULSEVIEW_PV_SIGSESSION_H -#include - #include #include #include @@ -94,7 +92,7 @@ public: capture_state get_capture_state() const; - void start_capture(boost::function error_handler); + void start_capture(std::function error_handler); void stop_capture(); @@ -123,23 +121,8 @@ private: void read_sample_rate(const sr_dev_inst *const sdi); private: - /** - * Attempts to autodetect the format. Failing that - * @param filename The filename of the input file. - * @return A pointer to the 'struct sr_input_format' that should be - * used, or NULL if no input format was selected or - * auto-detected. - */ - static sr_input_format* determine_input_file_format( - const std::string &filename); - - static sr_input* load_input_file_format( - const std::string &filename, - boost::function error_handler, - sr_input_format *format = NULL); - void sample_thread_proc(std::shared_ptr dev_inst, - boost::function error_handler); + std::function error_handler); void feed_in_header(const sr_dev_inst *sdi); @@ -182,7 +165,7 @@ private: std::thread _sampling_thread; -signals: +Q_SIGNALS: void capture_state_changed(int state); void signals_changed(); @@ -198,6 +181,16 @@ private: // sessions should should be supported and it should be // possible to associate a pointer with a sr_session. static SigSession *_session; + +public: + // TODO: Even more of a hack. The libsigrok API now allows for + // multiple sessions. However sr_session_* calls are scattered + // around the PV architecture and a single SigSession object is + // being used across multiple sequential sessions, which are + // created and destroyed in other classes in pv::device. This + // is a mess. For now just keep a single sr_session pointer here + // which we can use for all those scattered calls. + static struct sr_session *_sr_session; }; } // namespace pv