X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=bc1673c97e032cc59ab900cd35cd1a926de7ad6a;hb=ac9494eff3ebc74ae7a87746a4d8668c68f32b52;hp=3d3e01d4787df95cbce69d9f1dd5471eaed8cbed;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index 3d3e01d4..bc1673c9 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -23,9 +23,16 @@ #include #include #include +#include #include +#include + +using std::map; +using std::string; +using std::vector; + struct srd_decoder; struct srd_decoder_inst; struct srd_channel; @@ -40,6 +47,28 @@ class SignalBase; namespace decode { +class Decoder; + +struct DecodeChannel +{ + uint16_t id; ///< Global numerical ID for the decode channels in the stack + uint16_t bit_id; ///< Tells which bit within a sample represents this channel + const bool is_optional; + const pv::data::SignalBase *assigned_signal; + const QString name, desc; + int initial_pin_state; + const shared_ptr decoder_; + const srd_channel *pdch_; +}; + +struct DecodeBinaryClassInfo +{ + uint32_t bin_class_id; + char* name; + char* description; +}; + + class Decoder { public: @@ -49,33 +78,37 @@ public: const srd_decoder* decoder() const; + const char* name() const; + bool shown() const; void show(bool show = true); - const std::map >& channels() const; - void set_channels(std::map > channels); + const vector& channels() const; + void set_channels(vector channels); - const std::map& options() const; + const map& options() const; void set_option(const char *id, GVariant *value); + void apply_all_options(); + bool have_required_channels() const; - srd_decoder_inst* create_decoder_inst( - srd_session *session) const; + srd_decoder_inst* create_decoder_inst(srd_session *session); + void invalidate_decoder_inst(); - std::set< std::shared_ptr > get_data(); + uint32_t get_binary_class_count() const; + const DecodeBinaryClassInfo* get_binary_class(uint32_t id) const; private: const srd_decoder *const decoder_; bool shown_; - std::map > - channels_; - std::map options_; + vector channels_; + vector bin_classes_; + map options_; + srd_decoder_inst *decoder_inst_; }; } // namespace decode