Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7fbbc70c87d77209cf884f2e6869814931702950 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
 * Copyright (c) 2012 Mia-Software.
 *
 * 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:
 *  	Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
 * 		Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
 */
package org.eclipse.papyrus.emf.facet.query.ocl.core.internal.evaluator;

import java.util.List;

import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.ocl.ParserException;
import org.eclipse.ocl.expressions.OCLExpression;
import org.eclipse.papyrus.emf.facet.efacet.core.IFacetManager;
import org.eclipse.papyrus.emf.facet.efacet.core.exception.DerivedTypedElementException;
import org.eclipse.papyrus.emf.facet.efacet.core.query.IQueryImplementation;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.DerivedTypedElement;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.ParameterValue;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.extensible.Query;
import org.eclipse.papyrus.emf.facet.query.ocl.core.util.OclQueryUtil;
import org.eclipse.papyrus.emf.facet.query.ocl.metamodel.oclquery.OclQuery;

/**
 * Concrete implementation of {@link IQueryImplementation} for the OCL query.
 */
public class OclQueryImplementation implements IQueryImplementation {

	protected OCLExpression<EClassifier> oclExpression;

	@Override
	public void setValue(final Query query, final DerivedTypedElement feature, final EObject source, final List<ParameterValue> parameterValues, final Object newValue) throws DerivedTypedElementException {
		throw new UnsupportedOperationException("not implemented yet"); //$NON-NLS-1$
	}

	@Override
	public boolean isCheckResultType() {
		return true;
	}

	@Override
	public Object getValue(final Query query, final DerivedTypedElement feature, final EObject source, final List<ParameterValue> parameterValues, final IFacetManager facetManager) throws DerivedTypedElementException {
		if (!(query instanceof OclQuery)) {
			throw new IllegalArgumentException("The given DerivedTypedElement does not have a OclQuery"); //$NON-NLS-1$
		}
		try {
			return executeOclQuery(source, parameterValues, (OclQuery) query);
		} catch (Exception e) {
			throw new DerivedTypedElementException(e);
		}
	}

	protected Object executeOclQuery(final EObject source, final List<ParameterValue> parameterValues, final OclQuery oclQuery) throws ParserException {
		Object evaluateQuery = null;

		final EClassifier context = oclQuery.getContext();

		if (oclExpression == null) {
			String stringExpression = oclQuery.getOclExpression();

			// We replace all the occurrence of the parameters in the query by the
			// corresponding value.
			// if (stringExpression != null) {
			// if (parameterValues != null) {
			// for (final ParameterValue paramValue : parameterValues) {
			// final String tmp = stringExpression;
			// final String name = paramValue.getParameter().getName();
			// final Object value = paramValue.getValue();
			// String string;
			// if (value == null) {
			//						string = "null"; //$NON-NLS-1$
			// } else {
			// string = value.toString();
			// }
			// stringExpression = tmp.replaceAll(name, string);
			// }
			// }
			// }

			oclExpression = OclQueryUtil.createOCLExpression(context, stringExpression);
		}

		if (oclExpression != null) {
			evaluateQuery = OclQueryUtil.evaluateQuery(context, oclExpression, source);
		}
		return evaluateQuery;
	}

}

Back to the top