blob: 247aad3bcafe07847769bf2794934fd9b5198c10 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 Borland Software Corporation and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.tests.qvt.oml.transform.javaless;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.eclipse.emf.ecore.EcorePackage;
import org.eclipse.m2m.tests.qvt.oml.transform.FilesToFilesData;
import org.eclipse.m2m.tests.qvt.oml.transform.ModelTestData;
public class JavalessUtil {
private JavalessUtil() {}
public static boolean isValidJavalessData(ModelTestData data) {
if(data instanceof FilesToFilesData == false) {
return false;
}
FilesToFilesData filesData = (FilesToFilesData) data;
for (String fromFile : filesData.getFromFiles()) {
if(!isEcoreFile(fromFile)) {
return false;
}
};
for (String expectedFile : filesData.getExpectedFiles()) {
if(!isEcoreFile(expectedFile)) {
return false;
}
}
return true;
}
public static String patchContents(String content) {
for(Map.Entry<String, String> replacment: REPLACEMENTS.entrySet()) {
content = content.replaceAll(replacment.getKey(), replacment.getValue());
}
return content;
}
public static String changeTransformationName(String content, String oldName, String newName) {
// update local imports
Pattern p = Pattern.compile("(import\\s*models\\." + oldName + "\\..*);"); //$NON-NLS-1$ //$NON-NLS-2$
Matcher m = p.matcher(content);
StringBuffer sb = new StringBuffer();
while (m.find()) {
m.appendReplacement(sb, m.group(1) + "_javaless;"); //$NON-NLS-1$
}
m.appendTail(sb);
content = sb.toString();
// update transformation name
p = Pattern.compile("(\\s*transformation\\s+)" + oldName + "(\\(|;)"); //$NON-NLS-1$ //$NON-NLS-2$
m = p.matcher(content);
sb = new StringBuffer();
while (m.find()) {
m.appendReplacement(sb, "\ntransformation " + newName + m.group(2)); //$NON-NLS-1$
}
m.appendTail(sb);
content = sb.toString();
return content;
}
private static boolean isEcoreFile(String fname) {
return fname.endsWith(".ecore"); //$NON-NLS-1$
}
public static final String JAVALESS_METAMODEL = "platform:/plugin/org.eclipse.m2m.tests.qvt.oml/models/javaless.ecore"; //$NON-NLS-1$
private static final String JAVALESS_METAMODEL_ID = "http://www.example.com/javaless/2006"; //$NON-NLS-1$
private final static Map<String, String> REPLACEMENTS = new HashMap<String, String>();
static {
REPLACEMENTS.put(EcorePackage.eNS_URI, JAVALESS_METAMODEL_ID);
REPLACEMENTS.put("ecore\\(", "javaless("); //$NON-NLS-1$ //$NON-NLS-2$
REPLACEMENTS.put("ecore:", "javaless:"); //$NON-NLS-1$ //$NON-NLS-2$
REPLACEMENTS.put(":ecore", ":javaless"); //$NON-NLS-1$ //$NON-NLS-2$
REPLACEMENTS.put(".ecore#/", ".ecore.javaless#/"); //$NON-NLS-1$ //$NON-NLS-2$
}
}