X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=c0a30a7e2f50a9e89c574dba739c0d8f7e1a0ece;hb=41293691c797b8f5e3133c072aa869fc9cf91253;hp=b7ef608033b8d84a4a60217f455e30c26e107b2f;hpb=a82325d16a1412f3474423fa3fa56bb85af1fb00;p=pulseview.git diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index b7ef6080..c0a30a7e 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -28,6 +28,7 @@ #include #include +#include using std::map; using std::string; @@ -49,6 +50,15 @@ 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 @@ -61,6 +71,13 @@ struct DecodeChannel const srd_channel *pdch_; }; +struct DecodeBinaryClassInfo +{ + uint32_t bin_class_id; + char* name; + char* description; +}; + class Decoder { @@ -69,7 +86,9 @@ 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); @@ -88,14 +107,25 @@ public: 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); + 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_; vector channels_; + vector rows_; + vector ann_classes_; + vector bin_classes_; map options_; srd_decoder_inst *decoder_inst_; };