X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsession.cpp;h=c0bcd670de26d0af866bf9cb87705ad506d5a57e;hp=ca72e9b0d670fed6a14da47d4c7c2ce79946c078;hb=b571a8e7e0dc3e3b6daa58f27050e76466f006dd;hpb=7ea2a4ff0765fdad34b84e4b4631d6f3f5588714 diff --git a/pv/session.cpp b/pv/session.cpp index ca72e9b0..c0bcd670 100644 --- a/pv/session.cpp +++ b/pv/session.cpp @@ -28,6 +28,7 @@ #include #include "devicemanager.hpp" +#include "mainwindow.hpp" #include "session.hpp" #include "data/analog.hpp" @@ -194,7 +195,7 @@ void Session::save_settings(QSettings &settings) const dev_info = device_manager_.get_device_info(device_); - for (string key : key_list) { + for (string& key : key_list) { if (dev_info.count(key)) settings.setValue(QString::fromUtf8(key.c_str()), QString::fromUtf8(dev_info.at(key).c_str())); @@ -206,7 +207,7 @@ void Session::save_settings(QSettings &settings) const } shared_ptr sessionfile_device = - dynamic_pointer_cast< devices::SessionFile >(device_); + dynamic_pointer_cast(device_); if (sessionfile_device) { settings.setValue("device_type", "sessionfile"); @@ -216,8 +217,18 @@ void Session::save_settings(QSettings &settings) const settings.endGroup(); } + shared_ptr inputfile_device = + dynamic_pointer_cast(device_); + + if (inputfile_device) { + settings.setValue("device_type", "inputfile"); + settings.beginGroup("device"); + inputfile_device->save_meta_to_settings(settings); + settings.endGroup(); + } + // Save channels and decoders - for (shared_ptr base : signalbases_) { + for (const shared_ptr& base : signalbases_) { #ifdef ENABLE_DECODE if (base->is_decode_signal()) { settings.beginGroup("decode_signal" + QString::number(decode_signals++)); @@ -240,7 +251,7 @@ void Session::save_settings(QSettings &settings) const main_view_->save_settings(settings); settings.endGroup(); - for (shared_ptr view : views_) { + for (const shared_ptr& view : views_) { if (view != main_view_) { settings.beginGroup("view" + QString::number(views++)); view->save_settings(settings); @@ -289,20 +300,34 @@ void Session::restore_settings(QSettings &settings) settings.endGroup(); } - if (device_type == "sessionfile") { - settings.beginGroup("device"); - QString filename = settings.value("filename").toString(); - settings.endGroup(); + if ((device_type == "sessionfile") || (device_type == "inputfile")) { + if (device_type == "sessionfile") { + settings.beginGroup("device"); + QString filename = settings.value("filename").toString(); + settings.endGroup(); - if (QFileInfo(filename).isReadable()) { - device = make_shared(device_manager_.context(), - filename.toStdString()); + if (QFileInfo(filename).isReadable()) { + device = make_shared(device_manager_.context(), + filename.toStdString()); + } + } + + if (device_type == "inputfile") { + settings.beginGroup("device"); + device = make_shared(device_manager_.context(), + settings); + settings.endGroup(); + } + + if (device) { set_device(device); - // TODO Perform error handling - start_capture([](QString infoMessage) { (void)infoMessage; }); + start_capture([](QString infoMessage) { + // TODO Emulate noquote() + qDebug() << "Session error:" << infoMessage; }); - set_name(QFileInfo(filename).fileName()); + set_name(QString::fromStdString( + dynamic_pointer_cast(device)->display_name(device_manager_))); } } @@ -352,8 +377,7 @@ void Session::select_device(shared_ptr device) else set_default_device(); } catch (const QString &e) { - main_bar_->session_error(tr("Failed to Select Device"), - tr("Failed to Select Device")); + MainWindow::show_session_error(tr("Failed to select device"), e); } } @@ -373,20 +397,21 @@ void Session::set_device(shared_ptr device) name_ = default_name_; name_changed(); - // Remove all stored data + // Remove all stored data and reset all views for (shared_ptr view : views_) { view->clear_signals(); #ifdef ENABLE_DECODE view->clear_decode_signals(); #endif + view->reset_view_state(); } - for (const shared_ptr d : all_signal_data_) + for (const shared_ptr& d : all_signal_data_) d->clear(); all_signal_data_.clear(); signalbases_.clear(); cur_logic_segment_.reset(); - for (auto entry : cur_analog_segments_) { + for (auto& entry : cur_analog_segments_) { shared_ptr(entry.first).reset(); shared_ptr(entry.second).reset(); } @@ -401,6 +426,7 @@ void Session::set_device(shared_ptr device) device_->open(); } catch (const QString &e) { device_.reset(); + MainWindow::show_session_error(tr("Failed to open device"), e); } if (device_) { @@ -426,7 +452,7 @@ void Session::set_default_device() // Try and find the demo device and select that by default const auto iter = find_if(devices.begin(), devices.end(), [] (const shared_ptr &d) { - return d->hardware_device()->driver()->name() == "demo"; }); + return d->hardware_device()->driver()->name() == "demo"; }); set_device((iter == devices.end()) ? devices.front() : *iter); } @@ -444,7 +470,7 @@ Session::input_format_options(vector user_spec, { map result; - for (auto entry : user_spec) { + for (auto& entry : user_spec) { /* * Split key=value specs. Accept entries without separator * (for simplified boolean specifications). @@ -490,7 +516,7 @@ void Session::load_init_file(const string &file_name, const string &format) [&](const pair > f) { return f.first == user_name; }); if (iter == formats.end()) { - main_bar_->session_error(tr("Error"), + MainWindow::show_session_error(tr("Error"), tr("Unexpected input format: %s").arg(QString::fromStdString(format))); return; } @@ -509,6 +535,10 @@ void Session::load_file(QString file_name, const QString errorMessage( QString("Failed to load file %1").arg(file_name)); + // In the absence of a caller's format spec, try to auto detect. + // Assume "sigrok session file" upon lookup miss. + if (!format) + format = device_manager_.context()->input_format_match(file_name.toStdString()); try { if (format) set_device(shared_ptr( @@ -521,8 +551,8 @@ void Session::load_file(QString file_name, new devices::SessionFile( device_manager_.context(), file_name.toStdString()))); - } catch (Error e) { - main_bar_->session_error(tr("Failed to load ") + file_name, e.what()); + } catch (Error& e) { + MainWindow::show_session_error(tr("Failed to load ") + file_name, e.what()); set_default_device(); main_bar_->update_device_list(); return; @@ -531,7 +561,7 @@ void Session::load_file(QString file_name, main_bar_->update_device_list(); start_capture([&, errorMessage](QString infoMessage) { - main_bar_->session_error(errorMessage, infoMessage); }); + MainWindow::show_session_error(errorMessage, infoMessage); }); set_name(QFileInfo(file_name).fileName()); } @@ -564,7 +594,7 @@ void Session::start_capture(function error_handler) } // Clear signal data - for (const shared_ptr d : all_signal_data_) + for (const shared_ptr& d : all_signal_data_) d->clear(); trigger_list_.clear(); @@ -613,7 +643,7 @@ void Session::register_view(shared_ptr view) qobject_cast(view.get()); if (trace_view) { - for (shared_ptr signalbase : signalbases_) { + for (const shared_ptr& signalbase : signalbases_) { const int sb_exists = count_if( view_signalbases.cbegin(), view_signalbases.cend(), [&](const shared_ptr &sb) { @@ -654,7 +684,7 @@ void Session::deregister_view(shared_ptr view) bool Session::has_view(shared_ptr view) { - for (shared_ptr v : views_) + for (shared_ptr& v : views_) if (v == view) return true; @@ -665,11 +695,11 @@ double Session::get_samplerate() const { double samplerate = 0.0; - for (const shared_ptr d : all_signal_data_) { + for (const shared_ptr& d : all_signal_data_) { assert(d); const vector< shared_ptr > segments = d->segments(); - for (const shared_ptr &s : segments) + for (const shared_ptr& s : segments) samplerate = max(samplerate, s->samplerate()); } // If there is no sample rate given we use samples as unit @@ -684,7 +714,7 @@ uint32_t Session::get_segment_count() const uint32_t value = 0; // Find the highest number of segments - for (shared_ptr data : all_signal_data_) + for (const shared_ptr& data : all_signal_data_) if (data->get_segment_count() > value) value = data->get_segment_count(); @@ -695,7 +725,7 @@ vector Session::get_triggers(uint32_t segment_id) const { vector result; - for (pair entry : trigger_list_) + for (const pair& entry : trigger_list_) if (entry.first == segment_id) result.push_back(entry.second); @@ -711,7 +741,7 @@ bool Session::all_segments_complete(uint32_t segment_id) const { bool all_complete = true; - for (shared_ptr base : signalbases_) + for (const shared_ptr& base : signalbases_) if (!base->segment_is_complete(segment_id)) all_complete = false; @@ -730,9 +760,9 @@ shared_ptr Session::add_decode_signal() signalbases_.insert(signal); // Add the decode signal to all views - for (shared_ptr view : views_) + for (shared_ptr& view : views_) view->add_decode_signal(signal); - } catch (runtime_error e) { + } catch (runtime_error& e) { remove_decode_signal(signal); return nullptr; } @@ -746,7 +776,7 @@ void Session::remove_decode_signal(shared_ptr signal) { signalbases_.erase(signal); - for (shared_ptr view : views_) + for (shared_ptr& view : views_) view->remove_decode_signal(signal); signals_changed(); @@ -772,7 +802,7 @@ void Session::update_signals() if (!device_) { signalbases_.clear(); logic_data_.reset(); - for (shared_ptr view : views_) { + for (shared_ptr& view : views_) { view->clear_signals(); #ifdef ENABLE_DECODE view->clear_decode_signals(); @@ -787,7 +817,7 @@ void Session::update_signals() if (!sr_dev) { signalbases_.clear(); logic_data_.reset(); - for (shared_ptr view : views_) { + for (shared_ptr& view : views_) { view->clear_signals(); #ifdef ENABLE_DECODE view->clear_decode_signals(); @@ -818,7 +848,7 @@ void Session::update_signals() } // Make the signals list - for (shared_ptr viewbase : views_) { + for (shared_ptr& viewbase : views_) { views::trace::View *trace_view = qobject_cast(viewbase.get()); @@ -844,7 +874,7 @@ void Session::update_signals() } else { // Find the signalbase for this channel if possible signalbase.reset(); - for (const shared_ptr b : signalbases_) + for (const shared_ptr& b : signalbases_) if (b->channel() == channel) signalbase = b; @@ -920,7 +950,11 @@ void Session::sample_thread_proc(function error_handler) if (!device_) return; - cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); + try { + cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); + } catch (Error& e) { + cur_samplerate_ = 0; + } out_of_memory_ = false; @@ -934,7 +968,7 @@ void Session::sample_thread_proc(function error_handler) try { device_->start(); - } catch (Error e) { + } catch (Error& e) { error_handler(e.what()); return; } @@ -944,7 +978,7 @@ void Session::sample_thread_proc(function error_handler) try { device_->run(); - } catch (Error e) { + } catch (Error& e) { error_handler(e.what()); set_capture_state(Stopped); return; @@ -953,10 +987,8 @@ void Session::sample_thread_proc(function error_handler) set_capture_state(Stopped); // Confirm that SR_DF_END was received - if (cur_logic_segment_) { - qDebug("SR_DF_END was not received."); - assert(false); - } + if (cur_logic_segment_) + qDebug() << "WARNING: SR_DF_END was not received."; // Optimize memory usage free_unused_memory(); @@ -974,12 +1006,11 @@ void Session::sample_thread_proc(function error_handler) void Session::free_unused_memory() { - for (shared_ptr data : all_signal_data_) { + for (const shared_ptr& data : all_signal_data_) { const vector< shared_ptr > segments = data->segments(); - for (shared_ptr segment : segments) { + for (const shared_ptr& segment : segments) segment->free_unused_memory(); - } } } @@ -1017,7 +1048,7 @@ void Session::signal_segment_completed() { int segment_id = 0; - for (shared_ptr signalbase : signalbases_) { + for (const shared_ptr& signalbase : signalbases_) { // We only care about analog and logic channels, not derived ones if (signalbase->type() == data::SignalBase::AnalogChannel) { segment_id = signalbase->analog_data()->get_segment_count() - 1; @@ -1041,18 +1072,13 @@ void Session::feed_in_header() void Session::feed_in_meta(shared_ptr meta) { - for (auto entry : meta->config()) { + for (auto& entry : meta->config()) { switch (entry.first->id()) { case SR_CONF_SAMPLERATE: - // We can't rely on the header to always contain the sample rate, - // so in case it's supplied via a meta packet, we use it. - if (!cur_samplerate_) - cur_samplerate_ = g_variant_get_uint64(entry.second.gobj()); - - /// @todo handle samplerate changes + cur_samplerate_ = g_variant_get_uint64(entry.second.gobj()); break; default: - // Unknown metadata is not an error. + qDebug() << "Received meta data key" << entry.first->id() << ", ignoring."; break; } } @@ -1066,7 +1092,7 @@ void Session::feed_in_trigger() uint64_t sample_count = 0; { - for (const shared_ptr d : all_signal_data_) { + for (const shared_ptr& d : all_signal_data_) { assert(d); uint64_t temp_count = 0; @@ -1080,10 +1106,21 @@ void Session::feed_in_trigger() } } - // If no frame began then this is a trigger for a new segment - const uint32_t segment_id = - (frame_began_) ? highest_segment_id_ : (highest_segment_id_ + 1); + uint32_t segment_id = 0; // Default segment when no frames are used + + // If a frame began, we'd ideally be able to use the highest segment ID for + // the trigger. However, as new segments are only created when logic or + // analog data comes in, this doesn't work if the trigger appears right + // after the beginning of the frame, before any sample data. + // For this reason, we use highest segment ID + 1 if no sample data came in + // yet and the highest segment ID otherwise. + if (frame_began_) { + segment_id = highest_segment_id_; + if (!cur_logic_segment_ && (cur_analog_segments_.size() == 0)) + segment_id++; + } + // TODO Create timestamp from segment start time + segment's current sample count util::Timestamp timestamp = sample_count / get_samplerate(); trigger_list_.emplace_back(segment_id, timestamp); trigger_event(segment_id, timestamp); @@ -1105,7 +1142,7 @@ void Session::feed_in_frame_end() if (cur_logic_segment_) cur_logic_segment_->set_complete(); - for (auto entry : cur_analog_segments_) { + for (auto& entry : cur_analog_segments_) { shared_ptr segment = entry.second; segment->set_complete(); } @@ -1121,8 +1158,17 @@ void Session::feed_in_frame_end() void Session::feed_in_logic(shared_ptr logic) { + if (logic->data_length() == 0) { + qDebug() << "WARNING: Received logic packet with 0 samples."; + return; + } + if (!cur_samplerate_) - cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); + try { + cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); + } catch (Error& e) { + // Do nothing + } lock_guard lock(data_mutex_); @@ -1153,24 +1199,31 @@ void Session::feed_in_logic(shared_ptr logic) void Session::feed_in_analog(shared_ptr analog) { + if (analog->num_samples() == 0) { + qDebug() << "WARNING: Received analog packet with 0 samples."; + return; + } + if (!cur_samplerate_) - cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); + try { + cur_samplerate_ = device_->read_config(ConfigKey::SAMPLERATE); + } catch (Error& e) { + // Do nothing + } lock_guard lock(data_mutex_); const vector> channels = analog->channels(); - const unsigned int channel_count = channels.size(); - const size_t sample_count = analog->num_samples() / channel_count; bool sweep_beginning = false; - unique_ptr data(new float[analog->num_samples()]); + unique_ptr data(new float[analog->num_samples() * channels.size()]); analog->get_data_as_float(data.get()); if (signalbases_.empty()) update_signals(); float *channel_data = data.get(); - for (auto channel : channels) { + for (auto& channel : channels) { shared_ptr segment; // Try to get the segment of the channel @@ -1205,8 +1258,8 @@ void Session::feed_in_analog(shared_ptr analog) assert(segment); // Append the samples in the segment - segment->append_interleaved_samples(channel_data++, sample_count, - channel_count); + segment->append_interleaved_samples(channel_data++, analog->num_samples(), + channels.size()); } if (sweep_beginning) { @@ -1242,7 +1295,7 @@ void Session::data_feed_in(shared_ptr device, case SR_DF_LOGIC: try { feed_in_logic(dynamic_pointer_cast(packet->payload())); - } catch (bad_alloc) { + } catch (bad_alloc&) { out_of_memory_ = true; device_->stop(); } @@ -1251,7 +1304,7 @@ void Session::data_feed_in(shared_ptr device, case SR_DF_ANALOG: try { feed_in_analog(dynamic_pointer_cast(packet->payload())); - } catch (bad_alloc) { + } catch (bad_alloc&) { out_of_memory_ = true; device_->stop(); } @@ -1271,6 +1324,15 @@ void Session::data_feed_in(shared_ptr device, // devices use frames, and for those devices, we need to do it here. { lock_guard lock(data_mutex_); + + if (cur_logic_segment_) + cur_logic_segment_->set_complete(); + + for (auto& entry : cur_analog_segments_) { + shared_ptr segment = entry.second; + segment->set_complete(); + } + cur_logic_segment_.reset(); cur_analog_segments_.clear(); }