]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decoderstack.h
Renamed pv::data::Decoder to DecoderStack
[pulseview.git] / pv / data / decoderstack.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_DECODERSTACK_H
22#define PULSEVIEW_PV_DATA_DECODERSTACK_H
23
24#include "signaldata.h"
25
26#include <map>
27
28#include <boost/shared_ptr.hpp>
29#include <boost/thread.hpp>
30
31#include <QObject>
32#include <QString>
33
34#include <glib.h>
35
36struct srd_decoder;
37struct srd_probe;
38struct srd_proto_data;
39
40namespace DecoderStackTest {
41class TwoDecoderStack;
42}
43
44namespace pv {
45
46namespace view {
47class LogicSignal;
48
49namespace decode {
50class Annotation;
51}
52
53}
54
55namespace data {
56
57class Logic;
58
59class DecoderStack : public QObject, public SignalData
60{
61 Q_OBJECT
62
63private:
64 static const double DecodeMargin;
65 static const double DecodeThreshold;
66 static const int64_t DecodeChunkLength;
67
68public:
69 DecoderStack(const srd_decoder *const decoder);
70
71 virtual ~DecoderStack();
72
73 const srd_decoder* decoder() const;
74
75 const std::map<const srd_probe*, boost::shared_ptr<view::LogicSignal> >&
76 probes() const;
77 void set_probes(std::map<const srd_probe*,
78 boost::shared_ptr<view::LogicSignal> > probes);
79
80 const GHashTable* options() const;
81
82 void set_option(const char *id, GVariant *value);
83
84 const std::vector< boost::shared_ptr<pv::view::decode::Annotation> >
85 annotations() const;
86
87 QString error_message();
88
89 void clear_snapshots();
90
91private:
92 void begin_decode();
93
94 void decode_proc(boost::shared_ptr<data::Logic> data);
95
96 static void annotation_callback(srd_proto_data *pdata,
97 void *decoder);
98
99signals:
100 void new_decode_data();
101
102private:
103
104 /**
105 * This mutex prevents more than one decode operation occuring
106 * concurrently.
107 * @todo A proper solution should be implemented to allow multiple
108 * decode operations.
109 */
110 static boost::mutex _global_decode_mutex;
111
112 const srd_decoder *const _decoder;
113 std::map<const srd_probe*, boost::shared_ptr<view::LogicSignal> >
114 _probes;
115 GHashTable *_options;
116
117 mutable boost::mutex _mutex;
118 std::vector< boost::shared_ptr<pv::view::decode::Annotation> >
119 _annotations;
120 QString _error_message;
121
122 boost::thread _decode_thread;
123
124 friend class DecoderStackTest::TwoDecoderStack;
125};
126
127} // namespace data
128} // namespace pv
129
130#endif // PULSEVIEW_PV_DATA_DECODERSTACK_H