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