]> sigrok.org Git - pulseview.git/blame - pv/data/analogsegment.hpp
Make sure PD row colors remain constant by adding a row index
[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
6f925ba9
UH
30using std::pair;
31
f3d66e52 32namespace AnalogSegmentTest {
9e587572 33struct Basic;
340bc0a4
JH
34}
35
aba1dd16 36namespace pv {
1b1ec774 37namespace data {
aba1dd16 38
7db61e77
SA
39class Analog;
40
26a883ed
SA
41typedef struct {
42 uint64_t sample_index, chunk_num, chunk_offs;
43 uint8_t* chunk;
44 float* value;
45} SegmentAnalogDataIterator;
46
8c339741 47class AnalogSegment : public Segment
aba1dd16 48{
7db61e77
SA
49 Q_OBJECT
50
9320072d 51public:
fda5b6e0
JH
52 struct EnvelopeSample
53 {
54 float min;
55 float max;
56 };
57
9320072d
JH
58 struct EnvelopeSection
59 {
60 uint64_t start;
61 unsigned int scale;
62 uint64_t length;
63 EnvelopeSample *samples;
64 };
65
66private:
fda5b6e0
JH
67 struct Envelope
68 {
69 uint64_t length;
70 uint64_t data_length;
71 EnvelopeSample *samples;
72 };
73
74private:
75 static const unsigned int ScaleStepCount = 10;
76 static const int EnvelopeScalePower;
77 static const int EnvelopeScaleFactor;
78 static const float LogEnvelopeScaleFactor;
79 static const uint64_t EnvelopeDataUnit;
80
aba1dd16 81public:
85a70280 82 AnalogSegment(Analog& owner, uint32_t segment_id, uint64_t samplerate);
aba1dd16 83
f3d66e52 84 virtual ~AnalogSegment();
fda5b6e0 85
bb2cdfff
JH
86 void append_interleaved_samples(const float *data,
87 size_t sample_count, size_t stride);
a8acb46e 88
b82243f7 89 void get_samples(int64_t start_sample, int64_t end_sample, float* dest) const;
aba1dd16 90
6f925ba9 91 const pair<float, float> get_min_max() const;
73e377fe 92
c70e3464
SA
93 SegmentAnalogDataIterator* begin_sample_iteration(uint64_t start);
94 void continue_sample_iteration(SegmentAnalogDataIterator* it, uint64_t increase);
95 void end_sample_iteration(SegmentAnalogDataIterator* it);
26a883ed 96
9320072d
JH
97 void get_envelope_section(EnvelopeSection &s,
98 uint64_t start, uint64_t end, float min_length) const;
99
fda5b6e0 100private:
520362f8 101 void reallocate_envelope(Envelope &e);
fda5b6e0
JH
102
103 void append_payload_to_envelope_levels();
104
105private:
7db61e77
SA
106 Analog& owner_;
107
8dbbc7f0 108 struct Envelope envelope_levels_[ScaleStepCount];
340bc0a4 109
73e377fe
SA
110 float min_value_, max_value_;
111
f3d66e52 112 friend struct AnalogSegmentTest::Basic;
340bc0a4
JH
113};
114
1b1ec774 115} // namespace data
aba1dd16
JH
116} // namespace pv
117
a38268f0 118#endif // PULSEVIEW_PV_DATA_ANALOGSEGMENT_HPP