]> sigrok.org Git - pulseview.git/blame - pv/data/analogsegment.hpp
Prefer std::make_shared().
[pulseview.git] / pv / data / analogsegment.hpp
CommitLineData
aba1dd16
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
a38268f0
SA
20#ifndef PULSEVIEW_PV_DATA_ANALOGSEGMENT_HPP
21#define PULSEVIEW_PV_DATA_ANALOGSEGMENT_HPP
aba1dd16 22
f3d66e52 23#include "segment.hpp"
aba1dd16
JH
24
25#include <utility>
26#include <vector>
27
7db61e77
SA
28#include <QObject>
29
f3d66e52 30namespace AnalogSegmentTest {
9e587572 31struct Basic;
340bc0a4
JH
32}
33
aba1dd16 34namespace pv {
1b1ec774 35namespace data {
aba1dd16 36
7db61e77
SA
37class Analog;
38
26a883ed
SA
39typedef struct {
40 uint64_t sample_index, chunk_num, chunk_offs;
41 uint8_t* chunk;
42 float* value;
43} SegmentAnalogDataIterator;
44
7db61e77 45class AnalogSegment : public QObject, public Segment
aba1dd16 46{
7db61e77
SA
47 Q_OBJECT
48
9320072d 49public:
fda5b6e0
JH
50 struct EnvelopeSample
51 {
52 float min;
53 float max;
54 };
55
9320072d
JH
56 struct EnvelopeSection
57 {
58 uint64_t start;
59 unsigned int scale;
60 uint64_t length;
61 EnvelopeSample *samples;
62 };
63
64private:
fda5b6e0
JH
65 struct Envelope
66 {
67 uint64_t length;
68 uint64_t data_length;
69 EnvelopeSample *samples;
70 };
71
72private:
73 static const unsigned int ScaleStepCount = 10;
74 static const int EnvelopeScalePower;
75 static const int EnvelopeScaleFactor;
76 static const float LogEnvelopeScaleFactor;
77 static const uint64_t EnvelopeDataUnit;
78
aba1dd16 79public:
7db61e77 80 AnalogSegment(Analog& owner, uint64_t samplerate);
aba1dd16 81
f3d66e52 82 virtual ~AnalogSegment();
fda5b6e0 83
bb2cdfff
JH
84 void append_interleaved_samples(const float *data,
85 size_t sample_count, size_t stride);
a8acb46e 86
d3758367
JH
87 const float* get_samples(int64_t start_sample,
88 int64_t end_sample) const;
aba1dd16 89
73e377fe
SA
90 const std::pair<float, float> get_min_max() const;
91
c70e3464
SA
92 SegmentAnalogDataIterator* begin_sample_iteration(uint64_t start);
93 void continue_sample_iteration(SegmentAnalogDataIterator* it, uint64_t increase);
94 void end_sample_iteration(SegmentAnalogDataIterator* it);
26a883ed 95
9320072d
JH
96 void get_envelope_section(EnvelopeSection &s,
97 uint64_t start, uint64_t end, float min_length) const;
98
fda5b6e0 99private:
520362f8 100 void reallocate_envelope(Envelope &e);
fda5b6e0
JH
101
102 void append_payload_to_envelope_levels();
103
104private:
7db61e77
SA
105 Analog& owner_;
106
8dbbc7f0 107 struct Envelope envelope_levels_[ScaleStepCount];
340bc0a4 108
73e377fe
SA
109 float min_value_, max_value_;
110
f3d66e52 111 friend struct AnalogSegmentTest::Basic;
340bc0a4
JH
112};
113
1b1ec774 114} // namespace data
aba1dd16
JH
115} // namespace pv
116
a38268f0 117#endif // PULSEVIEW_PV_DATA_ANALOGSEGMENT_HPP