X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=7b1a20134acaccd7ce4adec6462d11a02c11ffcb;hp=fbe59059cf6190167d8cc0333c27e01008e094eb;hb=f54e68b03d5d24c7787962fcc701d8d52b0ec8ab;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index fbe59059..7b1a2013 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -14,19 +14,26 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_H -#define PULSEVIEW_PV_DATA_DECODE_DECODER_H +#ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_HPP +#define PULSEVIEW_PV_DATA_DECODE_DECODER_HPP #include #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; @@ -34,56 +41,100 @@ struct srd_session; namespace pv { -namespace view { -class LogicSignal; -} - namespace data { 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: - Decoder(const srd_decoder *const decoder); + Decoder(const srd_decoder *const dec, uint8_t stack_level); virtual ~Decoder(); - const srd_decoder* decoder() const; + const srd_decoder* get_srd_decoder() const; - bool shown() const; - void show(bool show = true); + uint8_t get_stack_level() const; - const std::map >& channels() const; - void set_channels(std::map > channels); + const char* name() const; - const std::map& options() const; + bool visible() const; + void set_visible(bool visible); + 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, int unit_size) 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; - 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_; + const srd_decoder* const srd_decoder_; + uint8_t stack_level_; - bool shown_; + bool visible_; - std::map > - channels_; - std::map options_; + vector channels_; + vector rows_; + vector ann_classes_; + vector bin_classes_; + map options_; + srd_decoder_inst *decoder_inst_; }; } // namespace decode } // namespace data } // namespace pv -#endif // PULSEVIEW_PV_DATA_DECODE_DECODER_H +#endif // PULSEVIEW_PV_DATA_DECODE_DECODER_HPP