org.eobjects.analyzer.cluster.LazyRefAnalysisResultFuture Maven / Gradle / Ivy
/**
* AnalyzerBeans
* Copyright (C) 2014 Neopost - Customer Information Management
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program 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 distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.eobjects.analyzer.cluster;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.eobjects.analyzer.job.ComponentJob;
import org.eobjects.analyzer.job.runner.AnalysisJobFailedException;
import org.eobjects.analyzer.job.runner.AnalysisResultFuture;
import org.eobjects.analyzer.job.runner.JobStatus;
import org.eobjects.analyzer.result.AnalysisResult;
import org.eobjects.analyzer.result.AnalyzerResult;
import org.apache.metamodel.util.LazyRef;
/**
* An {@link AnalysisResultFuture} implementation which uses a {@link LazyRef}
* for an {@link AnalysisResult} as the source of the result
*/
public class LazyRefAnalysisResultFuture implements AnalysisResultFuture {
private final LazyRef _resultRef;
private final List _errors;
public LazyRefAnalysisResultFuture(LazyRef resultRef, List errors) {
_resultRef = resultRef;
_errors = errors;
}
@Override
public boolean isErrornous() {
return getStatus() == JobStatus.ERRORNOUS;
}
@Override
public boolean isCancelled() {
return false;
}
@Override
public Date getCreationDate() {
AnalysisResult analysisResult = _resultRef.get();
if (analysisResult == null) {
return null;
}
return analysisResult.getCreationDate();
}
@Override
public boolean isDone() {
return _resultRef.isFetched();
}
@Override
public void await() {
_resultRef.get();
}
@Override
public void cancel() {
throw new UnsupportedOperationException("Cancel not supported for slave jobs");
}
@Override
public void await(long timeout, TimeUnit timeUnit) {
final long offsetMillis = System.currentTimeMillis();
final long millisToWait = timeUnit.convert(timeout, TimeUnit.MILLISECONDS);
final long sleepInterval = (millisToWait % 1000 == 0 ? 1000 : 500);
while (!isDone()) {
try {
Thread.sleep(sleepInterval);
} catch (InterruptedException e) {
// do nothing
}
final long currentMillis = System.currentTimeMillis();
final long duration = currentMillis - offsetMillis;
if (duration >= millisToWait) {
return;
}
}
}
@Override
public boolean isSuccessful() {
return getStatus() == JobStatus.SUCCESSFUL;
}
@Override
public JobStatus getStatus() {
if (!_resultRef.isFetched()) {
return JobStatus.NOT_FINISHED;
}
if (_errors.isEmpty()) {
return JobStatus.SUCCESSFUL;
}
return JobStatus.ERRORNOUS;
}
@Override
public List getResults() throws AnalysisJobFailedException {
AnalysisResult analysisResult = _resultRef.get();
if (analysisResult == null) {
return null;
}
return analysisResult.getResults();
}
@Override
public AnalyzerResult getResult(ComponentJob componentJob) throws AnalysisJobFailedException {
AnalysisResult analysisResult = _resultRef.get();
if (analysisResult == null) {
return null;
}
return _resultRef.get().getResult(componentJob);
}
@Override
public Map getResultMap() throws AnalysisJobFailedException {
AnalysisResult analysisResult = _resultRef.get();
if (analysisResult == null) {
return null;
}
return _resultRef.get().getResultMap();
}
@Override
public List getErrors() {
return Collections.unmodifiableList(_errors);
}
@Override
public List extends R> getResults(Class resultClass) {
return _resultRef.get().getResults(resultClass);
}
}