X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fsigsession.cpp;h=11ba6b068a180df0cb281c94a577ef7329d070de;hb=9fd5bb6e6468eb6d211aff682f3a64e7f070bb44;hp=348d40c1e5b3b09da676184fb12f49ce48b6c566;hpb=be73bdfa788fcc62bda3187cb1ba04fed2b9d721;p=pulseview.git diff --git a/pv/sigsession.cpp b/pv/sigsession.cpp index 348d40c1..11ba6b06 100644 --- a/pv/sigsession.cpp +++ b/pv/sigsession.cpp @@ -76,12 +76,9 @@ void SigSession::start_capture(struct sr_dev_inst *sdi, { stop_capture(); - lock_guard lock(_sampling_mutex); - _sample_rate = sample_rate; - _sampling_thread.reset(new boost::thread( &SigSession::sample_thread_proc, this, sdi, - record_length)); + record_length, sample_rate)); } void SigSession::stop_capture() @@ -138,12 +135,8 @@ void SigSession::load_thread_proc(const string name) } void SigSession::sample_thread_proc(struct sr_dev_inst *sdi, - uint64_t record_length) + uint64_t record_length, uint64_t sample_rate) { - shared_ptr signal; - unsigned int logic_probe_count = 0; - unsigned int analog_probe_count = 0; - assert(sdi); sr_session_new(); @@ -164,16 +157,33 @@ void SigSession::sample_thread_proc(struct sr_dev_inst *sdi, } // Set the samplerate - { - lock_guard lock(_sampling_mutex); - if (sr_config_set(sdi, SR_CONF_SAMPLERATE, - &_sample_rate) != SR_OK) { - qDebug() << "Failed to configure samplerate."; - sr_session_destroy(); - return; - } + if (sr_config_set(sdi, SR_CONF_SAMPLERATE, + &sample_rate) != SR_OK) { + qDebug() << "Failed to configure samplerate."; + sr_session_destroy(); + return; } + if (sr_session_start() != SR_OK) { + qDebug() << "Failed to start session."; + return; + } + + set_capture_state(Running); + + sr_session_run(); + sr_session_destroy(); + + set_capture_state(Stopped); +} + +void SigSession::feed_in_header(const sr_dev_inst *sdi) +{ + shared_ptr signal; + uint64_t *sample_rate; + unsigned int logic_probe_count = 0; + unsigned int analog_probe_count = 0; + // Detect what data types we will receive for (const GSList *l = sdi->probes; l; l = l->next) { const sr_probe *const probe = (const sr_probe *)l->data; @@ -191,19 +201,23 @@ void SigSession::sample_thread_proc(struct sr_dev_inst *sdi, } } + // Read out the sample rate + assert(sdi->driver); + assert(sr_config_get(sdi->driver, SR_CONF_SAMPLERATE, + (const void**)&sample_rate, sdi) == SR_OK); + // Create data containers for the coming data snapshots { lock_guard data_lock(_data_mutex); - lock_guard sampling_lock(_sampling_mutex); if (logic_probe_count != 0) { _logic_data.reset(new data::Logic( - logic_probe_count, _sample_rate)); + logic_probe_count, *sample_rate)); assert(_logic_data); } if (analog_probe_count != 0) { - _analog_data.reset(new data::Analog(_sample_rate)); + _analog_data.reset(new data::Analog(*sample_rate)); assert(_analog_data); } } @@ -240,23 +254,13 @@ void SigSession::sample_thread_proc(struct sr_dev_inst *sdi, signals_changed(); } - - if (sr_session_start() != SR_OK) { - qDebug() << "Failed to start session."; - return; - } - - set_capture_state(Running); - - sr_session_run(); - sr_session_destroy(); - - set_capture_state(Stopped); } void SigSession::feed_in_meta(const sr_dev_inst *sdi, const sr_datafeed_meta &meta) { + (void)sdi; + for (const GSList *l = meta.config; l; l = l->next) { const sr_config *const src = (const sr_config*)l->data; switch (src->key) { @@ -321,6 +325,7 @@ void SigSession::data_feed_in(const struct sr_dev_inst *sdi, switch (packet->type) { case SR_DF_HEADER: + feed_in_header(sdi); break; case SR_DF_META: