eu.europa.esig.dss.tsl.runnable.PivotProcessing Maven / Gradle / Ivy
/**
* DSS - Digital Signature Services
* Copyright (C) 2015 European Commission, provided under the CEF programme
*
* This file is part of the "DSS - Digital Signature Services" project.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package eu.europa.esig.dss.tsl.runnable;
import eu.europa.esig.dss.model.DSSDocument;
import eu.europa.esig.dss.model.tsl.OtherTSLPointer;
import eu.europa.esig.dss.spi.client.http.DSSFileLoader;
import eu.europa.esig.dss.tsl.cache.access.CacheAccessByKey;
import eu.europa.esig.dss.tsl.dto.ParsingCacheDTO;
import eu.europa.esig.dss.tsl.parsing.AbstractParsingTask;
import eu.europa.esig.dss.tsl.parsing.LOTLParsingTask;
import eu.europa.esig.dss.tsl.parsing.ParsingUtils;
import eu.europa.esig.dss.tsl.source.LOTLSource;
import eu.europa.esig.dss.utils.Utils;
import java.util.List;
import java.util.concurrent.Callable;
/**
* Processes a pivot analysis
*/
public class PivotProcessing extends AbstractAnalysis implements Callable {
/** The cache access of the LOTL */
private final CacheAccessByKey lotlCacheAccess;
/** List of other pivots, to be updated in case of current pivot update */
private final List preceedingPivotCacheAccessByKeyList;
/**
* Default constructor
*
* @param pivotSource {@link LOTLSource} pivot source
* @param pivotCacheAccess {@link CacheAccessByKey} cache access of the current Pivot to process
* @param lotlCacheAccess {@link CacheAccessByKey} cache access of the corresponding LOTL
* @param preceedingPivotCacheAccessByKeyList a list of {@link CacheAccessByKey} to access other pivots
* @param dssFileLoader {@link DSSFileLoader}
*/
public PivotProcessing(final LOTLSource pivotSource, final CacheAccessByKey pivotCacheAccess,
final CacheAccessByKey lotlCacheAccess, List preceedingPivotCacheAccessByKeyList,
final DSSFileLoader dssFileLoader) {
super(pivotSource, pivotCacheAccess, dssFileLoader);
this.lotlCacheAccess = lotlCacheAccess;
this.preceedingPivotCacheAccessByKeyList = preceedingPivotCacheAccessByKeyList;
}
@Override
public PivotProcessingResult call() throws Exception {
DSSDocument pivot = download(getSource().getUrl());
if (pivot != null) {
parsing(pivot);
ParsingCacheDTO parsingResult = getCacheAccessByKey().getParsingReadOnlyResult();
OtherTSLPointer xmlLotlPointer = ParsingUtils.getXMLLOTLPointer(parsingResult);
if (xmlLotlPointer != null) {
return new PivotProcessingResult(pivot, ParsingUtils.getLOTLAnnouncedCertificateSource(xmlLotlPointer), xmlLotlPointer.getTSLLocation());
}
}
return null;
}
@Override
protected AbstractParsingTask> getParsingTask(DSSDocument document) {
return new LOTLParsingTask(document, (LOTLSource) getSource());
}
@Override
protected void expireCache() {
super.expireCache();
lotlCacheAccess.expireValidation(); // ensure LOTL will be updated in case of pivot refresh
// expire Pivots before the current
if (Utils.isCollectionNotEmpty(preceedingPivotCacheAccessByKeyList)) {
for (CacheAccessByKey pivotCacheAccessByKey : preceedingPivotCacheAccessByKeyList) {
pivotCacheAccessByKey.expireValidation();
}
}
}
}