]> sigrok.org Git - pulseview.git/commitdiff
Reimplement file save using the srzip output module.
authorMartin Ling <redacted>
Wed, 12 Nov 2014 17:29:46 +0000 (17:29 +0000)
committerUwe Hermann <redacted>
Thu, 13 Nov 2014 18:29:00 +0000 (19:29 +0100)
This should fix (part of) bug #451.

pv/storesession.cpp
pv/storesession.h

index d5355cba3bbe03c71aeb2bf27a2bc654f72479bb..741d18a660d73dc628e08eec6a7c151d521cebf6 100644 (file)
@@ -42,6 +42,7 @@ using std::string;
 using std::thread;
 using std::vector;
 
+using sigrok::ConfigKey;
 using sigrok::Error;
 
 namespace pv {
@@ -114,28 +115,23 @@ bool StoreSession::start()
        const shared_ptr<data::LogicSnapshot> snapshot(snapshots.front());
        assert(snapshot);
 
-       // Make a list of channels
-       char **const channels = new char*[sigs.size() + 1];
-       for (size_t i = 0; i < sigs.size(); i++) {
-               shared_ptr<view::Signal> sig(sigs[i]);
-               assert(sig);
-               channels[i] = strdup(sig->get_name().toUtf8().constData());
-       }
-       channels[sigs.size()] = NULL;
-
        // Begin storing
        try {
-               SigSession::_sr_session->begin_save(_file_name);
+               auto context = _session._sr_session->context();
+               auto output_format = context->output_formats()["srzip"];
+               auto device = _session.get_device();
+               _output = output_format->create_output(device,
+                       {{"filename",
+                               Glib::Variant<Glib::ustring>::create(_file_name)}});
+               auto meta = context->create_meta_packet(
+                       {{ConfigKey::SAMPLERATE,
+                               Glib::Variant<guint64>::create(data->samplerate())}});
+               _output->receive(meta);
        } catch (Error error) {
                _error = tr("Error while saving.");
                return false;
        }
 
-       // Delete the channels array
-       for (size_t i = 0; i <= sigs.size(); i++)
-               free(channels[i]);
-       delete[] channels;
-
        _thread = std::thread(&StoreSession::store_proc, this, snapshot);
        return true;
 }
@@ -187,7 +183,9 @@ void StoreSession::store_proc(shared_ptr<data::LogicSnapshot> snapshot)
                size_t length = end_sample - start_sample;
 
                try {
-                       SigSession::_sr_session->append(data, length, unit_size);
+                       auto context = _session._sr_session->context();
+                       auto logic = context->create_logic_packet(data, length, unit_size);
+                       _output->receive(logic);
                } catch (Error error) {
                        _error = tr("Error while saving.");
                        break;
@@ -197,9 +195,10 @@ void StoreSession::store_proc(shared_ptr<data::LogicSnapshot> snapshot)
                _units_stored = start_sample >> progress_scale;
        }
 
-       _unit_count = 0;
        progress_updated();
 
+       _output.reset();
+
        delete[] data;
 }
 
index 83664274b553348ddc459e3a7101762f40a659a5..d365730e5217adc3cb352a30770cc346884d8136 100644 (file)
 
 #include <QObject>
 
+namespace sigrok {
+class Output;
+}
+
 namespace pv {
 
 class SigSession;
@@ -71,6 +75,8 @@ private:
        const std::string _file_name;
        const SigSession &_session;
 
+       std::shared_ptr<sigrok::Output> _output;
+
        std::thread _thread;
 
        std::atomic<bool> _interrupt;