Commit 7492bd69 authored by Wei Shoulin's avatar Wei Shoulin
Browse files

ephem to stream resp

parent 215638ed
......@@ -27,8 +27,7 @@ class CatalogApi(object):
return: csst_dfs_common.models.Result
'''
try:
t_start = time.time()
resp, _ = self.stub.Gaia3Search.with_call(ephem_pb2.EphemSearchRequest(
resps, _ = self.stub.Gaia3Search.with_call(ephem_pb2.EphemSearchRequest(
ra = ra,
dec = dec,
radius = radius,
......@@ -37,17 +36,16 @@ class CatalogApi(object):
obstime = obstime,
limit = limit
),metadata = get_auth_headers())
t_end = time.time()
log.info("gaia3_query used: %.6f's" %(t_end - t_start,))
records = []
totalCount = 0
for resp in resps:
if resp.success:
t_start = time.time()
data = from_proto_model_list(Gaia3Record, resp.records)
t_end = time.time()
# log.info("object deserialization used: %.6f's" %(t_end - t_start,))
return Result.ok_data(data = data).append("totalCount", resp.totalCount)
records.extend(data)
totalCount = resp.totalCount
else:
return Result.error(message = str(resp.error.detail))
return Result.ok_data(data = records).append("totalCount", totalCount)
except grpc.RpcError as e:
return Result.error(message="%s:%s" % (e.code().value, e.details()))
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment