blob: 356115f84fc9df6632d5fbe200a99390449817b9 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.xtext.entitymock;
import javax.inject.Singleton;
import org.eclipse.osbp.dsl.common.xtext.scoping.ScopingInfoProvider;
import org.eclipse.osbp.xtext.entitymock.formatting.EntityMockDSLFormatter;
import org.eclipse.osbp.xtext.entitymock.generator.EntityMockDslGenerator;
import org.eclipse.osbp.xtext.entitymock.imports.ShouldImportProvider;
import org.eclipse.osbp.xtext.entitymock.scoping.EntityMockDSLImportSectionNamespaceScopeProvider;
import org.eclipse.osbp.xtext.entitymock.scoping.EntityMockDSLScopeProvider;
import org.eclipse.osbp.xtext.entitymock.valueconverter.EntityMockQualifiedNameProvider;
import org.eclipse.osbp.xtext.i18n.DSLOutputConfigurationProvider;
import org.eclipse.osbp.xtext.oxtype.imports.IShouldImportProvider;
import org.eclipse.osbp.xtext.oxtype.imports.OXTypeRewritableImportSection;
import org.eclipse.osbp.xtext.oxtype.linker.JvmTypeAwareLinker;
import org.eclipse.osbp.xtext.oxtype.linking.OXTypeLinkingService;
import org.eclipse.osbp.xtext.oxtype.resource.SemanticLoadingResource;
import org.eclipse.osbp.xtext.oxtype.scoping.IScopingInfoProvider;
import org.eclipse.osbp.xtext.oxtype.scoping.OXDelegatingNamespaceScopeProvider;
import org.eclipse.osbp.xtext.oxtype.scoping.eobject.OXEObjectImportSectionNamespaceScopeProvider;
import org.eclipse.osbp.xtext.oxtype.serializer.JvmTypeAwareTransientValueService;
import org.eclipse.xtext.findReferences.TargetURICollector;
import org.eclipse.xtext.generator.IGenerator;
import org.eclipse.xtext.generator.IOutputConfigurationProvider;
import org.eclipse.xtext.linking.ILinkingService;
import org.eclipse.xtext.resource.persistence.IResourceStorageFacade;
import org.eclipse.xtext.scoping.IScopeProvider;
import org.eclipse.xtext.serializer.sequencer.ITransientValueService;
import org.eclipse.xtext.xbase.imports.RewritableImportSection;
import org.eclipse.xtext.xbase.jvmmodel.JvmModelTargetURICollector;
import org.eclipse.xtext.xbase.resource.BatchLinkableResourceStorageFacade;
import com.google.inject.Binder;
import com.google.inject.name.Names;
/**
* Use this class to register components to be used at runtime / without the
* Equinox extension registry.
*/
public class EntityMockDSLRuntimeModule extends org.eclipse.osbp.xtext.entitymock.AbstractEntityMockDSLRuntimeModule {
public Class<? extends IResourceStorageFacade> bindResourceStorageFacade() {
return BatchLinkableResourceStorageFacade.class;
}
public Class<? extends TargetURICollector> bindTargetURICollector() {
return JvmModelTargetURICollector.class;
}
@Override
public Class<? extends IGenerator> bindIGenerator() {
return EntityMockDslGenerator.class;
}
public Class<? extends org.eclipse.xtext.formatting.IFormatter> bindIFormatter() {
return EntityMockDSLFormatter.class;
}
@Override
public void configure(Binder binder) {
super.configure(binder);
binder.bind(IOutputConfigurationProvider.class).to(DSLOutputConfigurationProvider.class).in(Singleton.class);
}
@Override
public Class<? extends IScopeProvider> bindIScopeProvider() {
return EntityMockDSLScopeProvider.class;
}
// contributed by org.eclipse.xtext.generator.xbase.XbaseGeneratorFragment
@Override
public Class<? extends org.eclipse.xtext.xbase.scoping.batch.XbaseBatchScopeProvider> bindXbaseBatchScopeProvider() {
return EntityMockDSLScopeProvider.class;
}
/**
* Only required, if fqn can not be created by appending the names of the
* semantic elements up the hierarchy.
*/
@Override
public Class<? extends org.eclipse.xtext.naming.IQualifiedNameProvider> bindIQualifiedNameProvider() {
return EntityMockQualifiedNameProvider.class;
}
@Override
public Class<? extends org.eclipse.xtext.resource.XtextResource> bindXtextResource() {
return SemanticLoadingResource.class;
}
public void configureITransientValueService(Binder binder) {
binder.bind(ITransientValueService.class).to(JvmTypeAwareTransientValueService.class);
}
public Class<? extends org.eclipse.xtext.linking.ILinker> bindILinker() {
return JvmTypeAwareLinker.class;
}
public Class<? extends ILinkingService> bindILinkingService() {
return OXTypeLinkingService.class;
}
public Class<? extends RewritableImportSection.Factory> bindRewritableImportSection$Factory() {
return OXTypeRewritableImportSection.Factory.class;
}
public Class<? extends IScopingInfoProvider> bindIScopingInfoProvider() {
return ScopingInfoProvider.class;
}
@Override
public void configureIScopeProviderDelegate(Binder binder) {
binder.bind(IScopeProvider.class)
.annotatedWith(Names.named("org.eclipse.xtext.scoping.impl.AbstractDeclarativeScopeProvider.delegate"))
.to(OXDelegatingNamespaceScopeProvider.class);
}
public Class<? extends OXEObjectImportSectionNamespaceScopeProvider> bindOXEObjectImportSectionNamespaceScopeProvider() {
return EntityMockDSLImportSectionNamespaceScopeProvider.class;
}
public Class<? extends IShouldImportProvider> bindIShouldImportProvider() {
return ShouldImportProvider.class;
}
}