]> sigrok.org Git - pulseview.git/blame - pv/storesession.cpp
Fix #705 by preventing the use of invalid instances
[pulseview.git] / pv / storesession.cpp
CommitLineData
0fbda3c2
JH
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
d2344534
JH
21#include <cassert>
22
35750e4d
UH
23#ifdef _WIN32
24// Windows: Avoid boost/thread namespace pollution (which includes windows.h).
25#define NOGDI
26#define NORESOURCE
27#endif
e71eb81c
JH
28#include <boost/thread/locks.hpp>
29#include <boost/thread/shared_mutex.hpp>
30
2acdb232 31#include "storesession.hpp"
0fbda3c2 32
adb240c0 33#include <pv/devicemanager.hpp>
f65cd27b 34#include <pv/session.hpp>
c51ae0b4
SA
35#include <pv/data/analog.hpp>
36#include <pv/data/analogsegment.hpp>
2acdb232 37#include <pv/data/logic.hpp>
f3d66e52 38#include <pv/data/logicsegment.hpp>
da30ecb7 39#include <pv/devices/device.hpp>
2acdb232 40#include <pv/view/signal.hpp>
0fbda3c2 41
fe3a1c21 42#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 43
aca64cac
JH
44using boost::shared_lock;
45using boost::shared_mutex;
46
0fbda3c2 47using std::deque;
f9abf97e 48using std::dynamic_pointer_cast;
c1035a14 49using std::ios_base;
3b68d03d 50using std::lock_guard;
0fbda3c2 51using std::make_pair;
c1035a14 52using std::map;
0fbda3c2 53using std::min;
3b68d03d 54using std::mutex;
0fbda3c2
JH
55using std::pair;
56using std::set;
f9abf97e 57using std::shared_ptr;
0fbda3c2 58using std::string;
3b68d03d 59using std::thread;
78b0af3e 60using std::unordered_set;
0fbda3c2
JH
61using std::vector;
62
e93f5538
JH
63using Glib::VariantBase;
64
7223eb62 65using sigrok::ConfigKey;
e8d00928 66using sigrok::Error;
4764bc4d 67using sigrok::OutputFormat;
542f1e6c 68using sigrok::OutputFlag;
e8d00928 69
0fbda3c2
JH
70namespace pv {
71
72const size_t StoreSession::BlockSize = 1024 * 1024;
73
74StoreSession::StoreSession(const std::string &file_name,
e93f5538 75 const shared_ptr<OutputFormat> &output_format,
d2fc6be9
SA
76 const map<string, VariantBase> &options,
77 const std::pair<uint64_t, uint64_t> sample_range,
78 const Session &session) :
8dbbc7f0 79 file_name_(file_name),
4764bc4d 80 output_format_(output_format),
e93f5538 81 options_(options),
d2fc6be9 82 sample_range_(sample_range),
8dbbc7f0
JH
83 session_(session),
84 interrupt_(false),
85 units_stored_(0),
86 unit_count_(0)
0fbda3c2
JH
87{
88}
89
90StoreSession::~StoreSession()
91{
92 wait();
93}
94
e40b2f29 95pair<int, int> StoreSession::progress() const
0fbda3c2 96{
8dbbc7f0 97 return make_pair(units_stored_.load(), unit_count_.load());
0fbda3c2
JH
98}
99
100const QString& StoreSession::error() const
101{
8dbbc7f0
JH
102 lock_guard<mutex> lock(mutex_);
103 return error_;
0fbda3c2
JH
104}
105
106bool StoreSession::start()
107{
bf914698 108 const unordered_set< shared_ptr<view::Signal> > sigs(session_.signals());
de6e819c 109
c51ae0b4
SA
110 shared_ptr<data::Segment> any_segment;
111 shared_ptr<data::LogicSegment> lsegment;
112 vector< shared_ptr<sigrok::Channel> > achannel_list;
113 vector< shared_ptr<data::AnalogSegment> > asegment_list;
de6e819c 114
c51ae0b4
SA
115 for (shared_ptr<view::Signal> signal : sigs) {
116 if (!signal->enabled())
117 continue;
0fbda3c2 118
c51ae0b4 119 shared_ptr<data::SignalData> data = signal->data();
0fbda3c2 120
c51ae0b4
SA
121 if (dynamic_pointer_cast<data::Logic>(data)) {
122 // All logic channels share the same data segments
123 shared_ptr<data::Logic> ldata = dynamic_pointer_cast<data::Logic>(data);
0fbda3c2 124
c51ae0b4
SA
125 const deque< shared_ptr<data::LogicSegment> > &lsegments =
126 ldata->logic_segments();
0fbda3c2 127
c51ae0b4
SA
128 if (lsegments.empty()) {
129 error_ = tr("Can't save logic channel without data.");
130 return false;
131 }
0fbda3c2 132
c51ae0b4
SA
133 lsegment = lsegments.front();
134 any_segment = lsegment;
135 }
136
137 if (dynamic_pointer_cast<data::Analog>(data)) {
138 // Each analog channel has its own segments
139 shared_ptr<data::Analog> adata =
140 dynamic_pointer_cast<data::Analog>(data);
141
142 const deque< shared_ptr<data::AnalogSegment> > &asegments =
143 adata->analog_segments();
144
145 if (asegments.empty()) {
146 error_ = tr("Can't save analog channel without data.");
147 return false;
148 }
149
150 asegment_list.push_back(asegments.front());
151 any_segment = asegments.front();
152
153 achannel_list.push_back(signal->channel());
154 }
0fbda3c2
JH
155 }
156
c51ae0b4
SA
157 if (!any_segment) {
158 error_ = tr("No channels enabled.");
159 return false;
160 }
0fbda3c2 161
d2fc6be9
SA
162 // Check whether the user wants to export a certain sample range
163 if (sample_range_.first == sample_range_.second) {
164 start_sample_ = 0;
c51ae0b4 165 sample_count_ = any_segment->get_sample_count();
d2fc6be9 166 } else {
3e8a7cc6
SA
167 if (sample_range_.first > sample_range_.second) {
168 start_sample_ = sample_range_.second;
169 sample_count_ = sample_range_.first - sample_range_.second;
170 } else {
171 start_sample_ = sample_range_.first;
172 sample_count_ = sample_range_.second - sample_range_.first;
173 }
d2fc6be9
SA
174 }
175
0fbda3c2 176 // Begin storing
e8d00928 177 try {
adb240c0 178 const auto context = session_.device_manager().context();
da30ecb7 179 auto device = session_.device()->device();
c1035a14 180
e93f5538 181 map<string, Glib::VariantBase> options = options_;
c1035a14 182
542f1e6c
SA
183 if (!output_format_->test_flag(OutputFlag::INTERNAL_IO_HANDLING))
184 output_stream_.open(file_name_, ios_base::binary |
185 ios_base::trunc | ios_base::out);
ad83f8fa
SA
186
187 output_ = output_format_->create_output(file_name_, device, options);
7223eb62 188 auto meta = context->create_meta_packet(
ff008de6 189 {{ConfigKey::SAMPLERATE, Glib::Variant<guint64>::create(
c51ae0b4 190 any_segment->samplerate())}});
8dbbc7f0 191 output_->receive(meta);
e8d00928 192 } catch (Error error) {
c51ae0b4 193 error_ = tr("Error while saving: ") + error.what();
0fbda3c2
JH
194 return false;
195 }
196
c51ae0b4
SA
197 thread_ = std::thread(&StoreSession::store_proc, this,
198 achannel_list, asegment_list, lsegment);
0fbda3c2
JH
199 return true;
200}
201
202void StoreSession::wait()
203{
8dbbc7f0
JH
204 if (thread_.joinable())
205 thread_.join();
0fbda3c2
JH
206}
207
208void StoreSession::cancel()
209{
8dbbc7f0 210 interrupt_ = true;
0fbda3c2
JH
211}
212
c51ae0b4
SA
213void StoreSession::store_proc(vector< shared_ptr<sigrok::Channel> > achannel_list,
214 vector< shared_ptr<data::AnalogSegment> > asegment_list,
215 shared_ptr<data::LogicSegment> lsegment)
0fbda3c2 216{
e40b2f29 217 unsigned progress_scale = 0;
0fbda3c2
JH
218
219 /// TODO: Wrap this in a std::unique_ptr when we transition to C++11
c51ae0b4
SA
220 uint8_t *const ldata = new uint8_t[BlockSize];
221 assert(ldata);
222
223 int aunit_size = 0;
224 int lunit_size = 0;
225 unsigned int lsamples_per_block = INT_MAX;
226 unsigned int asamples_per_block = INT_MAX;
227
228 if (!asegment_list.empty()) {
229 // We assume all analog channels use the sample unit size
230 aunit_size = asegment_list.front()->unit_size();
231 asamples_per_block = BlockSize / aunit_size;
232 }
233 if (lsegment) {
234 lunit_size = lsegment->unit_size();
235 lsamples_per_block = BlockSize / lunit_size;
236 }
0fbda3c2 237
3d79f521 238 // Qt needs the progress values to fit inside an int. If they would
e40b2f29 239 // not, scale the current and max values down until they do.
d2fc6be9 240 while ((sample_count_ >> progress_scale) > INT_MAX)
e40b2f29
MC
241 progress_scale ++;
242
d2fc6be9 243 unit_count_ = sample_count_ >> progress_scale;
0fbda3c2 244
c51ae0b4
SA
245 const unsigned int samples_per_block =
246 std::min(asamples_per_block, lsamples_per_block);
0fbda3c2 247
2ad82c2e 248 while (!interrupt_ && sample_count_) {
0fbda3c2
JH
249 progress_updated();
250
d2fc6be9
SA
251 const uint64_t packet_len =
252 std::min((uint64_t)samples_per_block, sample_count_);
253
e8d00928 254 try {
adb240c0 255 const auto context = session_.device_manager().context();
c51ae0b4
SA
256
257 for (unsigned int i = 0; i < achannel_list.size(); i++) {
258 shared_ptr<sigrok::Channel> achannel = achannel_list.at(i);
259 shared_ptr<data::AnalogSegment> asegment = asegment_list.at(i);
260
261 const float *adata =
262 asegment->get_samples(start_sample_, start_sample_ + packet_len);
263
264 // The srzip format currently only supports packets with one
265 // analog channel. See zip_append_analog() in srzip.c
266 auto analog = context->create_analog_packet(
267 vector<shared_ptr<sigrok::Channel> >{achannel},
268 (float *)adata, packet_len,
269 sigrok::Quantity::VOLTAGE, sigrok::Unit::VOLT,
270 vector<const sigrok::QuantityFlag *>());
271 const string adata_str = output_->receive(analog);
272
273 if (output_stream_.is_open())
274 output_stream_ << adata_str;
275
276 delete[] adata;
277 }
278
279 if (lsegment) {
280 lsegment->get_samples(ldata, start_sample_, start_sample_ + packet_len);
281
282 const size_t length = packet_len * lunit_size;
283 auto logic = context->create_logic_packet(ldata, length, lunit_size);
284 const string ldata_str = output_->receive(logic);
285
286 if (output_stream_.is_open())
287 output_stream_ << ldata_str;
288 }
e8d00928 289 } catch (Error error) {
c51ae0b4 290 error_ = tr("Error while saving: ") + error.what();
0fbda3c2
JH
291 break;
292 }
293
d2fc6be9
SA
294 sample_count_ -= packet_len;
295 start_sample_ += packet_len;
296 units_stored_ = unit_count_ - (sample_count_ >> progress_scale);
0fbda3c2
JH
297 }
298
e0e560a5
JH
299 // Zeroing the progress variables indicates completion
300 units_stored_ = unit_count_ = 0;
301
0fbda3c2
JH
302 progress_updated();
303
8dbbc7f0 304 output_.reset();
c1035a14 305 output_stream_.close();
7223eb62 306
c51ae0b4 307 delete[] ldata;
0fbda3c2
JH
308}
309
310} // pv