Skip to content

Commit 929646e

Browse files
committed
use ping and less verbose stack traces
1 parent 3bc8387 commit 929646e

File tree

2 files changed

+44
-29
lines changed

2 files changed

+44
-29
lines changed

matter_server/server/client_handler.py

+15-3
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,24 @@ async def _run_handler(
193193
result = await result
194194
self._send_message(SuccessResultMessage(msg.message_id, result))
195195
except ChipStackError as err:
196-
self._logger.exception("SDK Error during handling message: %s", msg)
196+
self._logger.error(
197+
"SDK Error during handling message: %s: %s",
198+
msg.command,
199+
str(err),
200+
# only print the full stacktrace if debug logging is enabled
201+
exc_info=err if self._logger.isEnabledFor(logging.DEBUG) else None,
202+
)
197203
self._send_message(
198204
ErrorResultMessage(msg.message_id, SDKStackError.error_code, str(err))
199205
)
200-
except Exception as err: # pylint: disable=broad-except
201-
self._logger.exception("Error handling message: %s", msg)
206+
except Exception as err: # pylint: disable=broad-except # noqa: BLE001
207+
self._logger.error(
208+
"SDK Error during handling message: %s: %s",
209+
msg.command,
210+
str(err),
211+
# only print the full stacktrace if debug logging is enabled
212+
exc_info=err if self._logger.isEnabledFor(logging.DEBUG) else None,
213+
)
202214
error_code = getattr(err, "error_code", MatterError.error_code)
203215
self._send_message(ErrorResultMessage(msg.message_id, error_code, str(err)))
204216

matter_server/server/device_controller.py

+29-26
Original file line numberDiff line numberDiff line change
@@ -970,30 +970,25 @@ def resubscription_succeeded(
970970
self._last_subscription_attempt[node_id] = 0
971971
future = loop.create_future()
972972
device = await self._resolve_node(node_id)
973-
try:
974-
Attribute.Read(
975-
future=future,
976-
eventLoop=loop,
977-
device=device.deviceProxy,
978-
devCtrl=self.chip_controller,
979-
attributes=[Attribute.AttributePath()], # wildcard
980-
events=[
981-
Attribute.EventPath(
982-
EndpointId=None, Cluster=None, Event=None, Urgent=1
983-
)
984-
],
985-
returnClusterObject=False,
986-
subscriptionParameters=Attribute.SubscriptionParameters(
987-
interval_floor, interval_ceiling
988-
),
989-
# Use fabricfiltered as False to detect changes made by other controllers
990-
# and to be able to provide a list of all fabrics attached to the device
991-
fabricFiltered=False,
992-
autoResubscribe=True,
993-
).raise_on_error()
994-
sub: Attribute.SubscriptionTransaction = await future
995-
except Exception as err: # pylint: disable=broad-except
996-
node_logger.exception("Error setting up subscription", exc_info=err)
973+
Attribute.Read(
974+
future=future,
975+
eventLoop=loop,
976+
device=device.deviceProxy,
977+
devCtrl=self.chip_controller,
978+
attributes=[Attribute.AttributePath()], # wildcard
979+
events=[
980+
Attribute.EventPath(EndpointId=None, Cluster=None, Event=None, Urgent=1)
981+
],
982+
returnClusterObject=False,
983+
subscriptionParameters=Attribute.SubscriptionParameters(
984+
interval_floor, interval_ceiling
985+
),
986+
# Use fabricfiltered as False to detect changes made by other controllers
987+
# and to be able to provide a list of all fabrics attached to the device
988+
fabricFiltered=False,
989+
autoResubscribe=True,
990+
).raise_on_error()
991+
sub: Attribute.SubscriptionTransaction = await future
997992

998993
sub.SetAttributeUpdateCallback(attribute_updated_callback)
999994
sub.SetEventUpdateCallback(event_callback)
@@ -1041,8 +1036,16 @@ async def _setup_node(self, node_id: int) -> None:
10411036
# prevent duplicate setup actions
10421037
return
10431038
self._nodes_in_setup.add(node_id)
1044-
# pre-cache ip-addresses
1045-
await self.get_node_ip_addresses(node_id)
1039+
# ping the node to out stale mdns reports and to prevent that we
1040+
# send an unreachable node to the sdk which is very slow with resolving it
1041+
# this will also precache the ip addresses of the node for later use.
1042+
ping_result = await self.ping_node(node_id)
1043+
if not any(ping_result.values()):
1044+
LOGGER.warning(
1045+
"Skip set-up for node %s because it does not appear to be reachable...",
1046+
node_id,
1047+
)
1048+
return
10461049
# we use a lock for the node setup process to process nodes sequentially
10471050
# to prevent a flood of the (thread) network when there are many nodes being setup.
10481051
async with self._node_setup_lock:

0 commit comments

Comments
 (0)