org.contextmapper.dsl.generator.AbstractContextMapGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of context-mapper-dsl Show documentation
Show all versions of context-mapper-dsl Show documentation
Use the ContextMapper DSL in your standalone application.
/*
* Copyright 2018 The Context Mapper Project Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.contextmapper.dsl.generator;
import java.util.List;
import org.contextmapper.dsl.contextMappingDSL.ContextMap;
import org.contextmapper.dsl.contextMappingDSL.ContextMappingModel;
import org.contextmapper.dsl.generator.exception.NoContextMapDefinedException;
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.util.EcoreUtil;
import org.eclipse.xtext.generator.AbstractGenerator;
import org.eclipse.xtext.generator.IFileSystemAccess2;
import org.eclipse.xtext.generator.IGeneratorContext;
import org.eclipse.xtext.xbase.lib.IteratorExtensions;
import com.google.common.collect.Iterators;
public abstract class AbstractContextMapGenerator extends AbstractGenerator {
protected ContextMappingModel contextMappingModel;
protected ResourceSet resourceSet;
@Override
public void doGenerate(Resource resource, IFileSystemAccess2 fsa, IGeneratorContext context) {
this.resourceSet = resource.getResourceSet();
List contextMappingModels = IteratorExtensions.toList(
Iterators.filter(resource.getAllContents(), ContextMappingModel.class));
if (contextMappingModels.isEmpty())
throw new NoContextMapDefinedException();
// cml file can only contain one model
contextMappingModel = contextMappingModels.get(0);
EcoreUtil.resolveAll(contextMappingModel);
if (contextMappingModel.getMap() == null)
throw new NoContextMapDefinedException();
this.generateFromContextMap(contextMappingModel.getMap(), fsa, resource.getURI());
}
protected abstract void generateFromContextMap(ContextMap contextmap, IFileSystemAccess2 fsa, URI inputFileURI);
}