Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3fa5f3a2947e19f5634c013fb7c89e576576e8cb (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*****************************************************************************
 * Copyright (c) 2015 Christian W. Damus 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:
 *   Christian W. Damus - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.uml.decoratormodel.internal.resource.index;

import java.util.Collection;
import java.util.Map;

import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.uml2.uml.Package;
import org.eclipse.uml2.uml.Profile;
import org.xml.sax.Attributes;

import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.Maps;
import com.google.common.collect.Multimap;

/**
 * SAX parsing handler for indexing a UML resource. It produces one output:
 * <ul>
 * <li>{@link #getProfileApplicationsByPackage()}: profile applications by {@link Package}, as mappings of {@link Profile}&nbsp;==>&nbsp;{@link EPackage} object URIs (with fragments)</li>
 * </ul>
 */
public class ModelIndexHandler extends AbstractUMLIndexHandler {
	private final Map<URI, Map<URI, URI>> packageToProfileApplications = Maps.newHashMap();
	private final Multimap<String, URIPair> packageProfileApplications = ArrayListMultimap.create();

	private String profileApplication;
	private String appliedProfile;

	private URIPair currentProfileApplication;

	/**
	 * Initializes me.
	 *
	 * @param fileURI
	 *            the URI of the UML file that I am parsing
	 */
	public ModelIndexHandler(final URI fileURI) {
		super(fileURI);
	}

	@Override
	public URI getFileURI() {
		return fileURI;
	}

	@Override
	public Map<URI, Map<URI, URI>> getProfileApplicationsByPackage() {
		return packageToProfileApplications;
	}

	@Override
	protected void initializeUMLElementNames() {
		super.initializeUMLElementNames();

		profileApplication = "profileApplication"; //$NON-NLS-1$
		appliedProfile = "appliedProfile"; //$NON-NLS-1$
	}

	@Override
	protected boolean doHandleUMLElement(UMLElement element, Attributes attributes) {
		boolean result = false;

		if (element.isRole(profileApplication)) {
			currentProfileApplication = new URIPair();
			packageProfileApplications.put(currentPackage.id, currentProfileApplication);
			await(appliedProfile);
			result = true;
		}

		return result;
	}

	@Override
	protected void handleAwaitedElement(UMLElement element) {
		if (element.isRole(appliedProfile)) {
			URI href = element.getHREF();
			if (href != null) {
				currentProfileApplication.first = href;
			}
		}
	}

	@Override
	protected void handleAnnotationReferences(UMLElement references) {
		URI href = references.getHREF();
		if (href != null) {
			currentProfileApplication.second = href;
		}
	}

	@Override
	protected void summarize() {
		for (String packageID : packageProfileApplications.keySet()) {
			URI applyingPackageURI = fileURI.appendFragment(packageID);
			Collection<URIPair> profileApplications = packageProfileApplications.get(packageID);
			if (!profileApplications.isEmpty()) {
				Map<URI, URI> map = packageToProfileApplications.get(applyingPackageURI);
				if (map == null) {
					map = Maps.newHashMap();
					packageToProfileApplications.put(applyingPackageURI, map);
				}
				for (URIPair profileApplication : profileApplications) {
					// If we can't determine the Ecore definition, the profile is not properly applied
					if (profileApplication.second != null) {
						map.put(profileApplication.first, profileApplication.second);
					}
				}
			}
		}
	}
}

Back to the top