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

com.univocity.parsers.common.fields.FieldNameSelector Maven / Gradle / Ivy

Go to download

univocity's open source parsers for processing different text formats using a consistent API

The newest version!
/*******************************************************************************
 * Copyright 2014 Univocity Software Pty Ltd
 *
 * 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 com.univocity.parsers.common.fields;

import com.univocity.parsers.common.*;

import java.util.*;

/**
 * A FieldSelector capable of selecting fields by their name.
 *
 * @author Univocity Software Pty Ltd - [email protected]
 * @see FieldSelector
 * @see FieldSet
 */
public class FieldNameSelector extends FieldSet implements FieldSelector, Cloneable {

	/**
	 * Returns the position of a given header
	 *
	 * @param header the header whose position will be returned
	 * @return the position of the given header.
	 */
	public int getFieldIndex(String header) {
		return getFieldIndexes(new NormalizedString[]{NormalizedString.valueOf(header)})[0];
	}

	@Override
	public int[] getFieldIndexes(NormalizedString[] headers) {
		if (headers == null) {
			return null;
		}
		NormalizedString[] normalizedHeader = headers;
		List selection = NormalizedString.toArrayList(this.get());

		NormalizedString[] chosenFields = selection.toArray(new NormalizedString[0]);
		Object[] unknownFields = ArgumentUtils.findMissingElements(normalizedHeader, chosenFields);

		//if we get a subset of the expected columns, we can parse normally, considering missing column values as null.
		if (unknownFields.length > 0 && !selection.containsAll(Arrays.asList(normalizedHeader))) {
			//nothing matched, just return an empty array and proceed.
			if (unknownFields.length == chosenFields.length) {
				return new int[0];
			}
		}

		int[] out = new int[selection.size()];
		Arrays.fill(out, -1);
		int i = 0;
		for (NormalizedString chosenField : selection) {
			int[] indexes = ArgumentUtils.indexesOf(normalizedHeader, chosenField);

			if (indexes.length > 1) {
				out = Arrays.copyOf(out, out.length + indexes.length - 1);
			}

			if (indexes.length != 0) {
				for (int j = 0; j < indexes.length; j++) {
					out[i++] = indexes[j];
				}
			} else {
				i++;
			}
		}

		return out;
	}

	@Override
	public int[] getFieldIndexes(String[] headers) {
		return getFieldIndexes(NormalizedString.toIdentifierGroupArray(headers));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy