]> sigrok.org Git - pulseview.git/blob - pv/data/decodesignal.hpp
0f3a0330e3ad9029ad742d796294452d091f91ef
[pulseview.git] / pv / data / decodesignal.hpp
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 <vector>
24
25 #include <QString>
26
27 #include <libsigrokdecode/libsigrokdecode.h>
28
29 #include <pv/data/signalbase.hpp>
30
31 using std::list;
32 using std::vector;
33 using std::shared_ptr;
34
35 namespace pv {
36 namespace data {
37
38 namespace decode {
39 class Annotation;
40 class Decoder;
41 class Row;
42 }
43
44 class DecoderStack;
45 class Logic;
46 class SignalData;
47
48 class DecodeSignal : public SignalBase
49 {
50         Q_OBJECT
51
52 public:
53         DecodeSignal(shared_ptr<pv::data::DecoderStack> decoder_stack);
54         virtual ~DecodeSignal();
55
56         bool is_decode_signal() const;
57         shared_ptr<data::DecoderStack> decoder_stack() const;
58         const list< shared_ptr<data::decode::Decoder> >& decoder_stack_list() const;
59
60         void stack_decoder(srd_decoder *decoder);
61         void remove_decoder(int index);
62         bool toggle_decoder_visibility(int index);
63
64         QString error_message() const;
65
66         vector<decode::Row> visible_rows() const;
67
68         /**
69          * Extracts sorted annotations between two period into a vector.
70          */
71         void get_annotation_subset(
72                 vector<pv::data::decode::Annotation> &dest,
73                 const decode::Row &row, uint64_t start_sample,
74                 uint64_t end_sample) const;
75
76 Q_SIGNALS:
77         void new_annotations();
78
79 private Q_SLOTS:
80         void on_new_annotations();
81
82 private:
83         shared_ptr<pv::data::DecoderStack> decoder_stack_;
84 };
85
86 } // namespace data
87 } // namespace pv
88
89 #endif // PULSEVIEW_PV_DATA_DECODESIGNAL_HPP