org.frameworkset.spi.remote.http.HttpRequestRetryHandlerHelper Maven / Gradle / Ivy
Show all versions of bboss-http Show documentation
package org.frameworkset.spi.remote.http;
/**
* Copyright 2008 biaoping.yin
*
* Licensed 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.
*/
import org.apache.http.protocol.HttpContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
/**
*
Description:
*
* Copyright (c) 2018
* @Date 2018/12/18 22:10
* @author biaoping.yin
* @version 1.0
*/
public class HttpRequestRetryHandlerHelper extends org.apache.http.impl.client.DefaultHttpRequestRetryHandler {
private static Logger logger = LoggerFactory.getLogger(DefaultHttpRequestRetryHandler.class);
private CustomHttpRequestRetryHandler httpRequestRetryHandler;
private ClientConfiguration configuration ;
public HttpRequestRetryHandlerHelper(CustomHttpRequestRetryHandler httpRequestRetryHandler,ClientConfiguration configuration){
super(configuration.getRetryTime(),false);
this.httpRequestRetryHandler = httpRequestRetryHandler;
this.configuration = configuration;
}
@Override
public boolean retryRequest(IOException exception, int executionCount, HttpContext context) {
if(httpRequestRetryHandler != null){
if (executionCount > configuration.getRetryTime()) {
// logger.warn("Maximum tries[" + configuration.getRetryTime() + "] reached for client http pool ");
return false;
}
if(httpRequestRetryHandler.retryRequest(exception,executionCount,context,configuration)) {
if (configuration.getRetryInterval() > 0) {
try {
Thread.sleep(configuration.getRetryInterval());
} catch (InterruptedException e1) {
return false;
}
}
// if(logger.isWarnEnabled())
// logger.warn(new StringBuilder().append(exception.getClass().getName()).append(" on ")
// .append(executionCount).append(" call").toString());
return true;
}
return false;
}
else if(super.retryRequest(exception,executionCount,context)){
if (configuration.getRetryInterval() > 0) {
try {
Thread.sleep(configuration.getRetryInterval());
} catch (InterruptedException e1) {
return false;
}
}
return true;
}
return false;
/**
if (executionCount > configuration.getRetryTime()) {
// logger.warn("Maximum tries[" + configuration.getRetryTime() + "] reached for client http pool ");
return false;
}
if(httpRequestRetryHandler.retryRequest(exception,executionCount,context,configuration)) {
if (configuration.getRetryInterval() > 0) {
try {
Thread.sleep(configuration.getRetryInterval());
} catch (InterruptedException e1) {
return false;
}
}
// if(logger.isWarnEnabled())
// logger.warn(new StringBuilder().append(exception.getClass().getName()).append(" on ")
// .append(executionCount).append(" call").toString());
return true;
}
return false;
*/
// return false;
}
}