]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decoderstack.h
Moved annotation painting code into DecodeTrace, and moved Annotation in pv::data...
[pulseview.git] / pv / data / decoderstack.h
index 844a2b547cef8f353007e09029b855024c2a4f44..e2139f5b5ca94969e4d704a6cc50ae8024af78c4 100644 (file)
@@ -23,7 +23,7 @@
 
 #include "signaldata.h"
 
-#include <map>
+#include <list>
 
 #include <boost/shared_ptr.hpp>
 #include <boost/thread.hpp>
@@ -31,8 +31,6 @@
 #include <QObject>
 #include <QString>
 
-#include <glib.h>
-
 struct srd_decoder;
 struct srd_probe;
 struct srd_proto_data;
@@ -45,15 +43,15 @@ namespace pv {
 
 namespace view {
 class LogicSignal;
+}
+
+namespace data {
 
 namespace decode {
 class Annotation;
+class Decoder;
 }
 
-}
-
-namespace data {
-
 class Logic;
 
 class DecoderStack : public QObject, public SignalData
@@ -70,27 +68,23 @@ public:
 
        virtual ~DecoderStack();
 
-       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;
+       const std::list< boost::shared_ptr<decode::Decoder> >& stack() const;
+       void push(boost::shared_ptr<decode::Decoder> decoder);
+       void remove(int index);
 
-       void set_option(const char *id, GVariant *value);
+       int64_t samples_decoded() const;
 
-       const std::vector< boost::shared_ptr<pv::view::decode::Annotation> >
-               annotations() const;
+       const std::vector<pv::data::decode::Annotation> annotations() const;
 
        QString error_message();
 
-       void clear_snapshots();
+       void clear();
+
+       uint64_t get_max_sample_count() const;
 
-private:
        void begin_decode();
 
+private:
        void decode_proc(boost::shared_ptr<data::Logic> data);
 
        static void annotation_callback(srd_proto_data *pdata,
@@ -109,14 +103,11 @@ private:
         */
        static boost::mutex _global_decode_mutex;
 
-       const srd_decoder *const _decoder;
-       std::map<const srd_probe*, boost::shared_ptr<view::LogicSignal> >
-               _probes;
-       GHashTable *_options;
+       std::list< boost::shared_ptr<decode::Decoder> > _stack;
 
        mutable boost::mutex _mutex;
-       std::vector< boost::shared_ptr<pv::view::decode::Annotation> >
-               _annotations;
+       int64_t _samples_decoded;
+       std::vector<pv::data::decode::Annotation> _annotations;
        QString _error_message;
 
        boost::thread _decode_thread;