blob: 71b8966e513bc53b1babb4d08ff79ca9af4ee8c9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Aston University.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 3.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-3.0
*
* Contributors:
* Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.hawk.timeaware.queries.operations.scopes.annotations;
import java.util.function.Supplier;
import org.eclipse.hawk.core.graph.timeaware.ITimeAwareGraphNode;
import org.eclipse.hawk.core.graph.timeaware.ITimeAwareGraphNodeIndex;
import org.eclipse.hawk.timeaware.queries.TimeAwareEOLQueryEngine;
import org.eclipse.hawk.timeaware.queries.operations.scopes.EndingTimeAwareNodeWrapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Variant of <code>before</code> which uses a predefined derived Boolean attribute.
*/
public class BeforeAnnotatedOperation extends AbstractAnnotatedOperation {
private static final Logger LOGGER = LoggerFactory.getLogger(BeforeAnnotatedOperation.class);
public BeforeAnnotatedOperation(Supplier<TimeAwareEOLQueryEngine> containerModelSupplier) {
super(containerModelSupplier);
}
@Override
protected ITimeAwareGraphNode useAnnotations(ITimeAwareGraphNodeIndex index, ITimeAwareGraphNode taNode, String derivedAttrName) {
final Long firstVersion = index.getEarliestVersionSince(taNode, derivedAttrName, true);
if (firstVersion == null) {
return null;
}
try {
final long prevInstant = taNode.travelInTime(firstVersion).getPreviousInstant();
if (prevInstant != ITimeAwareGraphNode.NO_SUCH_INSTANT) {
return new EndingTimeAwareNodeWrapper(taNode, prevInstant);
}
} catch (Exception e) {
LOGGER.error("Could not fetch previous instant", e);
}
return null;
}
}