blob: d1c5ce270a3659975474e133194a8e7d16af9c0f [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.chart;
import javax.inject.Singleton;
import org.eclipse.osbp.dsl.common.xtext.scoping.ScopingInfoProvider;
import org.eclipse.osbp.xtext.chart.formatting.ChartDSLFormatter;
import org.eclipse.osbp.xtext.chart.imports.ShouldImportProvider;
import org.eclipse.osbp.xtext.chart.jvmmodel.ChartModelGenerator;
import org.eclipse.osbp.xtext.chart.scoping.ChartDSLScopeProvider;
import org.eclipse.osbp.xtext.chart.valueconverter.ChartQualifiedNameProvider;
import org.eclipse.osbp.xtext.chart.valueconverter.ChartValueConverterService;
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.serializer.JvmTypeAwareTransientValueService;
import org.eclipse.xtext.conversion.IValueConverterService;
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;
// TODO: Auto-generated Javadoc
/**
* Use this class to register components to be used at runtime / without the
* Equinox extension registry.
*/
public class ChartDSLRuntimeModule extends
org.eclipse.osbp.xtext.chart.AbstractChartDSLRuntimeModule {
public Class<? extends IResourceStorageFacade> bindResourceStorageFacade() {
return BatchLinkableResourceStorageFacade.class;
}
public Class<? extends TargetURICollector> bindTargetURICollector() {
return JvmModelTargetURICollector.class;
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.osbp.xtext.chart.AbstractChartDSLRuntimeModule#bindIGenerator
* ()
*/
@Override
public Class<? extends IGenerator> bindIGenerator() {
return ChartModelGenerator.class;
}
public Class<? extends org.eclipse.xtext.formatting.IFormatter> bindIFormatter() {
return ChartDSLFormatter.class;
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.osbp.xtext.chart.AbstractChartDSLRuntimeModule#bindIScopeProvider
* ()
*/
public Class<? extends IScopeProvider> bindIScopeProvider() {
return ChartDSLScopeProvider.class;
}
@SuppressWarnings("restriction")
public Class<? extends org.eclipse.xtext.xbase.scoping.batch.XbaseBatchScopeProvider> bindXbaseBatchScopeProvider() {
return ChartDSLScopeProvider.class;
}
/**
* Only required, if fqn can not be created by appending the names of the
* semantic elements up the hierarchy.
*
* @return the class<? extends org.eclipse.xtext.naming. I qualified name
* provider>
*/
public Class<? extends org.eclipse.xtext.naming.IQualifiedNameProvider> bindIQualifiedNameProvider() {
return ChartQualifiedNameProvider.class;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.osbp.xtext.chart.AbstractChartDSLRuntimeModule#
* bindIValueConverterService()
*/
@Override
public Class<? extends IValueConverterService> bindIValueConverterService() {
return ChartValueConverterService.class;
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.osbp.xtext.chart.AbstractChartDSLRuntimeModule#configure(
* com.google.inject.Binder)
*/
@Override
public void configure(Binder binder) {
super.configure(binder);
binder.bind(IOutputConfigurationProvider.class)
.to(DSLOutputConfigurationProvider.class).in(Singleton.class);
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.osbp.xtext.chart.AbstractChartDSLRuntimeModule#bindXtextResource
* ()
*/
public Class<? extends org.eclipse.xtext.resource.XtextResource> bindXtextResource() {
return SemanticLoadingResource.class;
}
public Class<? extends org.eclipse.xtext.linking.ILinker> bindILinker() {
return JvmTypeAwareLinker.class;
}
public void configureITransientValueService(Binder binder) {
binder.bind(ITransientValueService.class).to(JvmTypeAwareTransientValueService.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 IShouldImportProvider> bindIShouldImportProvider() {
return ShouldImportProvider.class;
}
}