blob: b10cd7fa0eb4dab368aaf01ccc5cf40b93f2388c [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.emf.type.core.internal.impl;
import org.eclipse.core.expressions.EvaluationContext;
import org.eclipse.core.expressions.EvaluationResult;
import org.eclipse.core.expressions.Expression;
import org.eclipse.core.expressions.ExpressionConverter;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.common.core.util.Log;
import org.eclipse.gmf.runtime.emf.type.core.IElementMatcher;
import org.eclipse.gmf.runtime.emf.type.core.internal.EMFTypePlugin;
import org.eclipse.gmf.runtime.emf.type.core.internal.EMFTypePluginStatusCodes;
import org.eclipse.gmf.runtime.emf.type.core.internal.l10n.EMFTypeCoreMessages;
/**
* Element matcher that matches model elements using an XML expression.
*
* @author ldamus
*/
public class XMLExpressionMatcher
implements IElementMatcher {
/**
* Variable representing the container of the element being tested.
*/
public static final String ECONTAINER_VARIABLE = "eContainer"; //$NON-NLS-1$
/**
* The element ID in which this expression is contributed.
*/
private final String id;
/**
* The XML expression.
*/
private final Expression xmlExpression;
/**
* Constructs a new XML expression matcher.
*
* @param config
* the expression configuration element
*/
public XMLExpressionMatcher(IConfigurationElement config, String id)
throws CoreException {
this.id = id;
try {
xmlExpression = ExpressionConverter.getDefault().perform(config);
} catch (CoreException e) {
throw EMFTypePluginStatusCodes
.getInitException(
id,
EMFTypeCoreMessages.element_reason_invalid_enablement_expression_WARN_,
e);
}
}
/*
* (non-Javadoc)
*
* @see org.eclipse.gmf.runtime.emf.core.type.IElementMatcher#matches(org.eclipse.emf.ecore.EObject)
*/
public boolean matches(EObject eObject) {
try {
EvaluationContext evaluationContext = new EvaluationContext(null, eObject);
EObject container = eObject.eContainer();
if (container != null) {
evaluationContext.addVariable(ECONTAINER_VARIABLE, container);
}
EvaluationResult result = xmlExpression.evaluate(evaluationContext);
if (result == EvaluationResult.TRUE) {
return true;
}
} catch (CoreException e) {
Log
.error(
EMFTypePlugin.getPlugin(),
EMFTypePluginStatusCodes.EXPRESSION_EVALUATION_FAILURE,
EMFTypeCoreMessages
.bind(
EMFTypeCoreMessages.expression_evaluation_failure_ERROR_,
id), e);
}
return false;
}
}