com.fasterxml.clustermate.client.jdk.JdkHttpContentHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-client-jdk Show documentation
Show all versions of clustermate-client-jdk Show documentation
ClusterMate NetworkClient implementation built on default
JDK-provided HTTP client (HTTPUrlConnection)
package com.fasterxml.clustermate.client.jdk;
import java.net.HttpURLConnection;
import java.net.URL;
import com.fasterxml.clustermate.api.ClusterMateConstants;
import com.fasterxml.clustermate.api.EntryKey;
import com.fasterxml.clustermate.client.*;
import com.fasterxml.clustermate.client.call.CallConfig;
import com.fasterxml.clustermate.client.call.ContentHeader;
import com.fasterxml.clustermate.client.call.ReadCallParameters;
import com.fasterxml.clustermate.std.JdkHttpClientPathBuilder;
import com.fasterxml.storemate.shared.util.IOUtil;
/**
* Helper object for making HEAD requests.
*/
public class JdkHttpContentHeader>
extends BaseJdkHttpAccessor
implements ContentHeader
{
protected final ClusterServerNode _server;
public JdkHttpContentHeader(StoreClientConfig storeConfig, P endpoint,
ClusterServerNode server)
{
super(storeConfig, endpoint);
_server = server;
}
/*
/**********************************************************************
/* Call implementation
/**********************************************************************
*/
@Override
public JdkHttpHeadCallResult tryHead(CallConfig config, ReadCallParameters params,
long endOfTime, K contentId)
{
// first: if we can't spend at least 10 msecs, let's give up:
final long startTime = System.currentTimeMillis();
long timeoutMsecs = Math.min(endOfTime - startTime, config.getGetCallTimeoutMsecs());
if (timeoutMsecs < config.getMinimumTimeoutMsecs()) {
return new JdkHttpHeadCallResult(CallFailure.timeout(_server, startTime, startTime));
}
try {
JdkHttpClientPathBuilder path = _server.rootPath();
path = _pathFinder.appendPath(path, _endpoint);
path = _keyConverter.appendToPath(path, contentId);
if (params != null) {
path = params.appendToPath(path, contentId);
}
URL url = path.asURL();
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
int statusCode = sendRequest("HEAD", conn, path, timeoutMsecs);
// one thing first: handle standard headers, if any?
handleHeaders(_server, conn, startTime);
// call ok?
if (!IOUtil.isHTTPSuccess(statusCode)) {
// if not, why not? Any well-known problems? (besides timeout that was handled earlier)
return new JdkHttpHeadCallResult(CallFailure.general(_server, statusCode, startTime,
System.currentTimeMillis(), "N/A"));
}
try {
return new JdkHttpHeadCallResult(conn, ClusterMateConstants.HTTP_STATUS_OK,
parseLongHeader(conn, ClusterMateConstants.HTTP_HEADER_CONTENT_LENGTH));
} catch (Exception e) {
return new JdkHttpHeadCallResult(CallFailure.formatException(_server,
statusCode, startTime, System.currentTimeMillis(), e.getMessage()));
}
} catch (Exception e) {
return new JdkHttpHeadCallResult(CallFailure.clientInternal(_server, startTime, System.currentTimeMillis(), e));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy