Code Cleanup - StringBuilder, Redundant Iteration, Record

This commit is contained in:
Ömer Çelik
2024-10-05 01:32:15 +03:00
parent 6f1b5a4d93
commit e445a34f8d
6 changed files with 24 additions and 36 deletions

View File

@@ -69,6 +69,7 @@ import org.springframework.util.CollectionUtils;
* @author Soby Chacko
* @author Byungjun You
* @author Georg Friedrich
* @author Omer Celik
* @since 2.2.0
*/
public class KafkaStreamsFunctionProcessor extends AbstractKafkaStreamsBinderProcessor implements BeanFactoryAware {
@@ -475,7 +476,7 @@ public class KafkaStreamsFunctionProcessor extends AbstractKafkaStreamsBinderPro
String next = iterator.next();
kafkaStreamsBindableProxyFactory.addOutputBinding(next, KStream.class);
RootBeanDefinition rootBeanDefinition1 = new RootBeanDefinition();
rootBeanDefinition1.setInstanceSupplier(() -> kafkaStreamsBindableProxyFactory.getOutputHolders().get(next).getBoundTarget());
rootBeanDefinition1.setInstanceSupplier(() -> kafkaStreamsBindableProxyFactory.getOutputHolders().get(next).boundTarget());
registry.registerBeanDefinition(next, rootBeanDefinition1);
Object targetBean = this.applicationContext.getBean(next);

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2019-2023 the original author or authors.
* Copyright 2019-2024 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.
@@ -65,6 +65,7 @@ import org.springframework.util.CollectionUtils;
* the actual size in the returned array. That has to wait until the function is invoked and we get a result.
*
* @author Soby Chacko
* @author Omer Celik
* @since 3.0.0
*/
public class KafkaStreamsBindableProxyFactory extends AbstractBindableProxyFactory implements InitializingBean, BeanFactoryAware {
@@ -173,7 +174,7 @@ public class KafkaStreamsBindableProxyFactory extends AbstractBindableProxyFacto
.createOutput(outputBinding), true));
String outputBinding1 = outputBinding;
RootBeanDefinition rootBeanDefinition1 = new RootBeanDefinition();
rootBeanDefinition1.setInstanceSupplier(() -> outputHolders.get(outputBinding1).getBoundTarget());
rootBeanDefinition1.setInstanceSupplier(() -> outputHolders.get(outputBinding1).boundTarget());
BeanDefinitionRegistry registry = (BeanDefinitionRegistry) beanFactory;
registry.registerBeanDefinition(outputBinding1, rootBeanDefinition1);
}
@@ -248,7 +249,7 @@ public class KafkaStreamsBindableProxyFactory extends AbstractBindableProxyFacto
}
BeanDefinitionRegistry registry = (BeanDefinitionRegistry) beanFactory;
RootBeanDefinition rootBeanDefinition = new RootBeanDefinition();
rootBeanDefinition.setInstanceSupplier(() -> inputHolders.get(inputName).getBoundTarget());
rootBeanDefinition.setInstanceSupplier(() -> inputHolders.get(inputName).boundTarget());
registry.registerBeanDefinition(inputName, rootBeanDefinition);
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2019-2022 the original author or authors.
* Copyright 2019-2024 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.
@@ -35,6 +35,7 @@ import org.springframework.util.StringUtils;
*
* Original authors in {@link BindableProxyFactory}
* @author Soby Chacko
* @author Omer Celik
* @since 3.0.0
*/
public class AbstractBindableProxyFactory implements Bindable {
@@ -94,9 +95,9 @@ public class AbstractBindableProxyFactory implements Bindable {
.entrySet()) {
String inputTargetName = boundTargetHolderEntry.getKey();
BoundTargetHolder boundTargetHolder = boundTargetHolderEntry.getValue();
if (boundTargetHolder.isBindable()) {
if (boundTargetHolder.bindable()) {
bindings.addAll(bindingService.bindConsumer(
boundTargetHolder.getBoundTarget(), inputTargetName));
boundTargetHolder.boundTarget(), inputTargetName));
}
}
return bindings;
@@ -111,9 +112,9 @@ public class AbstractBindableProxyFactory implements Bindable {
.entrySet()) {
BoundTargetHolder boundTargetHolder = boundTargetHolderEntry.getValue();
String outputTargetName = boundTargetHolderEntry.getKey();
if (boundTargetHolderEntry.getValue().isBindable()) {
if (boundTargetHolderEntry.getValue().bindable()) {
bindings.add(bindingService.bindProducer(
boundTargetHolder.getBoundTarget(), outputTargetName));
boundTargetHolder.boundTarget(), outputTargetName));
}
}
return bindings;
@@ -123,7 +124,7 @@ public class AbstractBindableProxyFactory implements Bindable {
public void unbindInputs(BindingService bindingService) {
for (Map.Entry<String, BoundTargetHolder> boundTargetHolderEntry : this.inputHolders
.entrySet()) {
if (boundTargetHolderEntry.getValue().isBindable()) {
if (boundTargetHolderEntry.getValue().bindable()) {
bindingService.unbindConsumers(boundTargetHolderEntry.getKey());
}
}
@@ -133,7 +134,7 @@ public class AbstractBindableProxyFactory implements Bindable {
public void unbindOutputs(BindingService bindingService) {
for (Map.Entry<String, BoundTargetHolder> boundTargetHolderEntry : this.outputHolders
.entrySet()) {
if (boundTargetHolderEntry.getValue().isBindable()) {
if (boundTargetHolderEntry.getValue().bindable()) {
bindingService.unbindProducers(boundTargetHolderEntry.getKey());
}
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2019 the original author or authors.
* Copyright 2015-2024 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.
@@ -24,25 +24,8 @@ package org.springframework.cloud.stream.binding;
*
* @author Original authors in {@link BindableProxyFactory}
* @author Soby Chacko
* @author Omer Celik
* @since 3.0.0
*/
public final class BoundTargetHolder {
private Object boundTarget;
private boolean bindable;
public BoundTargetHolder(Object boundTarget, boolean bindable) {
this.boundTarget = boundTarget;
this.bindable = bindable;
}
public Object getBoundTarget() {
return this.boundTarget;
}
public boolean isBindable() {
return this.bindable;
}
public record BoundTargetHolder(Object boundTarget, boolean bindable) {
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2018 the original author or authors.
* Copyright 2015-2024 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.
@@ -148,16 +148,16 @@ public class BindingProperties {
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("destination=" + this.destination);
sb.append("destination=").append(this.destination);
sb.append(COMMA);
sb.append("group=" + this.group);
sb.append("group=").append(this.group);
sb.append(COMMA);
if (this.contentType != null) {
sb.append("contentType=" + this.contentType);
sb.append("contentType=").append(this.contentType);
sb.append(COMMA);
}
if (this.binder != null) {
sb.append("binder=" + this.binder);
sb.append("binder=").append(this.binder);
sb.append(COMMA);
}
sb.deleteCharAt(sb.lastIndexOf(COMMA));

View File

@@ -78,6 +78,7 @@ import org.springframework.util.ObjectUtils;
* @author Oleg Zhurakousky
* @author Soby Chacko
* @author Chris Bono
* @author Omer Celik
*/
@AutoConfiguration
@EnableConfigurationProperties({ BindingServiceProperties.class,
@@ -132,6 +133,7 @@ public class BindingServiceConfiguration {
.entrySet()) {
if (configurationEntry.getValue().isDefaultCandidate()) {
defaultCandidatesExist = true;
break;
}
}
if (!defaultCandidatesExist) {