]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/logicsnapshot.h
Drop a few more unneeded 'extern "C"'.
[pulseview.git] / pv / data / logicsnapshot.h
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
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
21#ifndef PULSEVIEW_PV_DATA_LOGICSNAPSHOT_H
22#define PULSEVIEW_PV_DATA_LOGICSNAPSHOT_H
23
24#include "snapshot.h"
25
26#include <utility>
27#include <vector>
28
29namespace LogicSnapshotTest {
30 class Pow2;
31 class Basic;
32 class LargeData;
33 class Pulses;
34 class LongPulses;
35}
36
37namespace pv {
38namespace data {
39
40class LogicSnapshot : public Snapshot
41{
42private:
43 struct MipMapLevel
44 {
45 uint64_t length;
46 uint64_t data_length;
47 void *data;
48 };
49
50private:
51 static const unsigned int ScaleStepCount = 10;
52 static const int MipMapScalePower;
53 static const int MipMapScaleFactor;
54 static const float LogMipMapScaleFactor;
55 static const uint64_t MipMapDataUnit;
56
57public:
58 typedef std::pair<int64_t, bool> EdgePair;
59
60public:
61 LogicSnapshot(const sr_datafeed_logic &logic);
62
63 virtual ~LogicSnapshot();
64
65 void append_payload(const sr_datafeed_logic &logic);
66
67private:
68 void reallocate_mip_map(MipMapLevel &m);
69
70 void append_payload_to_mipmap();
71
72 uint64_t get_sample(uint64_t index) const;
73
74public:
75 /**
76 * Parses a logic data snapshot to generate a list of transitions
77 * in a time interval to a given level of detail.
78 * @param[out] edges The vector to place the edges into.
79 * @param[in] start The start sample index.
80 * @param[in] end The end sample index.
81 * @param[in] min_length The minimum number of samples that
82 * can be resolved at this level of detail.
83 * @param[in] sig_index The index of the signal.
84 **/
85 void get_subsampled_edges(std::vector<EdgePair> &edges,
86 uint64_t start, uint64_t end,
87 float min_length, int sig_index);
88
89private:
90 uint64_t get_subsample(int level, uint64_t offset) const;
91
92 static uint64_t pow2_ceil(uint64_t x, unsigned int power);
93
94private:
95 struct MipMapLevel _mip_map[ScaleStepCount];
96 uint64_t _last_append_sample;
97
98 friend class LogicSnapshotTest::Pow2;
99 friend class LogicSnapshotTest::Basic;
100 friend class LogicSnapshotTest::LargeData;
101 friend class LogicSnapshotTest::Pulses;
102 friend class LogicSnapshotTest::LongPulses;
103};
104
105} // namespace data
106} // namespace pv
107
108#endif // PULSEVIEW_PV_DATA_LOGICSNAPSHOT_H