]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/logicsegment.hpp
Initial support for SRD_OUTPUT_LOGIC
[pulseview.git] / pv / data / logicsegment.hpp
... / ...
CommitLineData
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
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP
21#define PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP
22
23#include "segment.hpp"
24
25#include <vector>
26
27#include <QObject>
28
29using std::enable_shared_from_this;
30using std::pair;
31using std::shared_ptr;
32using std::vector;
33
34namespace sigrok {
35 class Logic;
36}
37
38namespace LogicSegmentTest {
39struct Pow2;
40struct Basic;
41struct LargeData;
42struct Pulses;
43struct LongPulses;
44}
45
46namespace pv {
47namespace data {
48
49class Logic;
50
51class LogicSegment : public Segment, public enable_shared_from_this<Segment>
52{
53 Q_OBJECT
54
55public:
56 typedef pair<int64_t, bool> EdgePair;
57
58 static const unsigned int ScaleStepCount = 10;
59 static const int MipMapScalePower;
60 static const int MipMapScaleFactor;
61 static const float LogMipMapScaleFactor;
62 static const uint64_t MipMapDataUnit;
63
64private:
65 struct MipMapLevel
66 {
67 uint64_t length;
68 uint64_t data_length;
69 void *data;
70 };
71
72public:
73 LogicSegment(pv::data::Logic& owner, uint32_t segment_id,
74 unsigned int unit_size, uint64_t samplerate);
75
76 virtual ~LogicSegment();
77
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
86 void append_payload(shared_ptr<sigrok::Logic> logic);
87 void append_payload(void *data, uint64_t data_size);
88
89 /**
90 * Appends sample data for a single channel where each byte
91 * represents one sample - if it's 0 the state is low, if 1 high.
92 * Other values are not permitted.
93 * Assumes that all channels are having samples added and in the
94 * order of 0..n, not n..0.
95 * Also assumes the the number of samples added for each channel
96 * is constant for every invokation for 0..n. The number of samples
97 * hence may only change when index is 0.
98 */
99 void append_subsignal_payload(unsigned int index, void *data, uint64_t data_size);
100
101 void get_samples(int64_t start_sample, int64_t end_sample, uint8_t* dest) const;
102
103 /**
104 * Parses a logic data segment to generate a list of transitions
105 * in a time interval to a given level of detail.
106 * @param[out] edges The vector to place the edges into.
107 * @param[in] start The start sample index.
108 * @param[in] end The end sample index.
109 * @param[in] min_length The minimum number of samples that
110 * can be resolved at this level of detail.
111 * @param[in] sig_index The index of the signal.
112 */
113 void get_subsampled_edges(vector<EdgePair> &edges,
114 uint64_t start, uint64_t end,
115 float min_length, int sig_index, bool first_change_only = false);
116
117 void get_surrounding_edges(vector<EdgePair> &dest,
118 uint64_t origin_sample, float min_length, int sig_index);
119
120private:
121 uint64_t unpack_sample(const uint8_t *ptr) const;
122 void pack_sample(uint8_t *ptr, uint64_t value);
123
124 void reallocate_mipmap_level(MipMapLevel &m);
125
126 void append_payload_to_mipmap();
127
128 uint64_t get_unpacked_sample(uint64_t index) const;
129
130 template <class T> void downsampleTmain(const T*&in, T &acc, T &prev);
131 template <class T> void downsampleT(const uint8_t *in, uint8_t *&out, uint64_t len);
132 void downsampleGeneric(const uint8_t *in, uint8_t *&out, uint64_t len);
133
134private:
135 uint64_t get_subsample(int level, uint64_t offset) const;
136
137 static uint64_t pow2_ceil(uint64_t x, unsigned int power);
138
139private:
140 Logic& owner_;
141
142 struct MipMapLevel mip_map_[ScaleStepCount];
143 uint64_t last_append_sample_;
144 uint64_t last_append_accumulator_;
145 uint64_t last_append_extra_;
146
147 friend struct LogicSegmentTest::Pow2;
148 friend struct LogicSegmentTest::Basic;
149 friend struct LogicSegmentTest::LargeData;
150 friend struct LogicSegmentTest::Pulses;
151 friend struct LogicSegmentTest::LongPulses;
152};
153
154} // namespace data
155} // namespace pv
156
157#endif // PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP