Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 77f85d36472a8ab4724653251713f531d63981ef (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
/*******************************************************************************
 * Copyright (c) 2004, 2006 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.emf.emfatic.core.generator.ecore;

import java.io.BufferedReader;
import java.io.InputStreamReader;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.emfatic.core.lang.gen.parser.EmfaticParserDriver;
import org.eclipse.gymnast.runtime.core.parser.ParseContext;
import org.eclipse.gymnast.runtime.core.parser.ParseMessage;
import org.eclipse.gymnast.runtime.core.util.MarkerUtil;

/**
 * 
 * @author cjdaly@us.ibm.com
 */
public class EcoreGenerator {

	public EcoreGenerator() {
	}

	public void generate(IFile emfFile, IProgressMonitor monitor) {
		generate(emfFile, true, monitor);
	}

	public void generate(IFile emfFile, boolean writeEcore, IProgressMonitor monitor) {
		try {
			BufferedReader reader = new BufferedReader(new InputStreamReader(emfFile.getContents()));
			EmfaticParserDriver parser = new EmfaticParserDriver();
			ParseContext parseContext = parser.parse(reader);
			String filePath = getEcoreFilePath(emfFile);
			Resource resource = createResource(filePath);
			Builder builder = new Builder();
			builder.build(parseContext, resource, monitor);
			if (!parseContext.hasErrors()) {
				Connector connector = new Connector(builder);
				connector.connect(parseContext, resource, monitor);
			}
			MarkerUtil.updateMarkers(emfFile, parseContext);

			boolean showStopper = false;
			/*
			 * we let ecores to be written as long as they contain only errors
			 * detected by EcoreValidatorDiagnostic, as such errors can be
			 * solved with Sample Ecore Editor
			 */
			for (ParseMessage pm : parseContext.getMessages()) {
				showStopper |= !(pm instanceof EmfaticSemanticWarning.EcoreValidatorDiagnostic);
			}

			if (!showStopper && writeEcore)
				resource.save(null);
		} catch (Exception ex) {
			ex.printStackTrace();
		}
	}

	private String getEcoreFilePath(IFile emfFile) {
		String emfFileExt = emfFile.getFileExtension();
		int extLen = emfFileExt != null ? emfFileExt.length() + 1 : 0;
		String emfFileName = emfFile.getName();
		String fileName = emfFileName.substring(0, emfFileName.length() - extLen);
		fileName = fileName + ".ecore";
		String filePath = emfFile.getFullPath().removeLastSegments(1).append(fileName).toString();
		return filePath;
	}

	private Resource createResource(String filePath) {
		ResourceSet resourceSet = new ResourceSetImpl();
		URI uri = URI.createPlatformResourceURI(filePath, false);
		Resource resource = resourceSet.createResource(uri);
		return resource;
	}
}

Back to the top