]> sigrok.org Git - pulseview.git/commitdiff
DecoderSelector: Rework GSList usage to remove unnecessary list copying
authorSoeren Apel <redacted>
Thu, 14 Mar 2019 11:24:04 +0000 (12:24 +0100)
committerSoeren Apel <redacted>
Thu, 14 Mar 2019 11:24:04 +0000 (12:24 +0100)
pv/subwindows/decoder_selector/model.cpp
pv/subwindows/decoder_selector/subwindow.cpp

index 07faee8ebea3b1e4a723c3e8bc46f0bb9a39859f..31dfd464bf6d07044e5a417f92baeab6dbce960a 100644 (file)
@@ -51,8 +51,7 @@ DecoderCollectionModel::DecoderCollectionModel(QObject* parent) :
                make_shared<DecoderCollectionItem>(item_data, root_);
        root_->appendSubItem(group_item_all);
 
                make_shared<DecoderCollectionItem>(item_data, root_);
        root_->appendSubItem(group_item_all);
 
-       GSList* l = g_slist_copy((GSList*)srd_decoder_list());
-       for (GSList* li = l; li; li = li->next) {
+       for (GSList* li = (GSList*)srd_decoder_list(); li; li = li->next) {
                const srd_decoder *const d = (srd_decoder*)li->data;
                assert(d);
 
                const srd_decoder *const d = (srd_decoder*)li->data;
                assert(d);
 
@@ -70,8 +69,7 @@ DecoderCollectionModel::DecoderCollectionModel(QObject* parent) :
                group_item_all->appendSubItem(decoder_item_all);
 
                // Add decoder to all relevant groups using the tag information
                group_item_all->appendSubItem(decoder_item_all);
 
                // Add decoder to all relevant groups using the tag information
-               GSList* t = g_slist_copy((GSList*)d->tags);
-               for (GSList* ti = t; ti; ti = ti->next) {
+               for (GSList* ti = (GSList*)d->tags; ti; ti = ti->next) {
                        const QString tag = tr((char*)ti->data);
                        const QVariant tag_var = QVariant(tag);
 
                        const QString tag = tr((char*)ti->data);
                        const QVariant tag_var = QVariant(tag);
 
@@ -101,9 +99,7 @@ DecoderCollectionModel::DecoderCollectionModel(QObject* parent) :
                        // Add decoder to tag group
                        group_item->appendSubItem(decoder_item);
                }
                        // Add decoder to tag group
                        group_item->appendSubItem(decoder_item);
                }
-               g_slist_free(t);
        }
        }
-       g_slist_free(l);
 }
 
 QVariant DecoderCollectionModel::data(const QModelIndex& index, int role) const
 }
 
 QVariant DecoderCollectionModel::data(const QModelIndex& index, int role) const
index 719d2efa1456142ac940936ec80560e671ad2a6e..e6245ab4bf67f2ed06ae8b02c55b30bd24a3ce93 100644 (file)
@@ -141,15 +141,13 @@ const srd_decoder* SubWindow::get_srd_decoder_from_id(QString id) const
 {
        const srd_decoder* ret_val = nullptr;
 
 {
        const srd_decoder* ret_val = nullptr;
 
-       GSList* l = g_slist_copy((GSList*)srd_decoder_list());
-       for (GSList* li = l; li; li = li->next) {
+       for (GSList* li = (GSList*)srd_decoder_list(); li; li = li->next) {
                const srd_decoder* d = (srd_decoder*)li->data;
                assert(d);
 
                if (QString::fromUtf8(d->id) == id)
                        ret_val = d;
        }
                const srd_decoder* d = (srd_decoder*)li->data;
                assert(d);
 
                if (QString::fromUtf8(d->id) == id)
                        ret_val = d;
        }
-       g_slist_free(l);
 
        return ret_val;
 }
 
        return ret_val;
 }
@@ -158,12 +156,8 @@ vector<const char*> SubWindow::decoder_inputs(const srd_decoder* d) const
 {
        vector<const char*> ret_val;
 
 {
        vector<const char*> ret_val;
 
-       GSList* l = g_slist_copy(d->inputs);
-       for (GSList* li = l; li; li = li->next) {
-               const char* input = (const char*)li->data;
-               ret_val.push_back(input);
-       }
-       g_slist_free(l);
+       for (GSList* li = d->inputs; li; li = li->next)
+               ret_val.push_back((const char*)li->data);
 
        return ret_val;
 }
 
        return ret_val;
 }
@@ -172,8 +166,7 @@ vector<const srd_decoder*> SubWindow::decoders_providing(const char* output) con
 {
        vector<const srd_decoder*> ret_val;
 
 {
        vector<const srd_decoder*> ret_val;
 
-       GSList* l = g_slist_copy((GSList*)srd_decoder_list());
-       for (GSList* li = l; li; li = li->next) {
+       for (GSList* li = (GSList*)srd_decoder_list(); li; li = li->next) {
                const srd_decoder* d = (srd_decoder*)li->data;
                assert(d);
 
                const srd_decoder* d = (srd_decoder*)li->data;
                assert(d);
 
@@ -184,7 +177,6 @@ vector<const srd_decoder*> SubWindow::decoders_providing(const char* output) con
                if (strncmp((char*)(d->outputs->data), output, strlen(output)) == 0)
                        ret_val.push_back(d);
        }
                if (strncmp((char*)(d->outputs->data), output, strlen(output)) == 0)
                        ret_val.push_back(d);
        }
-       g_slist_free(l);
 
        return ret_val;
 }
 
        return ret_val;
 }
@@ -208,14 +200,12 @@ void SubWindow::on_item_changed(const QModelIndex& index)
        const QString doc = QString::fromUtf8(srd_decoder_doc_get(d));
 
        QString tags;
        const QString doc = QString::fromUtf8(srd_decoder_doc_get(d));
 
        QString tags;
-       GSList* l = g_slist_copy((GSList*)d->tags);
-       for (GSList* li = l; li; li = li->next) {
-               QString s = (li == l) ?
+       for (GSList* li = (GSList*)d->tags; li; li = li->next) {
+               QString s = (li == (GSList*)d->tags) ?
                        tr((char*)li->data) :
                        QString(tr(", %1")).arg(tr((char*)li->data));
                tags.append(s);
        }
                        tr((char*)li->data) :
                        QString(tr(", %1")).arg(tr((char*)li->data));
                tags.append(s);
        }
-       g_slist_free(l);
 
        info_label_header_->setText(QString("<span style='font-size:large;font-weight:bold'>%1 (%2)</span><br>%3")
                .arg(longname, id, desc));
 
        info_label_header_->setText(QString("<span style='font-size:large;font-weight:bold'>%1 (%2)</span><br>%3")
                .arg(longname, id, desc));