From 7482a05ca24791c927ab91b6a97da5c1f938a92c Mon Sep 17 00:00:00 2001 From: Julian Bouzas <julian.bouzas@collabora.com> Date: Thu, 8 Apr 2021 14:41:06 -0400 Subject: [PATCH] policy-node.lua: do not handle items with media role if endpoints exist --- src/scripts/policy-node.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/scripts/policy-node.lua b/src/scripts/policy-node.lua index 0c1a795e..6560b32d 100644 --- a/src/scripts/policy-node.lua +++ b/src/scripts/policy-node.lua @@ -169,6 +169,13 @@ function handleSiPortInfo (si) return end + -- Determine if we can handle item by this policy + local media_role = node.properties["media.role"] + if siendpoints_om:get_n_objects () > 0 and media_role ~= nil then + Log.info (si, "item won't be handled by this policy") + return + end + Log.info (si, "handling item " .. node.properties["node.name"]) -- find target @@ -222,6 +229,7 @@ end default_nodes = Plugin("default-nodes-api") metadatas_om = ObjectManager { Interest { type = "metadata" } } +siendpoints_om = ObjectManager { Interest { type = "SiEndpoint" }} siportinfos_om = ObjectManager { Interest { type = "SiPortInfo", -- only handle si-audio-adapter and si-node Constraint { @@ -256,5 +264,6 @@ siportinfos_om:connect("objects-changed", function (om) end) metadatas_om:activate() +siendpoints_om:activate() siportinfos_om:activate() silinks_om:activate() -- GitLab