]> sigrok.org Git - pulseview.git/blame_incremental - pv/storesession.cpp
StoreSession: Supply filename to the output module directly
[pulseview.git] / pv / storesession.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2014 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <cassert>
22
23#include "storesession.hpp"
24
25#include <pv/devicemanager.hpp>
26#include <pv/session.hpp>
27#include <pv/data/logic.hpp>
28#include <pv/data/logicsegment.hpp>
29#include <pv/devices/device.hpp>
30#include <pv/view/signal.hpp>
31
32#include <libsigrokcxx/libsigrokcxx.hpp>
33
34using boost::shared_lock;
35using boost::shared_mutex;
36
37using std::deque;
38using std::dynamic_pointer_cast;
39using std::ios_base;
40using std::lock_guard;
41using std::make_pair;
42using std::map;
43using std::min;
44using std::mutex;
45using std::pair;
46using std::set;
47using std::shared_ptr;
48using std::string;
49using std::thread;
50using std::unordered_set;
51using std::vector;
52
53using Glib::VariantBase;
54
55using sigrok::ConfigKey;
56using sigrok::Error;
57using sigrok::OutputFormat;
58
59namespace pv {
60
61const size_t StoreSession::BlockSize = 1024 * 1024;
62
63StoreSession::StoreSession(const std::string &file_name,
64 const shared_ptr<OutputFormat> &output_format,
65 const map<string, VariantBase> &options, const Session &session) :
66 file_name_(file_name),
67 output_format_(output_format),
68 options_(options),
69 session_(session),
70 interrupt_(false),
71 units_stored_(0),
72 unit_count_(0)
73{
74}
75
76StoreSession::~StoreSession()
77{
78 wait();
79}
80
81pair<int, int> StoreSession::progress() const
82{
83 return make_pair(units_stored_.load(), unit_count_.load());
84}
85
86const QString& StoreSession::error() const
87{
88 lock_guard<mutex> lock(mutex_);
89 return error_;
90}
91
92bool StoreSession::start()
93{
94 set< shared_ptr<data::SignalData> > data_set =
95 session_.get_data();
96
97 shared_lock<shared_mutex> lock(session_.signals_mutex());
98 const unordered_set< shared_ptr<view::Signal> > &sigs(
99 session_.signals());
100
101 // Check we have logic data
102 if (data_set.empty() || sigs.empty()) {
103 error_ = tr("No data to save.");
104 return false;
105 }
106
107 if (data_set.size() > 1) {
108 error_ = tr("PulseView currently only has support for "
109 "storing a single data stream.");
110 return false;
111 }
112
113 // Get the logic data
114 shared_ptr<data::Logic> data;
115 if (!(data = dynamic_pointer_cast<data::Logic>(*data_set.begin()))) {
116 error_ = tr("PulseView currently only has support for "
117 "storing a logic data.");
118 return false;
119 }
120
121 // Get the segment
122 const deque< shared_ptr<data::LogicSegment> > &segments =
123 data->logic_segments();
124
125 if (segments.empty()) {
126 error_ = tr("No segments to save.");
127 return false;
128 }
129
130 const shared_ptr<data::LogicSegment> segment(segments.front());
131 assert(segment);
132
133 // Begin storing
134 try {
135 const auto context = session_.device_manager().context();
136 auto device = session_.device()->device();
137
138 map<string, Glib::VariantBase> options = options_;
139
140 output_stream_.open(file_name_, ios_base::binary |
141 ios_base::trunc | ios_base::out);
142
143 output_ = output_format_->create_output(file_name_, device, options);
144 auto meta = context->create_meta_packet(
145 {{ConfigKey::SAMPLERATE, Glib::Variant<guint64>::create(
146 segment->samplerate())}});
147 output_->receive(meta);
148 } catch (Error error) {
149 error_ = tr("Error while saving.");
150 return false;
151 }
152
153 thread_ = std::thread(&StoreSession::store_proc, this, segment);
154 return true;
155}
156
157void StoreSession::wait()
158{
159 if (thread_.joinable())
160 thread_.join();
161}
162
163void StoreSession::cancel()
164{
165 interrupt_ = true;
166}
167
168void StoreSession::store_proc(shared_ptr<data::LogicSegment> segment)
169{
170 assert(segment);
171
172 uint64_t start_sample = 0, sample_count;
173 unsigned progress_scale = 0;
174
175 /// TODO: Wrap this in a std::unique_ptr when we transition to C++11
176 uint8_t *const data = new uint8_t[BlockSize];
177 assert(data);
178
179 const int unit_size = segment->unit_size();
180 assert(unit_size != 0);
181
182 sample_count = segment->get_sample_count();
183
184 // Qt needs the progress values to fit inside an int. If they would
185 // not, scale the current and max values down until they do.
186 while ((sample_count >> progress_scale) > INT_MAX)
187 progress_scale ++;
188
189 unit_count_ = sample_count >> progress_scale;
190
191 const unsigned int samples_per_block = BlockSize / unit_size;
192
193 while (!interrupt_ && start_sample < sample_count)
194 {
195 progress_updated();
196
197 const uint64_t end_sample = min(
198 start_sample + samples_per_block, sample_count);
199 segment->get_samples(data, start_sample, end_sample);
200
201 size_t length = end_sample - start_sample;
202
203 try {
204 const auto context = session_.device_manager().context();
205 auto logic = context->create_logic_packet(data, length, unit_size);
206 const string data = output_->receive(logic);
207 if (output_stream_.is_open())
208 output_stream_ << data;
209 } catch (Error error) {
210 error_ = tr("Error while saving.");
211 break;
212 }
213
214 start_sample = end_sample;
215 units_stored_ = start_sample >> progress_scale;
216 }
217
218 // Zeroing the progress variables indicates completion
219 units_stored_ = unit_count_ = 0;
220
221 progress_updated();
222
223 output_.reset();
224 output_stream_.close();
225
226 delete[] data;
227}
228
229} // pv