-
Notifications
You must be signed in to change notification settings - Fork 615
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-2455 Add AOT support for binder child contexts
Fixes #2455
- Loading branch information
Showing
6 changed files
with
267 additions
and
155 deletions.
There are no files selected for viewing
167 changes: 167 additions & 0 deletions
167
.../src/main/java/org/springframework/cloud/stream/binder/BinderChildContextInitializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
/* | ||
* Copyright 2022-2022 the original author or authors. | ||
* | ||
* 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 | ||
* | ||
* https://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.springframework.cloud.stream.binder; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.stream.Collectors; | ||
|
||
import javax.lang.model.element.Modifier; | ||
|
||
import org.apache.commons.logging.LogFactory; | ||
|
||
import org.springframework.aot.generate.GeneratedMethod; | ||
import org.springframework.aot.generate.GenerationContext; | ||
import org.springframework.aot.generate.MethodReference; | ||
import org.springframework.beans.factory.aot.BeanRegistrationAotContribution; | ||
import org.springframework.beans.factory.aot.BeanRegistrationAotProcessor; | ||
import org.springframework.beans.factory.aot.BeanRegistrationCode; | ||
import org.springframework.beans.factory.aot.BeanRegistrationExcludeFilter; | ||
import org.springframework.beans.factory.support.RegisteredBean; | ||
import org.springframework.context.ApplicationContext; | ||
import org.springframework.context.ApplicationContextAware; | ||
import org.springframework.context.ApplicationContextInitializer; | ||
import org.springframework.context.ConfigurableApplicationContext; | ||
import org.springframework.context.aot.ApplicationContextAotGenerator; | ||
import org.springframework.context.support.GenericApplicationContext; | ||
import org.springframework.core.log.LogAccessor; | ||
import org.springframework.javapoet.ClassName; | ||
import org.springframework.util.Assert; | ||
|
||
/** | ||
* @author Chris Bono | ||
* @since 4.0 | ||
*/ | ||
public class BinderChildContextInitializer implements ApplicationContextAware, BeanRegistrationAotProcessor, BeanRegistrationExcludeFilter { | ||
|
||
private final LogAccessor logger = new LogAccessor(LogFactory.getLog(getClass())); | ||
private DefaultBinderFactory binderFactory; | ||
private final Map<String, ApplicationContextInitializer<ConfigurableApplicationContext>> childContextInitializers; | ||
private volatile ConfigurableApplicationContext context; | ||
|
||
public BinderChildContextInitializer() { | ||
this.childContextInitializers = new HashMap<>(); | ||
} | ||
|
||
public BinderChildContextInitializer( | ||
Map<String, ApplicationContextInitializer<ConfigurableApplicationContext>> childContextInitializers) { | ||
this.childContextInitializers = childContextInitializers; | ||
} | ||
|
||
@Override | ||
public void setApplicationContext(ApplicationContext applicationContext) { | ||
Assert.isInstanceOf(ConfigurableApplicationContext.class, applicationContext); | ||
this.context = (ConfigurableApplicationContext) applicationContext; | ||
} | ||
|
||
public void setBinderFactory(DefaultBinderFactory binderFactory) { | ||
Assert.notNull(binderFactory, () -> "binderFactory must be non-null"); | ||
this.binderFactory = binderFactory; | ||
if (!this.childContextInitializers.isEmpty()) { | ||
this.logger.debug(() -> "Setting binder child context initializers on binder factory"); | ||
this.binderFactory.setBinderChildContextInitializers(this.childContextInitializers); | ||
} | ||
} | ||
|
||
@Override | ||
public boolean isExcluded(RegisteredBean registeredBean) { | ||
return false; | ||
} | ||
|
||
@Override | ||
public BeanRegistrationAotContribution processAheadOfTime(RegisteredBean registeredBean) { | ||
if (registeredBean.getBeanClass().equals(getClass())) { //&& registeredBean.getBeanFactory().equals(this.context)) { | ||
this.logger.debug(() -> "Beginning AOT processing for binder child contexts"); | ||
ensureBinderFactoryIsSet(); | ||
Map<String, BinderConfiguration> binderConfigurations = this.binderFactory.getBinderConfigurations(); | ||
Map<String, ConfigurableApplicationContext> binderChildContexts = binderConfigurations.entrySet().stream() | ||
.map(e -> Map.entry(e.getKey(), binderFactory.createBinderContextForAOT(e.getKey()))) | ||
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); | ||
return new BinderChildContextAotContribution(binderChildContexts); | ||
} | ||
return null; | ||
} | ||
|
||
private void ensureBinderFactoryIsSet() { | ||
if (this.binderFactory == null) { | ||
Assert.notNull(this.context, () -> "Unable to lookup binder factory from context as this.context is null"); | ||
this.binderFactory = this.context.getBean(DefaultBinderFactory.class); | ||
} | ||
} | ||
|
||
/** | ||
* Callback for AOT generated {@link BinderChildContextAotContribution#applyTo(GenerationContext, BeanRegistrationCode) | ||
* post-process method} which basically swaps the instance with one that uses the AOT generated child context | ||
* initializers. | ||
* @param childContextInitializers the child context initializers to use | ||
* @return copy of this instance that uses the AOT generated child context initializers | ||
*/ | ||
@SuppressWarnings({"unused", "raw"}) | ||
public BinderChildContextInitializer withChildContextInitializers( | ||
Map<String, ApplicationContextInitializer<? extends ConfigurableApplicationContext>> childContextInitializers) { | ||
this.logger.debug(() -> "Replacing instance w/ one that uses; child context initializers"); | ||
Map<String, ApplicationContextInitializer<ConfigurableApplicationContext>> downcastedInitializers = | ||
childContextInitializers.entrySet().stream() | ||
.map(e -> Map.entry(e.getKey(), (ApplicationContextInitializer<ConfigurableApplicationContext>) e.getValue())) | ||
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); | ||
return new BinderChildContextInitializer(downcastedInitializers); | ||
} | ||
|
||
/** | ||
* An AOT contribution that generates a application context initializers that can be used at runtime to populate | ||
* the child binder contexts. | ||
*/ | ||
private static class BinderChildContextAotContribution implements BeanRegistrationAotContribution { | ||
|
||
private final LogAccessor logger = new LogAccessor(LogFactory.getLog(getClass())); | ||
private final Map<String, GenericApplicationContext> childContexts; | ||
|
||
BinderChildContextAotContribution(Map<String, ConfigurableApplicationContext> childContexts) { | ||
this.childContexts = childContexts.entrySet().stream() | ||
.filter(e -> GenericApplicationContext.class.isInstance(e.getValue())) | ||
.map(e -> Map.entry(e.getKey(), GenericApplicationContext.class.cast(e.getValue()))) | ||
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); | ||
} | ||
|
||
@Override | ||
public void applyTo(GenerationContext generationContext, BeanRegistrationCode beanRegistrationCode) { | ||
ApplicationContextAotGenerator aotGenerator = new ApplicationContextAotGenerator(); | ||
GeneratedMethod postProcessorMethod = beanRegistrationCode.getMethodGenerator() | ||
.generateMethod("addChildContextInitializers").using(builder -> { | ||
builder.addJavadoc("Use AOT child context initialization"); | ||
builder.addModifiers(Modifier.PRIVATE, Modifier.STATIC); | ||
builder.addParameter(RegisteredBean.class, "registeredBean"); | ||
builder.addParameter(BinderChildContextInitializer.class, "instance"); | ||
builder.returns(BinderChildContextInitializer.class); | ||
builder.addStatement("$T<String, $T<? extends $T>> initializers = new $T<>()", Map.class, | ||
ApplicationContextInitializer.class, ConfigurableApplicationContext.class, HashMap.class); | ||
this.childContexts.forEach((name, context) -> { | ||
this.logger.debug(() -> "Generating AOT child context initializer for " + name); | ||
GenerationContext childGenerationContext = generationContext.withName(name + "Binder"); | ||
ClassName initializerClassName = aotGenerator.generateApplicationContext(context, childGenerationContext); | ||
builder.addStatement("$T<? extends $T> initializer = new $L()", ApplicationContextInitializer.class, | ||
ConfigurableApplicationContext.class, initializerClassName); | ||
builder.addStatement("initializers.put($S, initializer)", name); | ||
}); | ||
builder.addStatement("return instance.withChildContextInitializers(initializers)"); | ||
}); | ||
beanRegistrationCode.addInstancePostProcessor( | ||
MethodReference.ofStatic(beanRegistrationCode.getClassName(), postProcessorMethod.getName())); | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.