]> sigrok.org Git - pulseview.git/blame - pv/data/logicsnapshot.h
Update to new session API.
[pulseview.git] / pv / data / logicsnapshot.h
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
1b1ec774
JH
21#ifndef PULSEVIEW_PV_DATA_LOGICSNAPSHOT_H
22#define PULSEVIEW_PV_DATA_LOGICSNAPSHOT_H
640d091b 23
1b1ec774 24#include "snapshot.h"
28a4c9c5 25
2858b391
JH
26#include <utility>
27#include <vector>
28
1b1ec774 29namespace LogicSnapshotTest {
9e587572
JS
30struct Pow2;
31struct Basic;
32struct LargeData;
33struct Pulses;
34struct LongPulses;
ecda6ca9
JH
35}
36
51e77110 37namespace pv {
1b1ec774 38namespace data {
51e77110 39
1b1ec774 40class LogicSnapshot : public Snapshot
28a4c9c5 41{
4ceab49a
JH
42private:
43 struct MipMapLevel
44 {
45 uint64_t length;
46 uint64_t data_length;
47 void *data;
48 };
49
50private:
60b0c2da 51 static const unsigned int ScaleStepCount = 10;
4ceab49a
JH
52 static const int MipMapScalePower;
53 static const int MipMapScaleFactor;
0b02e057 54 static const float LogMipMapScaleFactor;
4ceab49a
JH
55 static const uint64_t MipMapDataUnit;
56
2858b391
JH
57public:
58 typedef std::pair<int64_t, bool> EdgePair;
59
28a4c9c5 60public:
27d7c96b
DK
61 LogicSnapshot(const sr_datafeed_logic &logic,
62 uint64_t expected_num_samples = 0);
28a4c9c5 63
1b1ec774 64 virtual ~LogicSnapshot();
4ceab49a 65
28a4c9c5 66 void append_payload(const sr_datafeed_logic &logic);
2858b391 67
ed990f11
JH
68 void get_samples(uint8_t *const data,
69 int64_t start_sample, int64_t end_sample) const;
70
4ceab49a 71private:
8cb71705
MC
72 uint64_t unpack_sample(const uint8_t *ptr) const;
73 void pack_sample(uint8_t *ptr, uint64_t value);
74
023887ca 75 void reallocate_mipmap_level(MipMapLevel &m);
4ceab49a
JH
76
77 void append_payload_to_mipmap();
78
2858b391
JH
79 uint64_t get_sample(uint64_t index) const;
80
30fcfd9f 81public:
2858b391
JH
82 /**
83 * Parses a logic data snapshot to generate a list of transitions
84 * in a time interval to a given level of detail.
85 * @param[out] edges The vector to place the edges into.
86 * @param[in] start The start sample index.
87 * @param[in] end The end sample index.
0b02e057 88 * @param[in] min_length The minimum number of samples that
2858b391
JH
89 * can be resolved at this level of detail.
90 * @param[in] sig_index The index of the signal.
91 **/
92 void get_subsampled_edges(std::vector<EdgePair> &edges,
60b0c2da 93 uint64_t start, uint64_t end,
0b02e057
JH
94 float min_length, int sig_index);
95
96private:
b2bcbe51 97 uint64_t get_subsample(int level, uint64_t offset) const;
0b02e057 98
60b0c2da 99 static uint64_t pow2_ceil(uint64_t x, unsigned int power);
4ceab49a
JH
100
101private:
102 struct MipMapLevel _mip_map[ScaleStepCount];
103 uint64_t _last_append_sample;
104
9e587572
JS
105 friend struct LogicSnapshotTest::Pow2;
106 friend struct LogicSnapshotTest::Basic;
107 friend struct LogicSnapshotTest::LargeData;
108 friend struct LogicSnapshotTest::Pulses;
109 friend struct LogicSnapshotTest::LongPulses;
28a4c9c5 110};
51e77110 111
1b1ec774 112} // namespace data
51e77110 113} // namespace pv
640d091b 114
1b1ec774 115#endif // PULSEVIEW_PV_DATA_LOGICSNAPSHOT_H