blob: 62e7ebdc2d64542259886a83e903c7bab02739c6 [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.StartingTimeAwareNodeWrapper;
/**
* Variant of <code>since</code> which uses a predefined derived Boolean attribute.
*/
public class SinceAnnotatedOperation extends AbstractAnnotatedOperation {
public SinceAnnotatedOperation(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;
}
return new StartingTimeAwareNodeWrapper(taNode.travelInTime(firstVersion));
}
}