]> sigrok.org Git - pulseview.git/blame - pv/data/segment.hpp
Rework all subthread-based workers to make notifications more robust
[pulseview.git] / pv / data / segment.hpp
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
a38268f0
SA
21#ifndef PULSEVIEW_PV_DATA_SEGMENT_HPP
22#define PULSEVIEW_PV_DATA_SEGMENT_HPP
640d091b 23
60d9b99a
JS
24#include "pv/util.hpp"
25
bee54d9e 26#include <atomic>
3b68d03d 27#include <mutex>
aca9aa83 28#include <thread>
27ff2925 29#include <deque>
7d29656f 30
8c339741
SA
31#include <QObject>
32
bee54d9e 33using std::atomic;
6f925ba9 34using std::recursive_mutex;
27ff2925 35using std::deque;
6f925ba9 36
26a883ed
SA
37namespace SegmentTest {
38struct SmallSize8Single;
39struct MediumSize8Single;
40struct MaxSize8Single;
41struct MediumSize24Single;
42struct MediumSize32Single;
43struct MaxSize32Single;
44struct MediumSize32Multi;
45struct MaxSize32Multi;
207ae8f6 46struct MaxSize32MultiAtOnce;
26a883ed 47struct MaxSize32MultiIterated;
870ea3db 48} // namespace SegmentTest
26a883ed 49
51e77110 50namespace pv {
1b1ec774 51namespace data {
51e77110 52
26a883ed
SA
53typedef struct {
54 uint64_t sample_index, chunk_num, chunk_offs;
55 uint8_t* chunk;
65c92359 56} SegmentDataIterator;
26a883ed 57
8c339741 58class Segment : public QObject
28a4c9c5 59{
8c339741
SA
60 Q_OBJECT
61
26a883ed 62private:
dd3f9a41 63 static const uint64_t MaxChunkSize;
26a883ed 64
28a4c9c5 65public:
85a70280 66 Segment(uint32_t segment_id, uint64_t samplerate, unsigned int unit_size);
f556bc6a 67
f3d66e52 68 virtual ~Segment();
28a4c9c5 69
e7c6e898 70 uint64_t get_sample_count() const;
28a4c9c5 71
60d9b99a 72 const pv::util::Timestamp& start_time() const;
7f4038d6 73
ff008de6
JH
74 double samplerate() const;
75 void set_samplerate(double samplerate);
76
5ad3b48b 77 unsigned int unit_size() const;
6fd14a32 78
85a70280
SA
79 uint32_t segment_id() const;
80
558ad6ce
SA
81 void set_complete();
82 bool is_complete() const;
83
5e6967cb
SA
84 void free_unused_memory();
85
bee54d9e
SA
86Q_SIGNALS:
87 void completed();
88
28a4c9c5 89protected:
26a883ed
SA
90 void append_single_sample(void *data);
91 void append_samples(void *data, uint64_t samples);
27ff2925 92 const uint8_t* get_raw_sample(uint64_t sample_num) const;
b82243f7 93 void get_raw_samples(uint64_t start, uint64_t count, uint8_t *dest) const;
26a883ed 94
65c92359
SA
95 SegmentDataIterator* begin_sample_iteration(uint64_t start);
96 void continue_sample_iteration(SegmentDataIterator* it, uint64_t increase);
97 void end_sample_iteration(SegmentDataIterator* it);
98 uint8_t* get_iterator_value(SegmentDataIterator* it);
50e56db0 99 uint64_t get_iterator_valid_length(SegmentDataIterator* it);
f556bc6a 100
85a70280 101 uint32_t segment_id_;
6f925ba9 102 mutable recursive_mutex mutex_;
27ff2925 103 deque<uint8_t*> data_chunks_;
26a883ed
SA
104 uint8_t* current_chunk_;
105 uint64_t used_samples_, unused_samples_;
bee54d9e 106 atomic<uint64_t> sample_count_;
60d9b99a 107 pv::util::Timestamp start_time_;
ff008de6 108 double samplerate_;
26a883ed 109 uint64_t chunk_size_;
8dbbc7f0 110 unsigned int unit_size_;
c70e3464
SA
111 int iterator_count_;
112 bool mem_optimization_requested_;
558ad6ce 113 bool is_complete_;
26a883ed
SA
114
115 friend struct SegmentTest::SmallSize8Single;
116 friend struct SegmentTest::MediumSize8Single;
117 friend struct SegmentTest::MaxSize8Single;
118 friend struct SegmentTest::MediumSize24Single;
119 friend struct SegmentTest::MediumSize32Single;
120 friend struct SegmentTest::MaxSize32Single;
121 friend struct SegmentTest::MediumSize32Multi;
122 friend struct SegmentTest::MaxSize32Multi;
207ae8f6 123 friend struct SegmentTest::MaxSize32MultiAtOnce;
26a883ed 124 friend struct SegmentTest::MaxSize32MultiIterated;
28a4c9c5 125};
51e77110 126
1b1ec774 127} // namespace data
51e77110 128} // namespace pv
640d091b 129
720f4762
SA
130typedef std::shared_ptr<pv::data::Segment> SharedPtrToSegment;
131
132Q_DECLARE_METATYPE(SharedPtrToSegment);
1f3033cb 133
a38268f0 134#endif // PULSEVIEW_PV_DATA_SEGMENT_HPP