]> sigrok.org Git - pulseview.git/blame - pv/data/segment.cpp
DecodeSignal: Re-create SRD session when changes are pending
[pulseview.git] / pv / data / segment.cpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5 3 *
26a883ed 4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
28a4c9c5
JH
5 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
efdec55a 18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
28a4c9c5
JH
19 */
20
f3d66e52 21#include "segment.hpp"
28a4c9c5 22
eb8269e3
UH
23#include <cassert>
24#include <cstdlib>
25#include <cstring>
26a883ed 26
3b68d03d 27using std::lock_guard;
6f925ba9 28using std::min;
3b68d03d 29using std::recursive_mutex;
7d29656f 30
51e77110 31namespace pv {
1b1ec774 32namespace data {
51e77110 33
51d3950f 34const uint64_t Segment::MaxChunkSize = 10 * 1024 * 1024; /* 10MiB */
dd3f9a41 35
85a70280
SA
36Segment::Segment(uint32_t segment_id, uint64_t samplerate, unsigned int unit_size) :
37 segment_id_(segment_id),
8dbbc7f0 38 sample_count_(0),
7f4038d6 39 start_time_(0),
ff008de6 40 samplerate_(samplerate),
c70e3464
SA
41 unit_size_(unit_size),
42 iterator_count_(0),
558ad6ce
SA
43 mem_optimization_requested_(false),
44 is_complete_(false)
f556bc6a 45{
8dbbc7f0
JH
46 lock_guard<recursive_mutex> lock(mutex_);
47 assert(unit_size_ > 0);
26a883ed
SA
48
49 // Determine the number of samples we can fit in one chunk
50 // without exceeding MaxChunkSize
6f925ba9 51 chunk_size_ = min(MaxChunkSize, (MaxChunkSize / unit_size_) * unit_size_);
26a883ed
SA
52
53 // Create the initial chunk
54 current_chunk_ = new uint8_t[chunk_size_];
55 data_chunks_.push_back(current_chunk_);
56 used_samples_ = 0;
57 unused_samples_ = chunk_size_ / unit_size_;
f556bc6a
JH
58}
59
f3d66e52 60Segment::~Segment()
28a4c9c5 61{
8dbbc7f0 62 lock_guard<recursive_mutex> lock(mutex_);
26a883ed
SA
63
64 for (uint8_t* chunk : data_chunks_)
65 delete[] chunk;
28a4c9c5
JH
66}
67
f3d66e52 68uint64_t Segment::get_sample_count() const
28a4c9c5 69{
8dbbc7f0
JH
70 lock_guard<recursive_mutex> lock(mutex_);
71 return sample_count_;
f556bc6a
JH
72}
73
60d9b99a 74const pv::util::Timestamp& Segment::start_time() const
7f4038d6
JH
75{
76 return start_time_;
77}
78
f3d66e52 79double Segment::samplerate() const
ff008de6
JH
80{
81 return samplerate_;
82}
83
f3d66e52 84void Segment::set_samplerate(double samplerate)
ff008de6
JH
85{
86 samplerate_ = samplerate;
87}
88
f3d66e52 89unsigned int Segment::unit_size() const
6fd14a32 90{
8dbbc7f0 91 return unit_size_;
6fd14a32
JH
92}
93
85a70280
SA
94uint32_t Segment::segment_id() const
95{
96 return segment_id_;
97}
98
558ad6ce
SA
99void Segment::set_complete()
100{
101 is_complete_ = true;
102}
103
104bool Segment::is_complete() const
105{
106 return is_complete_;
107}
108
5e6967cb
SA
109void Segment::free_unused_memory()
110{
111 lock_guard<recursive_mutex> lock(mutex_);
112
c70e3464
SA
113 // Do not mess with the data chunks if we have iterators pointing at them
114 if (iterator_count_ > 0) {
115 mem_optimization_requested_ = true;
116 return;
117 }
118
5e6967cb
SA
119 // No more data will come in, so re-create the last chunk accordingly
120 uint8_t* resized_chunk = new uint8_t[used_samples_ * unit_size_];
121 memcpy(resized_chunk, current_chunk_, used_samples_ * unit_size_);
122
123 delete[] current_chunk_;
124 current_chunk_ = resized_chunk;
125
126 data_chunks_.pop_back();
127 data_chunks_.push_back(resized_chunk);
128}
129
26a883ed
SA
130void Segment::append_single_sample(void *data)
131{
132 lock_guard<recursive_mutex> lock(mutex_);
133
134 // There will always be space for at least one sample in
135 // the current chunk, so we do not need to test for space
136
c063290a 137 memcpy(current_chunk_ + (used_samples_ * unit_size_), data, unit_size_);
26a883ed
SA
138 used_samples_++;
139 unused_samples_--;
140
141 if (unused_samples_ == 0) {
142 current_chunk_ = new uint8_t[chunk_size_];
143 data_chunks_.push_back(current_chunk_);
144 used_samples_ = 0;
145 unused_samples_ = chunk_size_ / unit_size_;
146 }
147
148 sample_count_++;
149}
150
151void Segment::append_samples(void* data, uint64_t samples)
27d7c96b 152{
8dbbc7f0 153 lock_guard<recursive_mutex> lock(mutex_);
27d7c96b 154
257211b8
SA
155 const uint8_t* data_byte_ptr = (uint8_t*)data;
156 uint64_t remaining_samples = samples;
157 uint64_t data_offset = 0;
158
159 do {
160 uint64_t copy_count = 0;
161
162 if (remaining_samples <= unused_samples_) {
163 // All samples fit into the current chunk
164 copy_count = remaining_samples;
165 } else {
166 // Only a part of the samples fit, fill up current chunk
167 copy_count = unused_samples_;
168 }
169
170 const uint8_t* dest = &(current_chunk_[used_samples_ * unit_size_]);
171 const uint8_t* src = &(data_byte_ptr[data_offset]);
172 memcpy((void*)dest, (void*)src, (copy_count * unit_size_));
173
174 used_samples_ += copy_count;
175 unused_samples_ -= copy_count;
176 remaining_samples -= copy_count;
177 data_offset += (copy_count * unit_size_);
178
179 if (unused_samples_ == 0) {
180 // If we're out of memory, this will throw std::bad_alloc
181 current_chunk_ = new uint8_t[chunk_size_];
182 data_chunks_.push_back(current_chunk_);
183 used_samples_ = 0;
184 unused_samples_ = chunk_size_ / unit_size_;
185 }
186 } while (remaining_samples > 0);
26a883ed
SA
187
188 sample_count_ += samples;
27d7c96b
DK
189}
190
b82243f7
SA
191void Segment::get_raw_samples(uint64_t start, uint64_t count,
192 uint8_t* dest) const
27d7c96b 193{
26a883ed
SA
194 assert(start < sample_count_);
195 assert(start + count <= sample_count_);
196 assert(count > 0);
b82243f7 197 assert(dest != nullptr);
26a883ed 198
8dbbc7f0 199 lock_guard<recursive_mutex> lock(mutex_);
26a883ed 200
26a883ed
SA
201 uint8_t* dest_ptr = dest;
202
203 uint64_t chunk_num = (start * unit_size_) / chunk_size_;
204 uint64_t chunk_offs = (start * unit_size_) % chunk_size_;
205
206 while (count > 0) {
207 const uint8_t* chunk = data_chunks_[chunk_num];
208
6f925ba9 209 uint64_t copy_size = min(count * unit_size_,
26a883ed
SA
210 chunk_size_ - chunk_offs);
211
212 memcpy(dest_ptr, chunk + chunk_offs, copy_size);
213
214 dest_ptr += copy_size;
215 count -= (copy_size / unit_size_);
216
217 chunk_num++;
218 chunk_offs = 0;
219 }
27d7c96b
DK
220}
221
c70e3464 222SegmentRawDataIterator* Segment::begin_raw_sample_iteration(uint64_t start)
26a883ed
SA
223{
224 SegmentRawDataIterator* it = new SegmentRawDataIterator;
225
226 assert(start < sample_count_);
227
c70e3464
SA
228 iterator_count_++;
229
26a883ed
SA
230 it->sample_index = start;
231 it->chunk_num = (start * unit_size_) / chunk_size_;
232 it->chunk_offs = (start * unit_size_) % chunk_size_;
233 it->chunk = data_chunks_[it->chunk_num];
234 it->value = it->chunk + it->chunk_offs;
235
236 return it;
237}
238
c70e3464 239void Segment::continue_raw_sample_iteration(SegmentRawDataIterator* it, uint64_t increase)
f556bc6a 240{
c063290a 241 // Fail gracefully if we are asked to deliver data we don't have
26a883ed 242 if (it->sample_index > sample_count_)
26a883ed 243 return;
c063290a
UH
244
245 it->sample_index += increase;
246 it->chunk_offs += (increase * unit_size_);
26a883ed
SA
247
248 if (it->chunk_offs > (chunk_size_ - 1)) {
249 it->chunk_num++;
250 it->chunk_offs -= chunk_size_;
251 it->chunk = data_chunks_[it->chunk_num];
252 }
27d7c96b 253
26a883ed
SA
254 it->value = it->chunk + it->chunk_offs;
255}
27d7c96b 256
c70e3464 257void Segment::end_raw_sample_iteration(SegmentRawDataIterator* it)
26a883ed
SA
258{
259 delete it;
c70e3464
SA
260
261 iterator_count_--;
262
263 if ((iterator_count_ == 0) && mem_optimization_requested_) {
264 mem_optimization_requested_ = false;
265 free_unused_memory();
266 }
28a4c9c5 267}
51e77110 268
1b1ec774 269} // namespace data
51e77110 270} // namespace pv