Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: streaming for sync REST API calls #2204

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def _get_http_options():
return http_options
{% endmacro %}

{% macro response_method(body_spec, is_async=False) %}
{% macro response_method(body_spec, is_async=False, is_streaming_method=False) %}
{% set async_prefix = "async " if is_async else "" %}
{% set await_prefix = "await " if is_async else "" %}
@staticmethod
Expand All @@ -177,6 +177,14 @@ def _get_http_options():
{% if body_spec %}
data=body,
{% endif %}
{% if not is_async and is_streaming_method %}
{# NOTE: The underlying `requests` library used for making a sync request
# requires us to set `stream=True` to avoid loading the entire response
# into memory at once. For an async request, given its nature where it
# reads data chunk by chunk, this is not required.
#}
stream=True,
{% endif %}
)
return response
{% endmacro %}
Expand Down Expand Up @@ -400,7 +408,7 @@ class _{{ name }}(_Base{{ service.name }}RestTransport._Base{{name}}, {{ async_m
return hash("{{ async_method_name_prefix }}{{ service.name }}RestTransport.{{ name }}")

{% set body_spec = api.mixin_http_options["{}".format(name)][0].body %}
{{ response_method(body_spec) | indent(4) }}
{{ response_method(body_spec, is_async=is_async, is_streaming_method=None) | indent(4) }}

{{ async_prefix }}def __call__(self,
request: {{ sig.request_type }}, *,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class {{service.name}}RestTransport(_Base{{ service.name }}RestTransport):
{% if method.http_options and not method.client_streaming %}

{% set body_spec = method.http_options[0].body %}
{{ shared_macros.response_method(body_spec)|indent(8) }}
{{ shared_macros.response_method(body_spec, is_async=False, is_streaming_method=method.server_streaming)|indent(8) }}
{% endif %}{# method.http_options and not method.client_streaming #}

def __call__(self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class Async{{service.name}}RestTransport(_Base{{ service.name }}RestTransport):
{# TODO(https://github.com/googleapis/gapic-generator-python/issues/2169): Implement client streaming method. #}
{% if method.http_options and not method.client_streaming %}
{% set body_spec = method.http_options[0].body %}
{{ shared_macros.response_method(body_spec, is_async=True)|indent(8) }}
{{ shared_macros.response_method(body_spec, is_async=True, is_streaming_method=None)|indent(8) }}

{% endif %}{# method.http_options and not method.client_streaming and not method.paged_result_field #}
async def __call__(self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ def __hash__(self):
return hash("AsyncCloudRedisRestTransport.GetLocation")

@staticmethod
def _get_response(
async def _get_response(
host,
metadata,
query_params,
Expand All @@ -1683,7 +1683,7 @@ def _get_response(
method = transcoded_request['method']
headers = dict(metadata)
headers['Content-Type'] = 'application/json'
response = getattr(session, method)(
response = await getattr(session, method)(
"{host}{uri}".format(host=host, uri=uri),
timeout=timeout,
headers=headers,
Expand Down Expand Up @@ -1747,7 +1747,7 @@ def __hash__(self):
return hash("AsyncCloudRedisRestTransport.ListLocations")

@staticmethod
def _get_response(
async def _get_response(
host,
metadata,
query_params,
Expand All @@ -1760,7 +1760,7 @@ def _get_response(
method = transcoded_request['method']
headers = dict(metadata)
headers['Content-Type'] = 'application/json'
response = getattr(session, method)(
response = await getattr(session, method)(
"{host}{uri}".format(host=host, uri=uri),
timeout=timeout,
headers=headers,
Expand Down Expand Up @@ -1824,7 +1824,7 @@ def __hash__(self):
return hash("AsyncCloudRedisRestTransport.CancelOperation")

@staticmethod
def _get_response(
async def _get_response(
host,
metadata,
query_params,
Expand All @@ -1837,7 +1837,7 @@ def _get_response(
method = transcoded_request['method']
headers = dict(metadata)
headers['Content-Type'] = 'application/json'
response = getattr(session, method)(
response = await getattr(session, method)(
"{host}{uri}".format(host=host, uri=uri),
timeout=timeout,
headers=headers,
Expand Down Expand Up @@ -1894,7 +1894,7 @@ def __hash__(self):
return hash("AsyncCloudRedisRestTransport.DeleteOperation")

@staticmethod
def _get_response(
async def _get_response(
host,
metadata,
query_params,
Expand All @@ -1907,7 +1907,7 @@ def _get_response(
method = transcoded_request['method']
headers = dict(metadata)
headers['Content-Type'] = 'application/json'
response = getattr(session, method)(
response = await getattr(session, method)(
"{host}{uri}".format(host=host, uri=uri),
timeout=timeout,
headers=headers,
Expand Down Expand Up @@ -1964,7 +1964,7 @@ def __hash__(self):
return hash("AsyncCloudRedisRestTransport.GetOperation")

@staticmethod
def _get_response(
async def _get_response(
host,
metadata,
query_params,
Expand All @@ -1977,7 +1977,7 @@ def _get_response(
method = transcoded_request['method']
headers = dict(metadata)
headers['Content-Type'] = 'application/json'
response = getattr(session, method)(
response = await getattr(session, method)(
"{host}{uri}".format(host=host, uri=uri),
timeout=timeout,
headers=headers,
Expand Down Expand Up @@ -2041,7 +2041,7 @@ def __hash__(self):
return hash("AsyncCloudRedisRestTransport.ListOperations")

@staticmethod
def _get_response(
async def _get_response(
host,
metadata,
query_params,
Expand All @@ -2054,7 +2054,7 @@ def _get_response(
method = transcoded_request['method']
headers = dict(metadata)
headers['Content-Type'] = 'application/json'
response = getattr(session, method)(
response = await getattr(session, method)(
"{host}{uri}".format(host=host, uri=uri),
timeout=timeout,
headers=headers,
Expand Down