com.aliyun.apache.hc.client5.http.impl.async.InternalH2ConnPool Maven / Gradle / Ivy
The newest version!
/*
* ====================================================================
* 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.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* .
*
*/
package com.aliyun.apache.hc.client5.http.impl.async;
import java.net.InetSocketAddress;
import java.util.concurrent.Future;
import com.aliyun.apache.hc.client5.http.config.ConnectionConfig;
import com.aliyun.apache.hc.core5.http.nio.ssl.TlsStrategy;
import com.aliyun.apache.hc.core5.io.CloseMode;
import com.aliyun.apache.hc.core5.io.ModalCloseable;
import com.aliyun.apache.hc.core5.concurrent.CallbackContribution;
import com.aliyun.apache.hc.core5.concurrent.FutureCallback;
import com.aliyun.apache.hc.core5.function.Resolver;
import com.aliyun.apache.hc.core5.http.HttpHost;
import com.aliyun.apache.hc.core5.http2.nio.pool.H2ConnPool;
import com.aliyun.apache.hc.core5.reactor.ConnectionInitiator;
import com.aliyun.apache.hc.core5.reactor.IOSession;
import com.aliyun.apache.hc.core5.util.TimeValue;
import com.aliyun.apache.hc.core5.util.Timeout;
class InternalH2ConnPool implements ModalCloseable {
private final H2ConnPool connPool;
private volatile Resolver connectionConfigResolver;
InternalH2ConnPool(final ConnectionInitiator connectionInitiator,
final Resolver addressResolver,
final TlsStrategy tlsStrategy) {
this.connPool = new H2ConnPool(connectionInitiator, addressResolver, tlsStrategy);
}
@Override
public void close(final CloseMode closeMode) {
connPool.close(closeMode);
}
@Override
public void close() {
connPool.close();
}
private ConnectionConfig resolveConnectionConfig(final HttpHost httpHost) {
final Resolver resolver = this.connectionConfigResolver;
final ConnectionConfig connectionConfig = resolver != null ? resolver.resolve(httpHost) : null;
return connectionConfig != null ? connectionConfig : ConnectionConfig.DEFAULT;
}
public Future getSession(
final HttpHost endpoint,
final Timeout connectTimeout,
final FutureCallback callback) {
final ConnectionConfig connectionConfig = resolveConnectionConfig(endpoint);
return connPool.getSession(
endpoint,
connectTimeout != null ? connectTimeout : connectionConfig.getConnectTimeout(),
new CallbackContribution(callback) {
@Override
public void completed(final IOSession ioSession) {
final Timeout socketTimeout = connectionConfig.getSocketTimeout();
if (socketTimeout != null) {
ioSession.setSocketTimeout(socketTimeout);
}
callback.completed(ioSession);
}
});
}
public void closeIdle(final TimeValue idleTime) {
connPool.closeIdle(idleTime);
}
public void setConnectionConfigResolver(final Resolver connectionConfigResolver) {
this.connectionConfigResolver = connectionConfigResolver;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy