X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fstoresession.cpp;h=b0f33f4a7a2ae674f2253ca16bedf11362475dfb;hp=f8ab2e69bc78c1a2ed985e86d176c662b56084d3;hb=eb8269e3b5eebdd77e6a82d42bcfdfbc3f7613a9;hpb=bf0edd2b0cbb5f4bd5d69b0f00bcea7d037e2287 diff --git a/pv/storesession.cpp b/pv/storesession.cpp index f8ab2e69..b0f33f4a 100644 --- a/pv/storesession.cpp +++ b/pv/storesession.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -38,7 +37,6 @@ #include #include #include -#include #include @@ -63,6 +61,7 @@ using std::vector; using Glib::VariantBase; +using sigrok::ChannelType; using sigrok::ConfigKey; using sigrok::Error; using sigrok::OutputFormat; @@ -106,22 +105,20 @@ const QString& StoreSession::error() const bool StoreSession::start() { - const unordered_set< shared_ptr > sigs(session_.signals()); + const unordered_set< shared_ptr > sigs(session_.signalbases()); shared_ptr any_segment; shared_ptr lsegment; vector< shared_ptr > achannel_list; vector< shared_ptr > asegment_list; - for (shared_ptr signal : sigs) { + for (shared_ptr signal : sigs) { if (!signal->enabled()) continue; - shared_ptr data = signal->data(); - - if (dynamic_pointer_cast(data)) { + if (signal->type() == ChannelType::LOGIC) { // All logic channels share the same data segments - shared_ptr ldata = dynamic_pointer_cast(data); + shared_ptr ldata = signal->logic_data(); const deque< shared_ptr > &lsegments = ldata->logic_segments(); @@ -135,10 +132,9 @@ bool StoreSession::start() any_segment = lsegment; } - if (dynamic_pointer_cast(data)) { + if (signal->type() == ChannelType::ANALOG) { // Each analog channel has its own segments - shared_ptr adata = - dynamic_pointer_cast(data); + shared_ptr adata = signal->analog_data(); const deque< shared_ptr > &asegments = adata->analog_segments(); @@ -151,7 +147,7 @@ bool StoreSession::start() asegment_list.push_back(asegments.front()); any_segment = asegments.front(); - achannel_list.push_back(signal->channel()); + achannel_list.push_back(signal); } } @@ -221,10 +217,6 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li { unsigned progress_scale = 0; - /// TODO: Wrap this in a std::unique_ptr when we transition to C++11 - uint8_t *const ldata = new uint8_t[BlockSize]; - assert(ldata); - int aunit_size = 0; int lunit_size = 0; unsigned int lsamples_per_block = INT_MAX; @@ -266,8 +258,6 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li const float *adata = asegment->get_samples(start_sample_, start_sample_ + packet_len); - // The srzip format currently only supports packets with one - // analog channel. See zip_append_analog() in srzip.c auto analog = context->create_analog_packet( vector >{achannel}, (float *)adata, packet_len, @@ -282,14 +272,17 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li } if (lsegment) { - lsegment->get_samples(ldata, start_sample_, start_sample_ + packet_len); + const uint8_t* ldata = + lsegment->get_samples(start_sample_, start_sample_ + packet_len); const size_t length = packet_len * lunit_size; - auto logic = context->create_logic_packet(ldata, length, lunit_size); + auto logic = context->create_logic_packet((void*)ldata, length, lunit_size); const string ldata_str = output_->receive(logic); if (output_stream_.is_open()) output_stream_ << ldata_str; + + delete[] ldata; } } catch (Error error) { error_ = tr("Error while saving: ") + error.what(); @@ -304,12 +297,11 @@ void StoreSession::store_proc(vector< shared_ptr > achannel_li // Zeroing the progress variables indicates completion units_stored_ = unit_count_ = 0; + store_successful(); progress_updated(); output_.reset(); output_stream_.close(); - - delete[] ldata; } } // pv