summaryrefslogtreecommitdiff
path: root/instance.c
diff options
context:
space:
mode:
authorKarl Palsson <karlp@etactica.com>2016-11-28 17:31:55 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2017-02-20 16:28:27 +0100
commit79d0013e85ca5ee5086ece1528b4403777a01f96 (patch)
tree31bf12abd1e85b45b299865167618aac6379c276 /instance.c
parent3262ef0203e23399f3cab796391da06969c8306b (diff)
downloadlibsigrokdecode-79d0013e85ca5ee5086ece1528b4403777a01f96.tar.gz
libsigrokdecode-79d0013e85ca5ee5086ece1528b4403777a01f96.zip
Look up instances by ID in the full stack
srd_inst_find_by_id() previously only searched for instance IDs at the bottom of any stacked decoders. Make it properly search all stacks, just like srd_inst_find_by_obj() and more usefully when trying to generate unique instance IDs. No external API change, only the explicit behaviour of the API. This fixes parts of bug #868. Signed-off-by: Karl Palsson <karlp@etactica.com>
Diffstat (limited to 'instance.c')
-rw-r--r--instance.c40
1 files changed, 35 insertions, 5 deletions
diff --git a/instance.c b/instance.c
index 79b72e1..5b98336 100644
--- a/instance.c
+++ b/instance.c
@@ -424,10 +424,42 @@ SRD_API int srd_inst_stack(struct srd_session *sess,
}
/**
+ * Search a decoder instance and its stack for instance ID.
+ *
+ * @param[in] inst_id ID to search for.
+ * @param[in] stack A decoder instance, potentially with stacked instances.
+ *
+ * @return The matching instance, or NULL.
+ */
+static struct srd_decoder_inst *srd_inst_find_by_id_stack(const char *inst_id,
+ struct srd_decoder_inst *stack)
+{
+ const GSList *l;
+ struct srd_decoder_inst *tmp, *di;
+
+ if (!strcmp(stack->inst_id, inst_id))
+ return stack;
+
+ /* Otherwise, look recursively in our stack. */
+ di = NULL;
+ if (stack->next_di) {
+ for (l = stack->next_di; l; l = l->next) {
+ tmp = l->data;
+ if (!strcmp(tmp->inst_id, inst_id)) {
+ di = tmp;
+ break;
+ }
+ }
+ }
+
+ return di;
+}
+
+/**
* Find a decoder instance by its instance ID.
*
- * Only the bottom level of instances are searched -- instances already stacked
- * on top of another one will not be found.
+ * This will recurse to find the instance anywhere in the stack tree of the
+ * given session.
*
* @param sess The session holding the protocol decoder instance.
* @param inst_id The instance ID to be found.
@@ -450,10 +482,8 @@ SRD_API struct srd_decoder_inst *srd_inst_find_by_id(struct srd_session *sess,
di = NULL;
for (l = sess->di_list; l; l = l->next) {
tmp = l->data;
- if (!strcmp(tmp->inst_id, inst_id)) {
- di = tmp;
+ if (di = srd_inst_find_by_id_stack(inst_id, tmp))
break;
- }
}
return di;