This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Convert the well known resolver to async #8214
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Convert various parts of the codebase to async/await. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,15 @@ | |
import logging | ||
import random | ||
import time | ||
from typing import Callable, Dict, Optional, Tuple | ||
|
||
import attr | ||
|
||
from twisted.internet import defer | ||
from twisted.web.client import RedirectAgent, readBody | ||
from twisted.web.http import stringToDatetime | ||
from twisted.web.http_headers import Headers | ||
from twisted.web.iweb import IResponse | ||
|
||
from synapse.logging.context import make_deferred_yieldable | ||
from synapse.util import Clock, json_decoder | ||
|
@@ -99,15 +101,14 @@ def __init__( | |
self._well_known_agent = RedirectAgent(agent) | ||
self.user_agent = user_agent | ||
|
||
@defer.inlineCallbacks | ||
def get_well_known(self, server_name): | ||
async def get_well_known(self, server_name: bytes) -> WellKnownLookupResult: | ||
"""Attempt to fetch and parse a .well-known file for the given server | ||
|
||
Args: | ||
server_name (bytes): name of the server, from the requested url | ||
server_name: name of the server, from the requested url | ||
|
||
Returns: | ||
Deferred[WellKnownLookupResult]: The result of the lookup | ||
The result of the lookup | ||
""" | ||
try: | ||
prev_result, expiry, ttl = self._well_known_cache.get_with_expiry( | ||
|
@@ -124,7 +125,9 @@ def get_well_known(self, server_name): | |
# requests for the same server in parallel? | ||
try: | ||
with Measure(self._clock, "get_well_known"): | ||
result, cache_period = yield self._fetch_well_known(server_name) | ||
result, cache_period = await self._fetch_well_known( | ||
server_name | ||
) # type: Tuple[Optional[bytes], float] | ||
|
||
except _FetchWellKnownFailure as e: | ||
if prev_result and e.temporary: | ||
|
@@ -153,26 +156,25 @@ def get_well_known(self, server_name): | |
|
||
return WellKnownLookupResult(delegated_server=result) | ||
|
||
@defer.inlineCallbacks | ||
def _fetch_well_known(self, server_name): | ||
async def _fetch_well_known(self, server_name: bytes) -> Tuple[bytes, float]: | ||
"""Actually fetch and parse a .well-known, without checking the cache | ||
|
||
Args: | ||
server_name (bytes): name of the server, from the requested url | ||
server_name: name of the server, from the requested url | ||
|
||
Raises: | ||
_FetchWellKnownFailure if we fail to lookup a result | ||
|
||
Returns: | ||
Deferred[Tuple[bytes,int]]: The lookup result and cache period. | ||
The lookup result and cache period. | ||
""" | ||
|
||
had_valid_well_known = self._had_valid_well_known_cache.get(server_name, False) | ||
|
||
# We do this in two steps to differentiate between possibly transient | ||
# errors (e.g. can't connect to host, 503 response) and more permenant | ||
# errors (such as getting a 404 response). | ||
response, body = yield self._make_well_known_request( | ||
response, body = await self._make_well_known_request( | ||
server_name, retry=had_valid_well_known | ||
) | ||
|
||
|
@@ -215,20 +217,20 @@ def _fetch_well_known(self, server_name): | |
|
||
return result, cache_period | ||
|
||
@defer.inlineCallbacks | ||
def _make_well_known_request(self, server_name, retry): | ||
async def _make_well_known_request( | ||
self, server_name: bytes, retry: bool | ||
) -> Tuple[IResponse, bytes]: | ||
"""Make the well known request. | ||
|
||
This will retry the request if requested and it fails (with unable | ||
to connect or receives a 5xx error). | ||
|
||
Args: | ||
server_name (bytes) | ||
retry (bool): Whether to retry the request if it fails. | ||
server_name: name of the server, from the requested url | ||
retry: Whether to retry the request if it fails. | ||
|
||
Returns: | ||
Deferred[tuple[IResponse, bytes]] Returns the response object and | ||
body. Response may be a non-200 response. | ||
Returns the response object and body. Response may be a non-200 response. | ||
""" | ||
uri = b"https://%s/.well-known/matrix/server" % (server_name,) | ||
uri_str = uri.decode("ascii") | ||
|
@@ -243,12 +245,12 @@ def _make_well_known_request(self, server_name, retry): | |
|
||
logger.info("Fetching %s", uri_str) | ||
try: | ||
response = yield make_deferred_yieldable( | ||
response = await make_deferred_yieldable( | ||
self._well_known_agent.request( | ||
b"GET", uri, headers=Headers(headers) | ||
) | ||
) | ||
body = yield make_deferred_yieldable(readBody(response)) | ||
body = await make_deferred_yieldable(readBody(response)) | ||
|
||
if 500 <= response.code < 600: | ||
raise Exception("Non-200 response %s" % (response.code,)) | ||
|
@@ -265,21 +267,24 @@ def _make_well_known_request(self, server_name, retry): | |
logger.info("Error fetching %s: %s. Retrying", uri_str, e) | ||
|
||
# Sleep briefly in the hopes that they come back up | ||
yield self._clock.sleep(0.5) | ||
await self._clock.sleep(0.5) | ||
|
||
|
||
def _cache_period_from_headers(headers, time_now=time.time): | ||
def _cache_period_from_headers( | ||
headers: Headers, time_now: Callable[[], float] = time.time | ||
) -> Optional[float]: | ||
cache_controls = _parse_cache_control(headers) | ||
|
||
if b"no-store" in cache_controls: | ||
return 0 | ||
|
||
if b"max-age" in cache_controls: | ||
try: | ||
max_age = int(cache_controls[b"max-age"]) | ||
return max_age | ||
except ValueError: | ||
pass | ||
max_age = cache_controls[b"max-age"] | ||
if max_age: | ||
Comment on lines
+282
to
+283
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This extra check was to make mypy happy that we weren't doing |
||
try: | ||
return int(max_age) | ||
except ValueError: | ||
pass | ||
|
||
expires = headers.getRawHeaders(b"expires") | ||
if expires is not None: | ||
|
@@ -295,7 +300,7 @@ def _cache_period_from_headers(headers, time_now=time.time): | |
return None | ||
|
||
|
||
def _parse_cache_control(headers): | ||
def _parse_cache_control(headers: Headers) -> Dict[bytes, Optional[bytes]]: | ||
cache_controls = {} | ||
for hdr in headers.getRawHeaders(b"cache-control", []): | ||
for directive in hdr.split(b","): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How come this is
Optional[bytes]
, whereas_fetch_well_known
supposedly returnsbytes
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is because
result
can be set toNone
below, so without it you get:This isn't saying the type of the return value of
_fetch_well_known
, but the types of the variablesresult
andcache_period
.