org.asynchttpclient.resolver.RequestHostnameResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-http-client Show documentation
Show all versions of async-http-client Show documentation
The Async Http Client (AHC) classes.
/*
* Copyright (c) 2015 AsyncHttpClient Project. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
package org.asynchttpclient.resolver;
import io.netty.resolver.NameResolver;
import io.netty.util.concurrent.Future;
import io.netty.util.concurrent.ImmediateEventExecutor;
import io.netty.util.concurrent.Promise;
import org.asynchttpclient.AsyncHandler;
import org.asynchttpclient.netty.SimpleFutureListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.List;
public enum RequestHostnameResolver {
INSTANCE;
private static final Logger LOGGER = LoggerFactory.getLogger(RequestHostnameResolver.class);
public Future> resolve(NameResolver nameResolver, InetSocketAddress unresolvedAddress, AsyncHandler> asyncHandler) {
final String hostname = unresolvedAddress.getHostName();
final int port = unresolvedAddress.getPort();
final Promise> promise = ImmediateEventExecutor.INSTANCE.newPromise();
try {
asyncHandler.onHostnameResolutionAttempt(hostname);
} catch (Exception e) {
LOGGER.error("onHostnameResolutionAttempt crashed", e);
promise.tryFailure(e);
return promise;
}
final Future> whenResolved = nameResolver.resolveAll(hostname);
whenResolved.addListener(new SimpleFutureListener>() {
@Override
protected void onSuccess(List value) {
ArrayList socketAddresses = new ArrayList<>(value.size());
for (InetAddress a : value) {
socketAddresses.add(new InetSocketAddress(a, port));
}
try {
asyncHandler.onHostnameResolutionSuccess(hostname, socketAddresses);
} catch (Exception e) {
LOGGER.error("onHostnameResolutionSuccess crashed", e);
promise.tryFailure(e);
return;
}
promise.trySuccess(socketAddresses);
}
@Override
protected void onFailure(Throwable t) {
try {
asyncHandler.onHostnameResolutionFailure(hostname, t);
} catch (Exception e) {
LOGGER.error("onHostnameResolutionFailure crashed", e);
promise.tryFailure(e);
return;
}
promise.tryFailure(t);
}
});
return promise;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy