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