spring-batch CompositeItemProcessor 源码
spring-batch CompositeItemProcessor 代码
文件路径:/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/CompositeItemProcessor.java
/*
* Copyright 2006-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.batch.item.support;
import org.springframework.batch.item.ItemProcessor;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import java.util.Arrays;
import java.util.List;
/**
* Composite {@link ItemProcessor} that passes the item through a sequence of injected
* <code>ItemTransformer</code>s (return value of previous transformation is the entry
* value of the next).<br>
* <br>
*
* Note the user is responsible for injecting a chain of {@link ItemProcessor}s that
* conforms to declared input and output types.
*
* @author Robert Kasanicky
*/
public class CompositeItemProcessor<I, O> implements ItemProcessor<I, O>, InitializingBean {
private List<? extends ItemProcessor<?, ?>> delegates;
/**
* Default constrcutor
*/
public CompositeItemProcessor() {
}
/**
* Convenience constructor for setting the delegates.
* @param delegates array of {@link ItemProcessor} delegates that will work on the
* item.
*/
public CompositeItemProcessor(ItemProcessor<?, ?>... delegates) {
this(Arrays.asList(delegates));
}
/**
* Convenience constructor for setting the delegates.
* @param delegates list of {@link ItemProcessor} delegates that will work on the
* item.
*/
public CompositeItemProcessor(List<? extends ItemProcessor<?, ?>> delegates) {
setDelegates(delegates);
}
@Nullable
@Override
@SuppressWarnings("unchecked")
public O process(I item) throws Exception {
Object result = item;
for (ItemProcessor<?, ?> delegate : delegates) {
if (result == null) {
return null;
}
result = processItem(delegate, result);
}
return (O) result;
}
/*
* Helper method to work around wildcard capture compiler error: see
* https://docs.oracle.com/javase/tutorial/java/generics/capture.html The method
* process(capture#1-of ?) in the type ItemProcessor<capture#1-of ?,capture#2-of ?> is
* not applicable for the arguments (Object)
*/
@SuppressWarnings("unchecked")
private <T> Object processItem(ItemProcessor<T, ?> processor, Object input) throws Exception {
return processor.process((T) input);
}
@Override
public void afterPropertiesSet() throws Exception {
Assert.notNull(delegates, "The 'delegates' may not be null");
Assert.notEmpty(delegates, "The 'delegates' may not be empty");
}
/**
* Establishes the {@link ItemProcessor} delegates that will work on the item to be
* processed.
* @param delegates list of {@link ItemProcessor} delegates that will work on the
* item.
*/
public void setDelegates(List<? extends ItemProcessor<?, ?>> delegates) {
this.delegates = delegates;
}
}
相关信息
相关文章
spring-batch AbstractFileItemWriter 源码
spring-batch AbstractItemCountingItemStreamItemReader 源码
spring-batch AbstractItemStreamItemReader 源码
spring-batch AbstractItemStreamItemWriter 源码
spring-batch ClassifierCompositeItemProcessor 源码
spring-batch ClassifierCompositeItemWriter 源码
spring-batch CompositeItemStream 源码
spring-batch CompositeItemWriter 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦