blob: 364b1f843855160f9997fa7b99b95f73c284e319 [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.authorizationdsl;
import org.eclipse.osbp.dsl.common.xtext.scoping.ScopingInfoProvider;
import org.eclipse.osbp.xtext.authorizationdsl.formatting.AuthorizationDSLFormatter;
import org.eclipse.osbp.xtext.authorizationdsl.generator.AuthorizationDSLGenerator;
import org.eclipse.osbp.xtext.authorizationdsl.imports.ShouldImportProvider;
import org.eclipse.osbp.xtext.authorizationdsl.scoping.AuthorizationDSLImportSectionNamespaceScopeProvider;
import org.eclipse.osbp.xtext.authorizationdsl.scoping.AuthorizationDSLScopeProvider;
import org.eclipse.osbp.xtext.authorizationdsl.valueconverter.AuthorizationQualifiedNameProvider;
import org.eclipse.osbp.xtext.authorizationdsl.valueconverter.AuthorizationValueConverterService;
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.ExtendedJvmModelAssociator;
import org.eclipse.osbp.xtext.oxtype.resource.IExtendedModelAssociator;
import org.eclipse.osbp.xtext.oxtype.resource.SemanticLoadingResource;
import org.eclipse.osbp.xtext.oxtype.scoping.IScopingInfoProvider;
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.IJvmModelAssociations;
import org.eclipse.xtext.xbase.jvmmodel.IJvmModelAssociator;
import org.eclipse.xtext.xbase.jvmmodel.JvmModelTargetURICollector;
import org.eclipse.xtext.xbase.resource.BatchLinkableResourceStorageFacade;
import com.google.inject.Binder;
import com.google.inject.Singleton;
import com.google.inject.name.Names;
/**
* Use this class to register components to be used at runtime / without the
* Equinox extension registry.
*/
@SuppressWarnings("restriction")
public class AuthorizationDSLRuntimeModule
extends
org.eclipse.osbp.xtext.authorizationdsl.AbstractAuthorizationDSLRuntimeModule {
public Class<? extends IResourceStorageFacade> bindResourceStorageFacade() {
return BatchLinkableResourceStorageFacade.class;
}
public Class<? extends TargetURICollector> bindTargetURICollector() {
return JvmModelTargetURICollector.class;
}
@Override
public Class<? extends IScopeProvider> bindIScopeProvider() {
return AuthorizationDSLScopeProvider.class;
}
public Class<? extends org.eclipse.xtext.resource.XtextResource> bindXtextResource() {
return SemanticLoadingResource.class;
}
public Class<? extends org.eclipse.xtext.formatting.IFormatter> bindIFormatter() {
return AuthorizationDSLFormatter.class;
}
public void configureITransientValueService(Binder binder) {
binder.bind(ITransientValueService.class).to(JvmTypeAwareTransientValueService.class);
}
@Override
public Class<? extends IGenerator> bindIGenerator() {
return AuthorizationDSLGenerator.class;
}
/**
* Only required, if fqn can not be created by appending the names of the
* semantic elements up the hierarchy.
*/
public Class<? extends org.eclipse.xtext.naming.IQualifiedNameProvider> bindIQualifiedNameProvider() {
return AuthorizationQualifiedNameProvider.class;
}
@Override
public Class<? extends IValueConverterService> bindIValueConverterService() {
return AuthorizationValueConverterService.class;
}
@Override
public void configure(Binder binder) {
super.configure(binder);
binder.bind(IOutputConfigurationProvider.class)
.to(DSLOutputConfigurationProvider.class).in(Singleton.class);
}
public Class<? extends org.eclipse.xtext.linking.ILinker> bindILinker() {
return JvmTypeAwareLinker.class;
}
public Class<? extends ILinkingService> bindILinkingService() {
return OXTypeLinkingService.class;
}
public Class<? extends org.eclipse.xtext.resource.IDerivedStateComputer> bindIDerivedStateComputer() {
return ExtendedJvmModelAssociator.class;
}
public Class<? extends IExtendedModelAssociator> bindIIndexModelAssociator() {
return ExtendedJvmModelAssociator.class;
}
public Class<? extends IJvmModelAssociator> bindIJvmModelAssociator() {
return ExtendedJvmModelAssociator.class;
}
public Class<? extends IJvmModelAssociations> bindIJvmModelAssociations() {
return ExtendedJvmModelAssociator.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(AuthorizationDSLImportSectionNamespaceScopeProvider.class);
}
public Class<? extends IShouldImportProvider> bindIShouldImportProvider() {
return ShouldImportProvider.class;
}
}