]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decodesignal.hpp
Remove DecodeStack dependency from decode binding wrapper
[pulseview.git] / pv / data / decodesignal.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
21#define PULSEVIEW_PV_DATA_DECODESIGNAL_HPP
22
23#include <unordered_set>
24#include <vector>
25
26#include <QString>
27
28#include <libsigrokdecode/libsigrokdecode.h>
29
30#include <pv/data/signalbase.hpp>
31#include <pv/util.hpp>
32
33using std::list;
34using std::unordered_set;
35using std::vector;
36using std::shared_ptr;
37
38namespace pv {
39namespace data {
40
41namespace decode {
42class Annotation;
43class Decoder;
44class Row;
45}
46
47class DecoderStack;
48class Logic;
49class SignalBase;
50class SignalData;
51
52struct DecodeChannel
53{
54 uint16_t id; // Also tells which bit within a sample represents this channel
55 const bool is_optional;
56 const pv::data::SignalBase *assigned_signal;
57 const QString name, desc;
58 int initial_pin_state;
59 const shared_ptr<pv::data::decode::Decoder> decoder_;
60 const srd_channel *pdch_;
61};
62
63class DecodeSignal : public SignalBase
64{
65 Q_OBJECT
66
67public:
68 DecodeSignal(shared_ptr<pv::data::DecoderStack> decoder_stack,
69 const unordered_set< shared_ptr<data::SignalBase> > &all_signals);
70 virtual ~DecodeSignal();
71
72 bool is_decode_signal() const;
73 shared_ptr<data::DecoderStack> decoder_stack() const;
74 const list< shared_ptr<data::decode::Decoder> >& decoder_stack_list() const;
75
76 void stack_decoder(srd_decoder *decoder);
77 void remove_decoder(int index);
78 bool toggle_decoder_visibility(int index);
79
80 void begin_decode();
81 QString error_message() const;
82
83 const list<data::DecodeChannel> get_channels() const;
84 void auto_assign_signals();
85 void assign_signal(const uint16_t channel_id, const SignalBase *signal);
86
87 void set_initial_pin_state(const uint16_t channel_id, const int init_state);
88
89 double samplerate() const;
90 const pv::util::Timestamp& start_time() const;
91 int64_t sample_count() const;
92 int64_t samples_decoded() const;
93
94 vector<decode::Row> visible_rows() const;
95
96 /**
97 * Extracts sorted annotations between two period into a vector.
98 */
99 void get_annotation_subset(
100 vector<pv::data::decode::Annotation> &dest,
101 const decode::Row &row, uint64_t start_sample,
102 uint64_t end_sample) const;
103
104private:
105 void update_channel_list();
106
107Q_SIGNALS:
108 void new_annotations();
109 void channels_updated();
110
111private Q_SLOTS:
112 void on_new_annotations();
113
114private:
115 shared_ptr<pv::data::DecoderStack> decoder_stack_;
116 const unordered_set< shared_ptr<data::SignalBase> > &all_signals_;
117 list<data::DecodeChannel> channels_;
118};
119
120} // namespace data
121} // namespace pv
122
123#endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP