use of com.linkedin.restli.common.TypeSpec in project rest.li by linkedin.
the class ScatterGatherBuilder method buildRequests.
@SuppressWarnings("deprecation")
public <K> KVScatterGatherResult<K, UpdateStatus> buildRequests(BatchUpdateRequest<K, T> request, RequestContext requestContext) throws ServiceUnavailableException {
Set<Object> idObjects = request.getObjectIds();
Collection<K> ids = new HashSet<K>(idObjects.size());
for (Object o : idObjects) {
@SuppressWarnings("unchecked") K k = (K) o;
ids.add(k);
}
MapKeyResult<URI, K> mapKeyResult = mapKeys(request, ids);
@SuppressWarnings("unchecked") TypeSpec<T> valueType = (TypeSpec<T>) request.getResourceProperties().getValueType();
Map<URI, Map<K, T>> batches = keyMapToInput(mapKeyResult, request);
Collection<KVRequestInfo<K, UpdateStatus>> scatterGatherRequests = new ArrayList<KVRequestInfo<K, UpdateStatus>>(batches.size());
for (Map.Entry<URI, Map<K, T>> batch : batches.entrySet()) {
BatchUpdateRequestBuilder<K, T> builder = new BatchUpdateRequestBuilder<K, T>(request.getBaseUriTemplate(), valueType.getType(), request.getResourceSpec(), request.getRequestOptions());
builder.inputs(batch.getValue());
for (Map.Entry<String, Object> param : request.getQueryParamsObjects().entrySet()) {
if (!param.getKey().equals(RestConstants.QUERY_BATCH_IDS_PARAM)) {
builder.setParam(param.getKey(), param.getValue());
}
}
for (Map.Entry<String, String> header : request.getHeaders().entrySet()) {
builder.setHeader(header.getKey(), header.getValue());
}
RequestContext context = requestContext.clone();
KeyMapper.TargetHostHints.setRequestContextTargetHost(context, batch.getKey());
scatterGatherRequests.add(new KVRequestInfo<K, UpdateStatus>(builder.build(), context));
}
return new KVScatterGatherResult<K, UpdateStatus>(scatterGatherRequests, mapKeyResult.getUnmappedKeys());
}
Aggregations