]> sigrok.org Git - pulseview.git/blame - pv/data/logicsegment.hpp
Unify get_samples() semantics for AnalogSegment and LogicSegment
[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
038a1427 71 const uint8_t* get_samples(int64_t start_sample, int64_t end_sample) const;
ed990f11 72
4ceab49a 73private:
8cb71705
MC
74 uint64_t unpack_sample(const uint8_t *ptr) const;
75 void pack_sample(uint8_t *ptr, uint64_t value);
76
023887ca 77 void reallocate_mipmap_level(MipMapLevel &m);
4ceab49a
JH
78
79 void append_payload_to_mipmap();
80
2858b391
JH
81 uint64_t get_sample(uint64_t index) const;
82
30fcfd9f 83public:
2858b391 84 /**
f3d66e52 85 * Parses a logic data segment to generate a list of transitions
2858b391
JH
86 * in a time interval to a given level of detail.
87 * @param[out] edges The vector to place the edges into.
88 * @param[in] start The start sample index.
89 * @param[in] end The end sample index.
0b02e057 90 * @param[in] min_length The minimum number of samples that
2858b391
JH
91 * can be resolved at this level of detail.
92 * @param[in] sig_index The index of the signal.
223d0c37 93 */
2858b391 94 void get_subsampled_edges(std::vector<EdgePair> &edges,
60b0c2da 95 uint64_t start, uint64_t end,
0b02e057
JH
96 float min_length, int sig_index);
97
98private:
b2bcbe51 99 uint64_t get_subsample(int level, uint64_t offset) const;
0b02e057 100
60b0c2da 101 static uint64_t pow2_ceil(uint64_t x, unsigned int power);
4ceab49a
JH
102
103private:
8dbbc7f0
JH
104 struct MipMapLevel mip_map_[ScaleStepCount];
105 uint64_t last_append_sample_;
4ceab49a 106
f3d66e52
JH
107 friend struct LogicSegmentTest::Pow2;
108 friend struct LogicSegmentTest::Basic;
109 friend struct LogicSegmentTest::LargeData;
110 friend struct LogicSegmentTest::Pulses;
111 friend struct LogicSegmentTest::LongPulses;
28a4c9c5 112};
51e77110 113
1b1ec774 114} // namespace data
51e77110 115} // namespace pv
640d091b 116
a38268f0 117#endif // PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP