blob: bed37e9ace743a91bd0f1a84b8b55e28ed461bd4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 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;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.epsilon.eol.exceptions.EolRuntimeException;
import org.eclipse.hawk.core.graph.IGraphDatabase;
import org.eclipse.hawk.core.graph.IGraphNode;
import org.eclipse.hawk.core.graph.timeaware.ITimeAwareGraphNode;
import org.eclipse.hawk.epsilon.emc.EOLQueryEngine;
import org.eclipse.hawk.epsilon.emc.EOLQueryEngine.GraphNodeWrapper;
import org.eclipse.hawk.epsilon.emc.pgetters.GraphPropertyGetter;
import org.eclipse.hawk.timeaware.queries.operations.scopes.EndingTimeAwareNodeWrapper;
import org.eclipse.hawk.timeaware.queries.operations.scopes.IScopingTimeAwareGraphNode;
import org.eclipse.hawk.timeaware.queries.operations.scopes.StartingTimeAwareNodeWrapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
class TimeAwareGraphPropertyGetter extends GraphPropertyGetter {
private static final Logger LOGGER = LoggerFactory.getLogger(TimeAwareGraphPropertyGetter.class);
protected TimeAwareGraphPropertyGetter(IGraphDatabase graph, EOLQueryEngine m) {
super(graph, m);
}
@Override
protected Object invokePredefined(String property, IGraphNode node) throws EolRuntimeException {
final Object ret = super.invokePredefined(property, node);
if (ret != null) {
return ret;
}
final ITimeAwareGraphNode taNode = (ITimeAwareGraphNode) node;
try {
switch (property) {
case "versions":
return getVersions(taNode);
case "latest":
return model.wrap(taNode.getLatest());
case "earliest":
return model.wrap(taNode.getEarliest());
case "previous":
case "prev":
final ITimeAwareGraphNode taPrevious = taNode.getPrevious();
if (taPrevious == null) {
return null;
} else {
return model.wrap(taPrevious);
}
case "next":
final ITimeAwareGraphNode taNext = taNode.getNext();
if (taNext == null) {
return null;
} else {
return model.wrap(taNext);
}
case "time":
return taNode.getTime();
case "sinceThen": {
final StartingTimeAwareNodeWrapper scoped = new StartingTimeAwareNodeWrapper(taNode);
return model.wrap(scoped);
}
case "untilThen": {
final EndingTimeAwareNodeWrapper scoped = new EndingTimeAwareNodeWrapper(taNode);
return model.wrap(scoped);
}
case "afterThen": {
ITimeAwareGraphNode nextVersion = taNode.getNext();
if (nextVersion == null) {
return null;
} else {
final StartingTimeAwareNodeWrapper scoped = new StartingTimeAwareNodeWrapper(nextVersion);
return model.wrap(scoped);
}
}
case "beforeThen": {
ITimeAwareGraphNode prevVersion = taNode.getPrevious();
if (prevVersion == null) {
return null;
} else {
final EndingTimeAwareNodeWrapper scoped = new EndingTimeAwareNodeWrapper(prevVersion);
return model.wrap(scoped);
}
}
case "unscoped": {
ITimeAwareGraphNode unscoped;
if (taNode instanceof IScopingTimeAwareGraphNode) {
unscoped = ((IScopingTimeAwareGraphNode)taNode).unscope();
} else {
unscoped = taNode;
}
return model.wrap(unscoped);
}
}
} catch (Exception ex) {
LOGGER.error(ex.getMessage(), ex);
throw new EolRuntimeException(ex.getMessage());
}
return null;
}
private List<GraphNodeWrapper> getVersions(ITimeAwareGraphNode taNode) throws Exception {
final List<GraphNodeWrapper> result = new ArrayList<>();
for (ITimeAwareGraphNode version : taNode.getAllVersions()) {
result.add(model.wrap(version));
}
return result;
}
}