Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d5718162084b65132a4a16b11431f66a21bf41ce (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
/*******************************************************************************
* Copyright (c) 2018 protos software gmbh (http://www.protos.de).
* All rights reserved.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* CONTRIBUTORS:
*           Jan Belle (initial contribution)
*
 *******************************************************************************/

package org.eclipse.etrice.core.common.ui.modelpath;

import java.util.Optional;
import java.util.stream.Stream;

import org.eclipse.core.resources.IProject;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.etrice.generator.base.io.IModelPath;
import org.eclipse.etrice.generator.base.io.ResourceSetModelPathProvider;
import org.eclipse.xtext.naming.QualifiedName;
import org.eclipse.xtext.ui.resource.IResourceSetInitializer;

/**
 * Adds the modelpath to the resource set load options.
 */
public class ModelPathResourceSetInitializer implements IResourceSetInitializer {

	@Override
	public void initialize(ResourceSet resourceSet, IProject project) {
		ModelPathDelegate modelPath = new ModelPathDelegate(project);
		resourceSet.getLoadOptions().put(ResourceSetModelPathProvider.LOAD_OPTION_MODELPATH, modelPath);
	}
	
	private class ModelPathDelegate implements IModelPath {
		
		private IProject project;
		
		public ModelPathDelegate(IProject project) {
			this.project = project;
		}
		
		@Override
		public Stream<URI> getFiles(QualifiedName name) {
			return ModelPathManager.INSTANCE.getModelPath(project).getFiles(name);
		}

		@Override
		public Stream<URI> getAllFiles() {
			return ModelPathManager.INSTANCE.getModelPath(project).getAllFiles();
		}

		@Override
		public Optional<QualifiedName> getQualifiedName(URI uri) {
			return ModelPathManager.INSTANCE.getModelPath(project).getQualifiedName(uri);
		}
		
		@Override
		public boolean isEmpty() {
			return ModelPathManager.INSTANCE.getModelPath(project).isEmpty();
		}
	}
}

Back to the top