]> sigrok.org Git - pulseview.git/blob - pv/data/logicsegment.hpp
Fix random clazy warnings
[pulseview.git] / pv / data / logicsegment.hpp
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 <utility>
26 #include <vector>
27
28 #include <QObject>
29
30 using std::pair;
31 using std::shared_ptr;
32 using std::vector;
33
34 namespace sigrok {
35         class Logic;
36 }
37
38 namespace LogicSegmentTest {
39 struct Pow2;
40 struct Basic;
41 struct LargeData;
42 struct Pulses;
43 struct LongPulses;
44 }
45
46 namespace pv {
47 namespace data {
48
49 class Logic;
50
51 class LogicSegment : public Segment
52 {
53         Q_OBJECT
54
55 public:
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
64 private:
65         struct MipMapLevel
66         {
67                 uint64_t length;
68                 uint64_t data_length;
69                 void *data;
70         };
71
72 public:
73         LogicSegment(pv::data::Logic& owner, uint32_t segment_id,
74                 unsigned int unit_size, uint64_t samplerate);
75
76         virtual ~LogicSegment();
77
78         void append_payload(shared_ptr<sigrok::Logic> logic);
79         void append_payload(void *data, uint64_t data_size);
80
81         void get_samples(int64_t start_sample, int64_t end_sample, uint8_t* dest) const;
82
83         /**
84          * Parses a logic data segment to generate a list of transitions
85          * in a time interval to a given level of detail.
86          * @param[out] edges The vector to place the edges into.
87          * @param[in] start The start sample index.
88          * @param[in] end The end sample index.
89          * @param[in] min_length The minimum number of samples that
90          * can be resolved at this level of detail.
91          * @param[in] sig_index The index of the signal.
92          */
93         void get_subsampled_edges(vector<EdgePair> &edges,
94                 uint64_t start, uint64_t end,
95                 float min_length, int sig_index, bool first_change_only = false);
96
97         void get_surrounding_edges(vector<EdgePair> &dest,
98                 uint64_t origin_sample, float min_length, int sig_index);
99
100 private:
101         uint64_t unpack_sample(const uint8_t *ptr) const;
102         void pack_sample(uint8_t *ptr, uint64_t value);
103
104         void reallocate_mipmap_level(MipMapLevel &m);
105
106         void append_payload_to_mipmap();
107
108         uint64_t get_unpacked_sample(uint64_t index) const;
109
110         template <class T> void downsampleTmain(const T*&in, T &acc, T &prev);
111         template <class T> void downsampleT(const uint8_t *in, uint8_t *&out, uint64_t len);
112         void downsampleGeneric(const uint8_t *in, uint8_t *&out, uint64_t len);
113
114 private:
115         uint64_t get_subsample(int level, uint64_t offset) const;
116
117         static uint64_t pow2_ceil(uint64_t x, unsigned int power);
118
119 private:
120         Logic& owner_;
121
122         struct MipMapLevel mip_map_[ScaleStepCount];
123         uint64_t last_append_sample_;
124         uint64_t last_append_accumulator_;
125         uint64_t last_append_extra_;
126
127         friend struct LogicSegmentTest::Pow2;
128         friend struct LogicSegmentTest::Basic;
129         friend struct LogicSegmentTest::LargeData;
130         friend struct LogicSegmentTest::Pulses;
131         friend struct LogicSegmentTest::LongPulses;
132 };
133
134 } // namespace data
135 } // namespace pv
136
137 #endif // PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP