blob: dbfd1205491e5bd4ab37436ccb08f9cffe3f6a44 [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.List;
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.WhenNodeWrapper;
import org.eclipse.hawk.timeaware.queries.operations.scopes.predicates.WhenOperation;
/**
* Variant of {@link WhenOperation} which uses a predefined derived Boolean attribute.
*/
public class WhenAnnotatedOperation extends AbstractAnnotatedOperation {
public WhenAnnotatedOperation(Supplier<TimeAwareEOLQueryEngine> containerModelSupplier) {
super(containerModelSupplier);
}
@Override
protected ITimeAwareGraphNode useAnnotations(ITimeAwareGraphNodeIndex index, ITimeAwareGraphNode taNode, String derivedAttrName) {
final List<Long> versions = index.getVersions(taNode, derivedAttrName, true, taNode.getTime());
if (versions.isEmpty()) {
return null;
}
final Long earliestTimepoint = versions.get(versions.size() - 1);
return new WhenNodeWrapper(taNode.travelInTime(earliestTimepoint), versions);
}
}