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