X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=eb9a44bf6c1a8841cba632bc1bf3b5aa8d517c91;hb=761f8302350c52f2cf357f49e1084e7101c70497;hp=4ec193b1df24dc73d61936e8e5d71bfb278b6316;hpb=27a3f09baf61c7f9b8c07630d34df75ddfdd476b;p=pulseview.git diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index 4ec193b1..eb9a44bf 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -27,9 +27,10 @@ #include +#include +#include + using std::map; -using std::set; -using std::shared_ptr; using std::string; using std::vector; @@ -42,12 +43,42 @@ namespace pv { namespace data { -struct DecodeChannel; class Logic; class SignalBase; namespace decode { +class Decoder; + +struct AnnotationClass +{ + size_t id; + char* name; + char* description; + Row* row; + bool visible; +}; + +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: @@ -55,29 +86,49 @@ public: virtual ~Decoder(); - const srd_decoder* decoder() const; + const srd_decoder* get_srd_decoder() const; + + const char* name() const; - bool shown() const; - void show(bool show = true); + bool visible() const; + void set_visible(bool visible); - const vector& channels() const; - void set_channels(vector channels); + const vector& channels() const; + void set_channels(vector channels); 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(); + + vector get_rows(); + Row* get_row_by_id(size_t id); + + vector ann_classes() const; + vector ann_classes(); + AnnotationClass* get_ann_class_by_id(size_t id); + const AnnotationClass* get_ann_class_by_id(size_t id) const; + + uint32_t get_binary_class_count() const; + const DecodeBinaryClassInfo* get_binary_class(uint32_t id) const; private: - const srd_decoder *const decoder_; + const srd_decoder* const srd_decoder_; - bool shown_; + bool visible_; - vector channels_; + vector channels_; + vector rows_; + vector ann_classes_; + vector bin_classes_; map options_; + srd_decoder_inst *decoder_inst_; }; } // namespace decode