All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mygreen.supercsv.cellprocessor.constraint.LengthExactFactory Maven / Gradle / Ivy

Go to download

CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。

There is a newer version: 2.3
Show newest version
package com.github.mygreen.supercsv.cellprocessor.constraint;

import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;

import org.supercsv.cellprocessor.ift.CellProcessor;

import com.github.mygreen.supercsv.annotation.constraint.CsvLengthExact;
import com.github.mygreen.supercsv.builder.Configuration;
import com.github.mygreen.supercsv.builder.FieldAccessor;
import com.github.mygreen.supercsv.cellprocessor.ConstraintProcessorFactory;
import com.github.mygreen.supercsv.cellprocessor.format.TextFormatter;
import com.github.mygreen.supercsv.exception.SuperCsvInvalidAnnotationException;
import com.github.mygreen.supercsv.localization.MessageBuilder;


/**
 * アノテーション{@link CsvLengthExact}をハンドリングして、CellProcessorの{@link LengthExact}を作成する。
 *
 * @since 2.0
 * @author T.TSUCHIE
 *
 */
public class LengthExactFactory implements ConstraintProcessorFactory {
    
    @Override
    public Optional create(final CsvLengthExact anno, final Optional next,
            final FieldAccessor field, final TextFormatter formatter, final Configuration config) {
        
        final List requriedLength = Arrays.stream(anno.value())
                .filter(l -> l >= 0)
                .sorted()
                .distinct()
                .boxed()
                .collect(Collectors.toList());
        
        if(requriedLength.isEmpty()) {
            throw new SuperCsvInvalidAnnotationException(anno, MessageBuilder.create("anno.attr.required")
                    .var("property", field.getNameWithClass())
                    .varWithAnno("anno", anno.annotationType())
                    .var("attrName", "value")
                    .format());
        }
        
        final LengthExact processor = next.map(n -> new LengthExact(requriedLength, n))
                .orElseGet(() -> new LengthExact(requriedLength));
        processor.setValidationMessage(anno.message());
        
        return Optional.of(processor);
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy