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