]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/decoder.hpp
Implement logic data muxer thread
[pulseview.git] / pv / data / decode / decoder.hpp
index 3f0f462ba4412b30f0ade603bbc5e160d07969e9..4ec193b1df24dc73d61936e8e5d71bfb278b6316 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>
 
+using std::map;
+using std::set;
+using std::shared_ptr;
+using std::string;
+using std::vector;
+
 struct srd_decoder;
 struct srd_decoder_inst;
 struct srd_channel;
@@ -34,20 +40,18 @@ struct srd_session;
 
 namespace pv {
 
-namespace view {
-class LogicSignal;
-}
-
 namespace data {
 
+struct DecodeChannel;
 class Logic;
+class SignalBase;
 
 namespace decode {
 
 class Decoder
 {
 public:
-       Decoder(const srd_decoder *const decoder);
+       Decoder(const srd_decoder *const dec);
 
        virtual ~Decoder();
 
@@ -56,30 +60,24 @@ public:
        bool shown() const;
        void show(bool show = true);
 
-       const std::map<const srd_channel*,
-               std::shared_ptr<view::LogicSignal> >& channels() const;
-       void set_channels(std::map<const srd_channel*,
-               std::shared_ptr<view::LogicSignal> > channels);
+       const vector<data::DecodeChannel*>& channels() const;
+       void set_channels(vector<data::DecodeChannel*> channels);
 
-       const std::map<std::string, GVariant*>& options() const;
+       const map<string, GVariant*>& options() const;
 
        void set_option(const char *id, GVariant *value);
 
        bool have_required_channels() const;
 
-       srd_decoder_inst* create_decoder_inst(
-               srd_session *session, int unit_size) const;
-
-       std::set< std::shared_ptr<pv::data::Logic> > get_data();
+       srd_decoder_inst* create_decoder_inst(srd_session *session) const;
 
 private:
        const srd_decoder *const decoder_;
 
        bool shown_;
 
-       std::map<const srd_channel*, std::shared_ptr<pv::view::LogicSignal> >
-               channels_;
-       std::map<std::string, GVariant*> options_;
+       vector<data::DecodeChannel*> channels_;
+       map<string, GVariant*> options_;
 };
 
 } // namespace decode