org.apache.gobblin.r2.R2Client Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.gobblin.r2;
import java.io.IOException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import com.linkedin.common.callback.Callbacks;
import com.linkedin.common.util.None;
import com.linkedin.r2.message.rest.RestException;
import com.linkedin.r2.message.rest.RestRequest;
import com.linkedin.r2.message.rest.RestResponse;
import com.linkedin.r2.transport.common.Client;
import com.typesafe.config.Config;
import lombok.extern.slf4j.Slf4j;
import org.apache.gobblin.async.Callback;
import org.apache.gobblin.broker.iface.SharedResourcesBroker;
import org.apache.gobblin.http.ThrottledHttpClient;
import org.apache.gobblin.utils.HttpUtils;
@Slf4j
public class R2Client extends ThrottledHttpClient {
private final Client client;
public R2Client(Client client, Config config, SharedResourcesBroker broker) {
super (broker, HttpUtils.createR2ClientLimiterKey(config));
this.client = client;
}
@Override
public RestResponse sendRequestImpl(RestRequest request)
throws IOException {
Future responseFuture = client.restRequest(request);
RestResponse response;
try {
response = responseFuture.get();
} catch (InterruptedException | ExecutionException e) {
// The service may choose to throw an exception as a way to report error
Throwable t = e.getCause();
if (t != null && t instanceof RestException) {
response = ((RestException) t).getResponse();
} else {
throw new IOException(e);
}
}
return response;
}
@Override
public void sendAsyncRequestImpl(RestRequest request, Callback callback)
throws IOException {
log.debug ("Request URI : {} ", request.getURI());
client.restRequest(request, new com.linkedin.common.callback.Callback() {
@Override
public void onError(Throwable e) {
callback.onFailure(e);
}
@Override
public void onSuccess(RestResponse result) {
callback.onSuccess(result);
}
});
}
@Override
public void close()
throws IOException {
client.shutdown(Callbacks.empty());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy