]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decoder.h
Renamed pv::data::Decoder to DecoderStack
[pulseview.git] / pv / data / decoder.h
diff --git a/pv/data/decoder.h b/pv/data/decoder.h
deleted file mode 100644 (file)
index 72ccd2e..0000000
+++ /dev/null
@@ -1,130 +0,0 @@
-/*
- * This file is part of the PulseView project.
- *
- * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
- */
-
-#ifndef PULSEVIEW_PV_DATA_DECODER_H
-#define PULSEVIEW_PV_DATA_DECODER_H
-
-#include "signaldata.h"
-
-#include <map>
-
-#include <boost/shared_ptr.hpp>
-#include <boost/thread.hpp>
-
-#include <QObject>
-#include <QString>
-
-#include <glib.h>
-
-struct srd_decoder;
-struct srd_probe;
-struct srd_proto_data;
-
-namespace DecoderTest {
-class TwoDecoder;
-}
-
-namespace pv {
-
-namespace view {
-class LogicSignal;
-
-namespace decode {
-class Annotation;
-}
-
-}
-
-namespace data {
-
-class Logic;
-
-class Decoder : public QObject, public SignalData
-{
-       Q_OBJECT
-
-private:
-       static const double DecodeMargin;
-       static const double DecodeThreshold;
-       static const int64_t DecodeChunkLength;
-
-public:
-       Decoder(const srd_decoder *const decoder);
-
-       virtual ~Decoder();
-
-       const srd_decoder* decoder() const;
-
-       const std::map<const srd_probe*, boost::shared_ptr<view::LogicSignal> >&
-               probes() const;
-       void set_probes(std::map<const srd_probe*,
-               boost::shared_ptr<view::LogicSignal> > probes);
-
-       const GHashTable* options() const;
-
-       void set_option(const char *id, GVariant *value);
-
-       const std::vector< boost::shared_ptr<pv::view::decode::Annotation> >
-               annotations() const;
-
-       QString error_message();
-
-       void clear_snapshots();
-
-private:
-       void begin_decode();
-
-       void decode_proc(boost::shared_ptr<data::Logic> data);
-
-       static void annotation_callback(srd_proto_data *pdata,
-               void *decoder);
-
-signals:
-       void new_decode_data();
-
-private:
-
-       /**
-        * This mutex prevents more than one decode operation occuring
-        * concurrently.
-        * @todo A proper solution should be implemented to allow multiple
-        * decode operations.
-        */
-       static boost::mutex _global_decode_mutex;
-
-       const srd_decoder *const _decoder;
-       std::map<const srd_probe*, boost::shared_ptr<view::LogicSignal> >
-               _probes;
-       GHashTable *_options;
-
-       mutable boost::mutex _mutex;
-       std::vector< boost::shared_ptr<pv::view::decode::Annotation> >
-               _annotations;
-       QString _error_message;
-
-       boost::thread _decode_thread;
-
-       friend class DecoderTest::TwoDecoder;
-};
-
-} // namespace data
-} // namespace pv
-
-#endif // PULSEVIEW_PV_DATA_DECODER_H