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

org.supercsv.cellprocessor.constraint.Strlen Maven / Gradle / Ivy

/*
 * Copyright 2007 Kasper B. Graversen
 * 
 * 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 org.supercsv.cellprocessor.constraint;

import java.util.HashSet;
import java.util.Set;

import org.supercsv.cellprocessor.CellProcessorAdaptor;
import org.supercsv.cellprocessor.ift.CellProcessor;
import org.supercsv.cellprocessor.ift.StringCellProcessor;
import org.supercsv.exception.SuperCsvCellProcessorException;
import org.supercsv.exception.SuperCsvConstraintViolationException;
import org.supercsv.util.CsvContext;

/**
 * This processor ensures that the input String has a length equal to any of the supplied lengths. The length
 * constraints must all be {@code > 0} or an exception is thrown. Lookup time is O(1).
 * 
 * @author Kasper B. Graversen
 * @author Dominique De Vito
 * @author James Bassett
 */
public class Strlen extends CellProcessorAdaptor implements StringCellProcessor {
	
	private final Set requiredLengths = new HashSet();
	
	/**
	 * Constructs a new Strlen processor, which ensures that the input String has a length equal to any of the
	 * supplied lengths.
	 * 
	 * @param requiredLengths
	 *            one or more required lengths
	 * @throws NullPointerException
	 *             if requiredLengths is null
	 * @throws IllegalArgumentException
	 *             if requiredLengths is empty or contains a negative length
	 */
	public Strlen(final int... requiredLengths) {
		super();
		checkPreconditions(requiredLengths);
		checkAndAddLengths(requiredLengths);
	}
	
	/**
	 * Constructs a new Strlen processor, which ensures that the input String has a length equal to the
	 * supplied length, then calls the next processor in the chain.
	 * 
	 * @param requiredLength
	 *            the required length
	 * @param next
	 *            the next processor in the chain
	 * @throws NullPointerException
	 *             if next is null
	 * @throws IllegalArgumentException
	 *             if requiredLength is negative
	 */
	public Strlen(final int requiredLength, final CellProcessor next) {
		this(new int[] { requiredLength }, next);
	}
	
	/**
	 * Constructs a new Strlen processor, which ensures that the input String has a length equal to any of the
	 * supplied lengths, then calls the next processor in the chain.
	 * 
	 * @param requiredLengths
	 *            one or more required lengths
	 * @param next
	 *            the next processor in the chain
	 * @throws NullPointerException
	 *             if requiredLengths or next is null
	 * @throws IllegalArgumentException
	 *             if requiredLengths is empty or contains a negative length
	 */
	public Strlen(final int[] requiredLengths, final CellProcessor next) {
		super(next);
		checkPreconditions(requiredLengths);
		checkAndAddLengths(requiredLengths);
	}
	
	/**
	 * Checks the preconditions for creating a new Strlen processor.
	 * 
	 * @param requiredLengths
	 *            one or more required lengths
	 * @throws NullPointerException
	 *             if requiredLengths is null
	 * @throws IllegalArgumentException
	 *             if requiredLengths is empty
	 */
	private static void checkPreconditions(final int... requiredLengths) {
		if( requiredLengths == null ) {
			throw new NullPointerException("requiredLengths should not be null");
		} else if( requiredLengths.length == 0 ) {
			throw new IllegalArgumentException("requiredLengths should not be empty");
		}
	}
	
	/**
	 * Adds each required length, ensuring it isn't negative.
	 * 
	 * @param requiredLengths
	 *            one or more required lengths
	 * @throws IllegalArgumentException
	 *             if a supplied length is negative
	 */
	private void checkAndAddLengths(final int... requiredLengths) {
		for( final int length : requiredLengths ) {
			if( length < 0 ) {
				throw new IllegalArgumentException(String.format("required length cannot be negative but was %d",
					length));
			}
			this.requiredLengths.add(length);
		}
	}
	
	/**
	 * {@inheritDoc}
	 * 
	 * @throws SuperCsvCellProcessorException
	 *             if value is null
	 * @throws SuperCsvConstraintViolationException
	 *             if the length of value isn't one of the required lengths
	 */
	public Object execute(final Object value, final CsvContext context) {
		validateInputNotNull(value, context);
		
		final String stringValue = value.toString();
		final int length = stringValue.length();
		if( !requiredLengths.contains(length) ) {
			throw new SuperCsvConstraintViolationException(String.format("the length (%d) of value '%s' not any of the required lengths",
				length, stringValue), context, this);
		}
		
		return next.execute(value, context);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy