]> sigrok.org Git - pulseview.git/blame - pv/data/logicsegment.hpp
DecodeSignal: Update thread handling to match previous changes
[pulseview.git] / pv / data / logicsegment.hpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
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/>.
28a4c9c5
JH
18 */
19
a38268f0
SA
20#ifndef PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP
21#define PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP
640d091b 22
f3d66e52 23#include "segment.hpp"
28a4c9c5 24
2858b391
JH
25#include <vector>
26
7db61e77
SA
27#include <QObject>
28
1f3033cb 29using std::enable_shared_from_this;
6f925ba9
UH
30using std::pair;
31using std::shared_ptr;
32using std::vector;
33
e8d00928
ML
34namespace sigrok {
35 class Logic;
36}
37
f3d66e52 38namespace LogicSegmentTest {
9e587572
JS
39struct Pow2;
40struct Basic;
41struct LargeData;
42struct Pulses;
43struct LongPulses;
ecda6ca9
JH
44}
45
51e77110 46namespace pv {
1b1ec774 47namespace data {
51e77110 48
7db61e77
SA
49class Logic;
50
1f3033cb 51class LogicSegment : public Segment, public enable_shared_from_this<Segment>
28a4c9c5 52{
7db61e77
SA
53 Q_OBJECT
54
5b35d18c
SA
55public:
56 typedef pair<int64_t, bool> EdgePair;
4ceab49a 57
60b0c2da 58 static const unsigned int ScaleStepCount = 10;
4ceab49a
JH
59 static const int MipMapScalePower;
60 static const int MipMapScaleFactor;
0b02e057 61 static const float LogMipMapScaleFactor;
4ceab49a
JH
62 static const uint64_t MipMapDataUnit;
63
5b35d18c
SA
64private:
65 struct MipMapLevel
66 {
67 uint64_t length;
68 uint64_t data_length;
69 void *data;
70 };
2858b391 71
28a4c9c5 72public:
85a70280
SA
73 LogicSegment(pv::data::Logic& owner, uint32_t segment_id,
74 unsigned int unit_size, uint64_t samplerate);
28a4c9c5 75
f3d66e52 76 virtual ~LogicSegment();
4ceab49a 77
cf1541a1
SA
78 /**
79 * Using enable_shared_from_this prevents the normal use of shared_ptr
80 * instances by users of LogicSegment instances. Instead, shared_ptrs may
81 * only be created by the instance itself.
82 * See https://en.cppreference.com/w/cpp/memory/enable_shared_from_this
83 */
84 shared_ptr<const LogicSegment> get_shared_ptr() const;
85
6f925ba9 86 void append_payload(shared_ptr<sigrok::Logic> logic);
9d22929c 87 void append_payload(void *data, uint64_t data_size);
2858b391 88
b82243f7 89 void get_samples(int64_t start_sample, int64_t end_sample, uint8_t* dest) const;
ed990f11 90
2858b391 91 /**
f3d66e52 92 * Parses a logic data segment to generate a list of transitions
2858b391
JH
93 * in a time interval to a given level of detail.
94 * @param[out] edges The vector to place the edges into.
95 * @param[in] start The start sample index.
96 * @param[in] end The end sample index.
0b02e057 97 * @param[in] min_length The minimum number of samples that
2858b391
JH
98 * can be resolved at this level of detail.
99 * @param[in] sig_index The index of the signal.
223d0c37 100 */
6f925ba9 101 void get_subsampled_edges(vector<EdgePair> &edges,
60b0c2da 102 uint64_t start, uint64_t end,
b4bc9b55
SA
103 float min_length, int sig_index, bool first_change_only = false);
104
105 void get_surrounding_edges(vector<EdgePair> &dest,
106 uint64_t origin_sample, float min_length, int sig_index);
107
108private:
109 uint64_t unpack_sample(const uint8_t *ptr) const;
110 void pack_sample(uint8_t *ptr, uint64_t value);
111
112 void reallocate_mipmap_level(MipMapLevel &m);
113
114 void append_payload_to_mipmap();
115
116 uint64_t get_unpacked_sample(uint64_t index) const;
0b02e057 117
0df28cd5
JB
118 template <class T> void downsampleTmain(const T*&in, T &acc, T &prev);
119 template <class T> void downsampleT(const uint8_t *in, uint8_t *&out, uint64_t len);
120 void downsampleGeneric(const uint8_t *in, uint8_t *&out, uint64_t len);
121
0b02e057 122private:
b2bcbe51 123 uint64_t get_subsample(int level, uint64_t offset) const;
0b02e057 124
60b0c2da 125 static uint64_t pow2_ceil(uint64_t x, unsigned int power);
4ceab49a
JH
126
127private:
7db61e77
SA
128 Logic& owner_;
129
8dbbc7f0
JH
130 struct MipMapLevel mip_map_[ScaleStepCount];
131 uint64_t last_append_sample_;
0df28cd5
JB
132 uint64_t last_append_accumulator_;
133 uint64_t last_append_extra_;
4ceab49a 134
f3d66e52
JH
135 friend struct LogicSegmentTest::Pow2;
136 friend struct LogicSegmentTest::Basic;
137 friend struct LogicSegmentTest::LargeData;
138 friend struct LogicSegmentTest::Pulses;
139 friend struct LogicSegmentTest::LongPulses;
28a4c9c5 140};
51e77110 141
1b1ec774 142} // namespace data
51e77110 143} // namespace pv
640d091b 144
a38268f0 145#endif // PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP