]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/decoder.hpp
Various PD-related changes
[pulseview.git] / pv / data / decode / decoder.hpp
index 105c6f744b0cf897df19e64d7237a06ddf50fb67..2a7ef11ea14365fe8947e41154d493a3d46d9425 100644 (file)
@@ -14,8 +14,7 @@
  * 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 <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_HPP
 #include <map>
 #include <memory>
 #include <set>
+#include <vector>
 
 #include <glib.h>
 
+#include <pv/data/signalbase.hpp>
+
+using std::map;
+using std::string;
+using std::vector;
+
 struct srd_decoder;
 struct srd_decoder_inst;
 struct srd_channel;
@@ -41,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> decoder_;
+       const srd_channel *pdch_;
+};
+
+struct DecodeBinaryClassInfo
+{
+       uint8_t bin_class_id;
+       char* name;
+       char* description;
+};
+
+
 class Decoder
 {
 public:
@@ -50,33 +78,37 @@ public:
 
        const srd_decoder* decoder() const;
 
+       const char* name() const;
+
        bool shown() const;
        void show(bool show = true);
 
-       const std::map<const srd_channel*,
-               std::shared_ptr<data::SignalBase> >& channels() const;
-       void set_channels(std::map<const srd_channel*,
-               std::shared_ptr<data::SignalBase> > channels);
+       const vector<DecodeChannel*>& channels() const;
+       void set_channels(vector<DecodeChannel*> channels);
 
-       const std::map<std::string, GVariant*>& options() const;
+       const map<string, GVariant*>& 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<pv::data::Logic> > get_data();
+       uint8_t get_binary_class_count() const;
+       const DecodeBinaryClassInfo* get_binary_class(uint8_t id) const;
 
 private:
        const srd_decoder *const decoder_;
 
        bool shown_;
 
-       std::map<const srd_channel*, std::shared_ptr<pv::data::SignalBase> >
-               channels_;
-       std::map<std::string, GVariant*> options_;
+       vector<DecodeChannel*> channels_;
+       vector<DecodeBinaryClassInfo> bin_classes_;
+       map<string, GVariant*> options_;
+       srd_decoder_inst *decoder_inst_;
 };
 
 } // namespace decode