Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2014 Avanza Bank AB
*
* 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 com.avanza.astrix.context;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Set;
import com.avanza.astrix.beans.core.AstrixBeanKey;
import com.avanza.astrix.beans.core.AstrixBeanSettings.BooleanBeanSetting;
import com.avanza.astrix.beans.core.AstrixBeanSettings.IntBeanSetting;
import com.avanza.astrix.beans.core.AstrixSettings;
import com.avanza.astrix.beans.factory.AstrixBeans;
import com.avanza.astrix.beans.factory.StandardFactoryBean;
import com.avanza.astrix.beans.publish.ApiProviderClass;
import com.avanza.astrix.config.LongSetting;
import com.avanza.astrix.config.Setting;
import com.avanza.astrix.modules.Module;
import com.avanza.astrix.serviceunit.AstrixApplicationDescriptor;
public class TestAstrixConfigurer {
private AstrixConfigurer configurer;
private final Set apiProviders = new HashSet<>();
private final Collection> standaloneFactories = new LinkedList<>();
public TestAstrixConfigurer() {
configurer = new AstrixConfigurer();
configurer.setAstrixApiProviders(() -> apiProviders.stream());
configurer.enableFaultTolerance(false);
configurer.set(AstrixSettings.ENFORCE_SUBSYSTEM_BOUNDARIES, false);
configurer.set(AstrixSettings.EXPORT_ASTRIX_MBEANS, false);
}
public AstrixContext configure() {
for (StandardFactoryBean> factoryBean : standaloneFactories) {
configurer.addFactoryBean(factoryBean);
}
return (AstrixContextImpl) configurer.configure();
}
/**
* @deprecated renamed to registerApiProvider
* @param descriptor
*/
@Deprecated
public void registerApiDescriptor(Class> descriptor) {
registerApiProvider(descriptor);
}
/**
* Registers api provider(s).
*
* This is an alias for registerApiDescriptor(Class> descriptor), which
* should be removed in the future.
*
* @param provider
* @return
*/
public TestAstrixConfigurer registerApiProvider(Class>... providers) {
for (Class> provider : providers) {
apiProviders.add(ApiProviderClass.create(provider));
}
return this;
}
public void registerAstrixBean(Class beanType, T provider) {
registerAstrixBean(beanType, provider, null);
}
public void registerAstrixBean(Class beanType, T provider, String qualifier) {
StandaloneFactoryBean factoryBean = new StandaloneFactoryBean<>(beanType, provider, qualifier);
standaloneFactories.add(factoryBean);
}
public void registerPlugin(Class c, T provider) {
configurer.registerPlugin(c, provider);
}
public TestAstrixConfigurer enableFaultTolerance(boolean enabled) {
configurer.enableFaultTolerance(enabled);
return this;
}
public void set(String name, long value) {
configurer.set(name, value);
}
public TestAstrixConfigurer set(String name, String value) {
configurer.set(name, value);
return this;
}
public void set(String name, boolean value) {
configurer.set(name, value);
}
public final TestAstrixConfigurer set(Setting setting, T value) {
this.configurer.set(setting, value);
return this;
}
public final TestAstrixConfigurer set(LongSetting setting, long value) {
this.configurer.set(setting, value);
return this;
}
/*
* Sets the current subsystem name and enables enforcing of
* subsystem boundaries
*/
public void setSubsystem(String subsystem) {
this.configurer.setSubsystem(subsystem);
this.configurer.set(AstrixSettings.ENFORCE_SUBSYSTEM_BOUNDARIES, true);
}
private static class StandaloneFactoryBean implements StandardFactoryBean {
private AstrixBeanKey type;
private T instance;
public StandaloneFactoryBean(Class type, T instance, String qualifier) {
this.type = AstrixBeanKey.create(type, qualifier);
this.instance = instance;
}
@Override
public T create(AstrixBeans beans) {
return instance;
}
@Override
public AstrixBeanKey getBeanKey() {
return type;
}
}
public void removeSetting(String name) {
this.configurer.removeSetting(name);
}
public void activateProfile(String profile) {
this.configurer.activateProfile(profile);
}
public TestAstrixConfigurer registerStrategy(Class strategyInterface, T strategyInstance) {
this.configurer.registerStrategy(strategyInterface, strategyInstance);
return this;
}
public void set(BooleanBeanSetting setting, AstrixBeanKey> beanKey, boolean value) {
this.configurer.set(setting.nameFor(beanKey), Boolean.toString(value));
}
public void registerModule(Module module) {
this.configurer.registerModule(module);
}
public TestAstrixConfigurer set(IntBeanSetting setting, AstrixBeanKey> beanKey, int value) {
this.configurer.set(setting, beanKey, value);
return this;
}
public TestAstrixConfigurer setApplicationDescriptor(Class> applicationDescriptor) {
this.configurer.setApplicationDescriptor(AstrixApplicationDescriptor.create(applicationDescriptor));
return this;
}
}