Call .exception()
if both discoveries fail together, else return result
This commit is contained in:
parent
daaa41ba3d
commit
ee8ff02d52
3 changed files with 22 additions and 15 deletions
|
@ -197,19 +197,26 @@ class Gateway:
|
|||
igd_args: OrderedDict = None, loop=None, unicast: bool = None):
|
||||
if unicast is not None:
|
||||
return await cls._discover_gateway(lan_address, gateway_address, timeout, igd_args, loop, unicast)
|
||||
return await cls._discover_gateway(lan_address, gateway_address, timeout, igd_args, loop)
|
||||
done, pending = await asyncio.wait([
|
||||
cls._discover_gateway(
|
||||
loop = loop or asyncio.get_event_loop()
|
||||
with_unicast = loop.create_task(cls._discover_gateway(
|
||||
lan_address, gateway_address, timeout, igd_args, loop, unicast=True
|
||||
),
|
||||
cls._discover_gateway(
|
||||
))
|
||||
without_unicast = loop.create_task(cls._discover_gateway(
|
||||
lan_address, gateway_address, timeout, igd_args, loop, unicast=False
|
||||
)], return_when=asyncio.tasks.FIRST_COMPLETED
|
||||
)
|
||||
for task in list(pending):
|
||||
task.cancel()
|
||||
result = list(done)[0].result()
|
||||
return result
|
||||
))
|
||||
await asyncio.wait([with_unicast, without_unicast], return_when=asyncio.tasks.FIRST_COMPLETED)
|
||||
if with_unicast and not with_unicast.done():
|
||||
with_unicast.cancel()
|
||||
if without_unicast.done():
|
||||
return without_unicast.result()
|
||||
elif without_unicast and not without_unicast.done():
|
||||
without_unicast.cancel()
|
||||
if with_unicast.done() and not with_unicast.cancelled():
|
||||
return with_unicast.result()
|
||||
else:
|
||||
with_unicast.exception()
|
||||
without_unicast.exception()
|
||||
return with_unicast.result()
|
||||
|
||||
async def discover_commands(self, loop=None):
|
||||
response, xml_bytes, get_err = await scpd_get(self.path.decode(), self.base_ip.decode(), self.port, loop=loop)
|
||||
|
|
|
@ -394,7 +394,7 @@ class UPnP:
|
|||
try:
|
||||
result = fut.result()
|
||||
except UPnPError as err:
|
||||
print("aioupnp encountered an error:\n%s" % str(err))
|
||||
print("aioupnp encountered an error: %s" % str(err))
|
||||
return
|
||||
|
||||
if isinstance(result, (list, tuple, dict)):
|
||||
|
|
|
@ -85,7 +85,7 @@ class TestCLI(TestBase):
|
|||
|
||||
def test_m_search(self):
|
||||
actual_output = StringIO()
|
||||
timeout_msg = "aioupnp encountered an error:\nM-SEARCH for 10.0.0.1:1900 timed out\n"
|
||||
timeout_msg = "aioupnp encountered an error: M-SEARCH for 10.0.0.1:1900 timed out\n"
|
||||
with contextlib.redirect_stdout(actual_output):
|
||||
with mock_tcp_and_udp(self.loop, '10.0.0.1', tcp_replies=self.scpd_replies, udp_replies=self.udp_replies):
|
||||
main(
|
||||
|
|
Loading…
Reference in a new issue