]> sigrok.org Git - pulseview.git/blame - pv/data/logicsegment.hpp
Only show sampling points when zoomed in far enough.
[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 <utility>
26#include <vector>
27
7db61e77
SA
28#include <QObject>
29
e8d00928
ML
30namespace sigrok {
31 class Logic;
32}
33
f3d66e52 34namespace LogicSegmentTest {
9e587572
JS
35struct Pow2;
36struct Basic;
37struct LargeData;
38struct Pulses;
39struct LongPulses;
ecda6ca9
JH
40}
41
51e77110 42namespace pv {
1b1ec774 43namespace data {
51e77110 44
7db61e77
SA
45class Logic;
46
26a883ed
SA
47typedef struct {
48 uint64_t sample_index, chunk_num, chunk_offs;
49 uint8_t* chunk;
50 uint8_t* value;
51} SegmentLogicDataIterator;
52
7db61e77 53class LogicSegment : public QObject, public Segment
28a4c9c5 54{
7db61e77
SA
55 Q_OBJECT
56
4ceab49a
JH
57private:
58 struct MipMapLevel
59 {
60 uint64_t length;
61 uint64_t data_length;
62 void *data;
63 };
64
65private:
60b0c2da 66 static const unsigned int ScaleStepCount = 10;
4ceab49a
JH
67 static const int MipMapScalePower;
68 static const int MipMapScaleFactor;
0b02e057 69 static const float LogMipMapScaleFactor;
4ceab49a
JH
70 static const uint64_t MipMapDataUnit;
71
2858b391
JH
72public:
73 typedef std::pair<int64_t, bool> EdgePair;
74
28a4c9c5 75public:
7db61e77 76 LogicSegment(pv::data::Logic& owner, std::shared_ptr<sigrok::Logic> data, uint64_t samplerate);
28a4c9c5 77
f3d66e52 78 virtual ~LogicSegment();
4ceab49a 79
e8d00928 80 void append_payload(std::shared_ptr<sigrok::Logic> logic);
2858b391 81
038a1427 82 const uint8_t* get_samples(int64_t start_sample, int64_t end_sample) const;
ed990f11 83
c70e3464
SA
84 SegmentLogicDataIterator* begin_sample_iteration(uint64_t start);
85 void continue_sample_iteration(SegmentLogicDataIterator* it, uint64_t increase);
86 void end_sample_iteration(SegmentLogicDataIterator* it);
26a883ed 87
4ceab49a 88private:
8cb71705
MC
89 uint64_t unpack_sample(const uint8_t *ptr) const;
90 void pack_sample(uint8_t *ptr, uint64_t value);
91
023887ca 92 void reallocate_mipmap_level(MipMapLevel &m);
4ceab49a
JH
93
94 void append_payload_to_mipmap();
95
26a883ed 96 uint64_t get_unpacked_sample(uint64_t index) const;
2858b391 97
30fcfd9f 98public:
2858b391 99 /**
f3d66e52 100 * Parses a logic data segment to generate a list of transitions
2858b391
JH
101 * in a time interval to a given level of detail.
102 * @param[out] edges The vector to place the edges into.
103 * @param[in] start The start sample index.
104 * @param[in] end The end sample index.
0b02e057 105 * @param[in] min_length The minimum number of samples that
2858b391
JH
106 * can be resolved at this level of detail.
107 * @param[in] sig_index The index of the signal.
223d0c37 108 */
2858b391 109 void get_subsampled_edges(std::vector<EdgePair> &edges,
60b0c2da 110 uint64_t start, uint64_t end,
0b02e057
JH
111 float min_length, int sig_index);
112
113private:
b2bcbe51 114 uint64_t get_subsample(int level, uint64_t offset) const;
0b02e057 115
60b0c2da 116 static uint64_t pow2_ceil(uint64_t x, unsigned int power);
4ceab49a
JH
117
118private:
7db61e77
SA
119 Logic& owner_;
120
8dbbc7f0
JH
121 struct MipMapLevel mip_map_[ScaleStepCount];
122 uint64_t last_append_sample_;
4ceab49a 123
f3d66e52
JH
124 friend struct LogicSegmentTest::Pow2;
125 friend struct LogicSegmentTest::Basic;
126 friend struct LogicSegmentTest::LargeData;
127 friend struct LogicSegmentTest::Pulses;
128 friend struct LogicSegmentTest::LongPulses;
28a4c9c5 129};
51e77110 130
1b1ec774 131} // namespace data
51e77110 132} // namespace pv
640d091b 133
a38268f0 134#endif // PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP