X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecoder.h;h=09002ac911153ed06901af6ab1ba3e0927b1f4c7;hb=b6b267bba9d55d23fe5c3537e4785238d4377ad7;hp=dcf12fe1d4b5d2b8c6696442682bc9f5217ea2e6;hpb=640d69ce065e5c5a30e83395b259a63f7e03c779;p=pulseview.git diff --git a/pv/data/decoder.h b/pv/data/decoder.h index dcf12fe..09002ac 100644 --- a/pv/data/decoder.h +++ b/pv/data/decoder.h @@ -28,48 +28,87 @@ #include #include +#include +#include + +#include + struct srd_decoder; -struct srd_decoder_inst; struct srd_probe; +struct srd_proto_data; + +namespace DecoderTest { +class TwoDecoder; +} namespace pv { namespace view { -class Signal; +class LogicSignal; + +namespace decode { +class Annotation; +} + } namespace data { class Logic; -class Decoder : public SignalData +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, std::map > probes); + boost::shared_ptr > probes, + GHashTable *options); virtual ~Decoder(); const srd_decoder* get_decoder() const; - void begin_decode(); + const std::vector< boost::shared_ptr > + annotations() const; + + QString error_message(); void clear_snapshots(); private: + void begin_decode(); + void init_decoder(); void decode_proc(boost::shared_ptr data); + static void annotation_callback(srd_proto_data *pdata, + void *decoder); + +signals: + void new_decode_data(); + private: const srd_decoder *const _decoder; - std::map > + std::map > _probes; + GHashTable *_options; - srd_decoder_inst *_decoder_inst; + mutable boost::mutex _mutex; + std::vector< boost::shared_ptr > + _annotations; + QString _error_message; boost::thread _decode_thread; + + friend class DecoderTest::TwoDecoder; }; } // namespace data