]> sigrok.org Git - pulseview.git/blame - pv/storesession.cpp
win32: Re-fix the Windows build (namespace pollution via windows.h).
[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>
2acdb232 35#include <pv/data/logic.hpp>
f3d66e52 36#include <pv/data/logicsegment.hpp>
da30ecb7 37#include <pv/devices/device.hpp>
2acdb232 38#include <pv/view/signal.hpp>
0fbda3c2 39
fe3a1c21 40#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 41
aca64cac
JH
42using boost::shared_lock;
43using boost::shared_mutex;
44
0fbda3c2 45using std::deque;
f9abf97e 46using std::dynamic_pointer_cast;
c1035a14 47using std::ios_base;
3b68d03d 48using std::lock_guard;
0fbda3c2 49using std::make_pair;
c1035a14 50using std::map;
0fbda3c2 51using std::min;
3b68d03d 52using std::mutex;
0fbda3c2
JH
53using std::pair;
54using std::set;
f9abf97e 55using std::shared_ptr;
0fbda3c2 56using std::string;
3b68d03d 57using std::thread;
78b0af3e 58using std::unordered_set;
0fbda3c2
JH
59using std::vector;
60
e93f5538
JH
61using Glib::VariantBase;
62
7223eb62 63using sigrok::ConfigKey;
e8d00928 64using sigrok::Error;
4764bc4d 65using sigrok::OutputFormat;
542f1e6c 66using sigrok::OutputFlag;
e8d00928 67
0fbda3c2
JH
68namespace pv {
69
70const size_t StoreSession::BlockSize = 1024 * 1024;
71
72StoreSession::StoreSession(const std::string &file_name,
e93f5538
JH
73 const shared_ptr<OutputFormat> &output_format,
74 const map<string, VariantBase> &options, const Session &session) :
8dbbc7f0 75 file_name_(file_name),
4764bc4d 76 output_format_(output_format),
e93f5538 77 options_(options),
8dbbc7f0
JH
78 session_(session),
79 interrupt_(false),
80 units_stored_(0),
81 unit_count_(0)
0fbda3c2
JH
82{
83}
84
85StoreSession::~StoreSession()
86{
87 wait();
88}
89
e40b2f29 90pair<int, int> StoreSession::progress() const
0fbda3c2 91{
8dbbc7f0 92 return make_pair(units_stored_.load(), unit_count_.load());
0fbda3c2
JH
93}
94
95const QString& StoreSession::error() const
96{
8dbbc7f0
JH
97 lock_guard<mutex> lock(mutex_);
98 return error_;
0fbda3c2
JH
99}
100
101bool StoreSession::start()
102{
bf914698 103 const unordered_set< shared_ptr<view::Signal> > sigs(session_.signals());
de6e819c
SA
104
105 // Add enabled channels to the data set
106 set< shared_ptr<data::SignalData> > data_set;
107
108 for (shared_ptr<view::Signal> signal : sigs)
109 if (signal->enabled())
110 data_set.insert(signal->data());
0fbda3c2
JH
111
112 // Check we have logic data
113 if (data_set.empty() || sigs.empty()) {
8dbbc7f0 114 error_ = tr("No data to save.");
0fbda3c2
JH
115 return false;
116 }
117
118 if (data_set.size() > 1) {
8dbbc7f0 119 error_ = tr("PulseView currently only has support for "
0fbda3c2
JH
120 "storing a single data stream.");
121 return false;
122 }
123
124 // Get the logic data
0fbda3c2
JH
125 shared_ptr<data::Logic> data;
126 if (!(data = dynamic_pointer_cast<data::Logic>(*data_set.begin()))) {
8dbbc7f0 127 error_ = tr("PulseView currently only has support for "
de6e819c 128 "storing logic data.");
0fbda3c2
JH
129 return false;
130 }
131
f3d66e52
JH
132 // Get the segment
133 const deque< shared_ptr<data::LogicSegment> > &segments =
134 data->logic_segments();
0fbda3c2 135
f3d66e52
JH
136 if (segments.empty()) {
137 error_ = tr("No segments to save.");
0fbda3c2
JH
138 return false;
139 }
140
f3d66e52
JH
141 const shared_ptr<data::LogicSegment> segment(segments.front());
142 assert(segment);
0fbda3c2 143
0fbda3c2 144 // Begin storing
e8d00928 145 try {
adb240c0 146 const auto context = session_.device_manager().context();
da30ecb7 147 auto device = session_.device()->device();
c1035a14 148
e93f5538 149 map<string, Glib::VariantBase> options = options_;
c1035a14 150
542f1e6c
SA
151 if (!output_format_->test_flag(OutputFlag::INTERNAL_IO_HANDLING))
152 output_stream_.open(file_name_, ios_base::binary |
153 ios_base::trunc | ios_base::out);
ad83f8fa
SA
154
155 output_ = output_format_->create_output(file_name_, device, options);
7223eb62 156 auto meta = context->create_meta_packet(
ff008de6 157 {{ConfigKey::SAMPLERATE, Glib::Variant<guint64>::create(
f3d66e52 158 segment->samplerate())}});
8dbbc7f0 159 output_->receive(meta);
e8d00928 160 } catch (Error error) {
8dbbc7f0 161 error_ = tr("Error while saving.");
0fbda3c2
JH
162 return false;
163 }
164
f3d66e52 165 thread_ = std::thread(&StoreSession::store_proc, this, segment);
0fbda3c2
JH
166 return true;
167}
168
169void StoreSession::wait()
170{
8dbbc7f0
JH
171 if (thread_.joinable())
172 thread_.join();
0fbda3c2
JH
173}
174
175void StoreSession::cancel()
176{
8dbbc7f0 177 interrupt_ = true;
0fbda3c2
JH
178}
179
f3d66e52 180void StoreSession::store_proc(shared_ptr<data::LogicSegment> segment)
0fbda3c2 181{
f3d66e52 182 assert(segment);
0fbda3c2 183
e40b2f29
MC
184 uint64_t start_sample = 0, sample_count;
185 unsigned progress_scale = 0;
0fbda3c2
JH
186
187 /// TODO: Wrap this in a std::unique_ptr when we transition to C++11
188 uint8_t *const data = new uint8_t[BlockSize];
189 assert(data);
190
f3d66e52 191 const int unit_size = segment->unit_size();
0fbda3c2
JH
192 assert(unit_size != 0);
193
f3d66e52 194 sample_count = segment->get_sample_count();
e40b2f29
MC
195
196 // Qt needs the progress values to fit inside an int. If they would
197 // not, scale the current and max values down until they do.
198 while ((sample_count >> progress_scale) > INT_MAX)
199 progress_scale ++;
200
8dbbc7f0 201 unit_count_ = sample_count >> progress_scale;
0fbda3c2
JH
202
203 const unsigned int samples_per_block = BlockSize / unit_size;
204
8dbbc7f0 205 while (!interrupt_ && start_sample < sample_count)
0fbda3c2
JH
206 {
207 progress_updated();
208
209 const uint64_t end_sample = min(
e40b2f29 210 start_sample + samples_per_block, sample_count);
f3d66e52 211 segment->get_samples(data, start_sample, end_sample);
0fbda3c2 212
a42efb9d 213 size_t length = (end_sample - start_sample) * unit_size;
e8d00928
ML
214
215 try {
adb240c0 216 const auto context = session_.device_manager().context();
7223eb62 217 auto logic = context->create_logic_packet(data, length, unit_size);
c1035a14
JH
218 const string data = output_->receive(logic);
219 if (output_stream_.is_open())
220 output_stream_ << data;
e8d00928 221 } catch (Error error) {
8dbbc7f0 222 error_ = tr("Error while saving.");
0fbda3c2
JH
223 break;
224 }
225
226 start_sample = end_sample;
8dbbc7f0 227 units_stored_ = start_sample >> progress_scale;
0fbda3c2
JH
228 }
229
e0e560a5
JH
230 // Zeroing the progress variables indicates completion
231 units_stored_ = unit_count_ = 0;
232
0fbda3c2
JH
233 progress_updated();
234
8dbbc7f0 235 output_.reset();
c1035a14 236 output_stream_.close();
7223eb62 237
0fbda3c2
JH
238 delete[] data;
239}
240
241} // pv