]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/decoderoptions.cpp
Moved decoder config into the popup
[pulseview.git] / pv / prop / binding / decoderoptions.cpp
index 27ac44566e68323ee5ab0a453006a25d23f4b486..5ad7e3562e6150e057c9299964069af1e931feba 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include <libsigrokdecode/libsigrokdecode.h>
+
 #include "decoderoptions.h"
 
+#include <boost/foreach.hpp>
+#include <boost/none_t.hpp>
+
+#include <pv/data/decoder.h>
+#include <pv/prop/int.h>
+#include <pv/prop/string.h>
+
+using namespace boost;
+using namespace std;
+
 namespace pv {
 namespace prop {
 namespace binding {
 
-DecoderOptions::DecoderOptions(struct srd_decoder *decoder) :
+DecoderOptions::DecoderOptions(shared_ptr<pv::data::Decoder> decoder) :
        _decoder(decoder)
 {
+       assert(_decoder);
+
+       const srd_decoder *const dec = _decoder->decoder();
+       assert(dec);
+
+       for (GSList *l = dec->options; l; l = l->next)
+       {
+               const srd_decoder_option *const opt =
+                       (srd_decoder_option*)l->data;
+
+               const QString name(opt->desc);
+
+               const Property::Getter getter = bind(
+                       &DecoderOptions::getter, this, opt->id);
+               const Property::Setter setter = bind(
+                       &DecoderOptions::setter, this, opt->id, _1);
+
+               shared_ptr<Property> prop;
+
+               if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("x")))
+                       prop = shared_ptr<Property>(
+                               new Int(name, "", none, getter, setter));
+               else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("s")))
+                       prop = shared_ptr<Property>(
+                               new String(name, getter, setter));
+               else
+                       continue;
+
+               _properties.push_back(prop);
+       }
+}
+
+GVariant* DecoderOptions::getter(const char *id)
+{
+       assert(_decoder);
+
+       // Get the value from the hash table if it is already present
+       GVariant *val = (GVariant*)g_hash_table_lookup(
+               (GHashTable*)_decoder->options(), id);
+
+       if (!val)
+       {
+               assert(_decoder->decoder());
+
+               // Get the default value if not
+               for (GSList *l = _decoder->decoder()->options; l; l = l->next)
+               {
+                       const srd_decoder_option *const opt =
+                               (srd_decoder_option*)l->data;
+                       if (strcmp(opt->id, id) == 0) {
+                               val = opt->def;
+                               break;
+                       }
+               }
+       }
+
+       if (val)
+               g_variant_ref(val);
+
+       return val;
+}
+
+void DecoderOptions::setter(const char *id, GVariant *value)
+{
+       assert(_decoder);
+       _decoder->set_option(id, value);
 }
 
 } // binding
 } // prop
 } // pv
-