Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 72e19f7caea01fead5b130da128eb7ee9a190327 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*****************************************************************************
 * Copyright (c) 2014 CEA LIST.
 *
 *    
 * 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:
 *  Jérémie Tatibouet
 *  Arnaud Cuccuru
 * 
 *****************************************************************************/
package org.eclipse.papyrus.uml.alf.properties.xtext.parser;

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.common.ui.services.parser.IParser;
import org.eclipse.gmf.runtime.common.ui.services.parser.IParserEditStatus;
import org.eclipse.gmf.runtime.common.ui.services.parser.ParserEditStatus;
import org.eclipse.jface.text.contentassist.IContentAssistProcessor;
import org.eclipse.papyrus.infra.emf.utils.EMFHelper;
import org.eclipse.papyrus.uml.alf.properties.xtext.configuration.AbstractAlfXtextEditorConfiguration;
import org.eclipse.uml2.uml.NamedElement;

/**
 * Provide the possibility to use the ALF parser directly in the context of GMF.
 */
public class GMFAlfParser implements IParser {

	protected final static String TEXTUAL_REPRESENTATION_ERROR = "/*String representation could not be computed*/";

	protected final EObject semanticObject;

	protected AbstractAlfXtextEditorConfiguration configuration;

	/**
	 * Retrieve the NamedElement hidden behind the adapter
	 * 
	 * @param adaptable
	 * @return the adapted element
	 */
	protected NamedElement adapt(IAdaptable adaptable) {
		Object o = EMFHelper.getEObject(adaptable);
		if (o != null && o instanceof NamedElement) {
			return (NamedElement) o;
		}
		return null;
	}

	/**
	 * Initializes the context in which type names are going to be resolved
	 */

	public GMFAlfParser(final EObject semanticObject, final AbstractAlfXtextEditorConfiguration configuration) {
		this.semanticObject = semanticObject;
		this.configuration = configuration;
	}

	/***
	 * Delegate computation of the textual representation to the configuration
	 */
	public String getEditString(IAdaptable element, int flags) {
		NamedElement target = this.adapt(element);
		if (target != null) {
			return this.configuration.getEditString(target);
		} else if (this.semanticObject != null) {
			return this.configuration.getEditString(this.semanticObject);
		} else {
			return TEXTUAL_REPRESENTATION_ERROR;
		}
	}

	public IParserEditStatus isValidEditString(IAdaptable element, String editString) {
		return ParserEditStatus.EDITABLE_STATUS;
	}

	/**
	 * Delegate creation of the parse command to the configuration
	 */
	public ICommand getParseCommand(IAdaptable element, String newString, int flags) {
		NamedElement target = this.adapt(element);
		if (target != null) {
			return this.configuration.getParseCommand(newString, target, null);
		} else if (this.semanticObject != null) {
			return this.configuration.getParseCommand(newString, this.semanticObject, null);
		} else {
			return null;
		}
	}

	/**
	 * No differences between results returned by getPrintString or getEditString
	 */
	public String getPrintString(IAdaptable element, int flags) {
		return this.getEditString(element, flags);
	}

	public boolean isAffectingEvent(Object event, int flags) {
		return false;
	}

	public IContentAssistProcessor getCompletionProcessor(IAdaptable element) {
		return null;
	}

}

Back to the top