blob: 514b904863078a2c30e4ddc8d3e28f0c1c1ffbb9 [file] [log] [blame]
/*
* ====================================================================
* 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
* <http://www.apache.org/>.
*
*/
package org.apache.hc.client5.http.impl.cache;
import java.io.IOException;
import java.util.concurrent.ScheduledExecutorService;
import org.apache.hc.client5.http.schedule.SchedulingStrategy;
import org.apache.hc.core5.http.ClassicHttpResponse;
import org.apache.hc.core5.http.HttpException;
import org.apache.hc.core5.http.HttpStatus;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Class used for asynchronous revalidations to be used when
* the {@code stale-while-revalidate} directive is present
*/
class DefaultCacheRevalidator extends CacheRevalidatorBase {
private static final Logger LOG = LoggerFactory.getLogger(DefaultCacheRevalidator.class);
interface RevalidationCall {
ClassicHttpResponse execute() throws IOException, HttpException;
}
/**
* Create DefaultCacheRevalidator which will make ache revalidation requests
* using the supplied {@link SchedulingStrategy} and {@link ScheduledExecutor}.
*/
public DefaultCacheRevalidator(
final CacheRevalidatorBase.ScheduledExecutor scheduledExecutor,
final SchedulingStrategy schedulingStrategy) {
super(scheduledExecutor, schedulingStrategy);
}
/**
* Create CacheValidator which will make ache revalidation requests
* using the supplied {@link SchedulingStrategy} and {@link ScheduledExecutorService}.
*/
public DefaultCacheRevalidator(
final ScheduledExecutorService scheduledThreadPoolExecutor,
final SchedulingStrategy schedulingStrategy) {
this(wrap(scheduledThreadPoolExecutor), schedulingStrategy);
}
/**
* Schedules an asynchronous re-validation
*/
public void revalidateCacheEntry(
final String cacheKey,
final RevalidationCall call) {
scheduleRevalidation(cacheKey, new Runnable() {
@Override
public void run() {
try (ClassicHttpResponse httpResponse = call.execute()) {
if (httpResponse.getCode() < HttpStatus.SC_SERVER_ERROR && !isStale(httpResponse)) {
jobSuccessful(cacheKey);
} else {
jobFailed(cacheKey);
}
} catch (final IOException ex) {
jobFailed(cacheKey);
LOG.debug("Asynchronous revalidation failed due to I/O error", ex);
} catch (final HttpException ex) {
jobFailed(cacheKey);
LOG.error("HTTP protocol exception during asynchronous revalidation", ex);
} catch (final RuntimeException ex) {
jobFailed(cacheKey);
LOG.error("Unexpected runtime exception thrown during asynchronous revalidation", ex);
}
}
});
}
}