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