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

com.orangesignal.csv.io.CsvColumnPositionMappingBeanReader Maven / Gradle / Ivy

Go to download

OrangeSignal CSV is a very flexible csv (comma-separated values) read and write library for Java.

There is a newer version: 2.2.1
Show newest version
/*
 * Copyright 2013 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
 *
 *      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.orangesignal.csv.io;

import java.io.Closeable;
import java.io.IOException;
import java.lang.reflect.Field;
import java.util.Collections;
import java.util.List;
import java.util.Map;

import com.orangesignal.csv.CsvReader;
import com.orangesignal.csv.bean.CsvColumnPositionMappingBeanTemplate;
import com.orangesignal.csv.bean.FieldUtils;

/**
 * 区切り文字形式データの項目位置を基準として Java プログラム要素と区切り文字形式データアクセスを行う区切り文字形式入力ストリームを提供します。
 * 
 * @author Koji Sugisawa
 * @since 1.4.0
 */
public class CsvColumnPositionMappingBeanReader implements Closeable {

	/**
	 * 区切り文字形式入力ストリームを保持します。
	 */
	private CsvReader reader;

	/**
	 * Java プログラム要素操作の簡素化ヘルパーを保持します。
	 */
	private final CsvColumnPositionMappingBeanTemplate template;

	/**
	 * 項目名のリストを保持します。
	 */
	private List columnNames;

	private Field[] fields;
	private Map fieldColumnsMap;

	// ------------------------------------------------------------------------
	// 利便性のための静的メソッド

	/**
	 * 指定された区切り文字形式入力ストリームと Java プログラム要素の型を使用して、{@link CsvColumnPositionMappingBeanReader} の新しいインスタンスを取得します。

* このメソッドは利便性のために提供しています。 * * @param reader 区切り文字形式入力ストリーム * @param type Java プログラム要素の型 * @throws IllegalArgumentException {@code reader} または {@code type} が {@code null} の場合。 */ public static CsvColumnPositionMappingBeanReader newInstance(final CsvReader reader, final Class type) { return new CsvColumnPositionMappingBeanReader(reader, type); } /** * 指定された区切り文字形式入力ストリームと Java プログラム要素操作の簡素化ヘルパーを使用して、{@link CsvColumnPositionMappingBeanReader} の新しいインスタンスを取得します。

* このメソッドは利便性のために提供しています。 * * @param reader 区切り文字形式入力ストリーム * @param template Java プログラム要素操作の簡素化ヘルパー * @throws IllegalArgumentException {@code reader} または {@code template} が {@code null} の場合。 */ public static CsvColumnPositionMappingBeanReader newInstance(final CsvReader reader, final CsvColumnPositionMappingBeanTemplate template) { return new CsvColumnPositionMappingBeanReader(reader, template); } // ------------------------------------------------------------------------ // コンストラクタ /** * 指定された区切り文字形式入力ストリームと Java プログラム要素操作の簡素化ヘルパーを使用して、このクラスを構築するコンストラクタです。 * * @param reader 区切り文字形式入力ストリーム * @param type Java プログラム要素の型 * @throws IllegalArgumentException {@code reader} または {@code type} が {@code null} の場合。 */ public CsvColumnPositionMappingBeanReader(final CsvReader reader, final Class type) { this(reader, new CsvColumnPositionMappingBeanTemplate(type)); } /** * 指定された区切り文字形式入力ストリームと Java プログラム要素操作の簡素化ヘルパーを使用して、このクラスを構築するコンストラクタです。 * * @param reader 区切り文字形式入力ストリーム * @param template Java プログラム要素操作の簡素化ヘルパー * @throws IllegalArgumentException {@code reader} または {@code template} が {@code null} の場合。 */ public CsvColumnPositionMappingBeanReader(final CsvReader reader, final CsvColumnPositionMappingBeanTemplate template) { if (reader == null) { throw new IllegalArgumentException("CsvReader must not be null"); } if (template == null) { throw new IllegalArgumentException("CsvColumnPositionMappingBeanTemplate must not be null"); } this.reader = reader; this.template = template; } // ------------------------------------------------------------------------ // プライベート メソッド /** * Checks to make sure that the stream has not been closed */ private void ensureOpen() throws IOException { if (reader == null) { throw new IOException("CsvReader closed"); } } private void ensureHeader() throws IOException { synchronized (this) { if (columnNames == null) { // 項目位置とフィールド名のマップが指定されていない場合は、最初の行をヘッダとして読込んでマップを作成します。 if (template.getMaxColumnPosition() == -1) { final List names = reader.readValues(); if (names == null) { // ヘッダがない場合は例外をスローします。 throw new IOException("No header is available"); } for (final String name : names) { template.column(name); } } columnNames = Collections.unmodifiableList(template.createColumnNames()); fields = template.getType().getDeclaredFields(); fieldColumnsMap = template.createFieldAndColumnsMap(); } } } // ------------------------------------------------------------------------ // オーバーライド メソッド @Override public void close() throws IOException { synchronized (this) { ensureOpen(); reader.close(); reader = null; columnNames = null; fields = null; fieldColumnsMap = null; } } // ------------------------------------------------------------------------ // パブリック メソッド /** * 項目名のリストを返します。 * * @return 項目名のリスト * @throws IOException 入出力エラーが発生した場合 */ public List getHeader() throws IOException { synchronized (this) { ensureOpen(); ensureHeader(); return columnNames; } } /** * 論理行を読込み Java プログラム要素として返します。 * * @return Java プログラム要素。ストリームの終わりに達した場合は {@code null} * @throws IOException 入出力エラーが発生した場合 */ public T read() throws IOException { synchronized (this) { ensureOpen(); ensureHeader(); final List values = nextValues(); if (values == null) { return null; } return convert(values); } } /** * 論理行を読込み CSV トークンの値をリストとして返します。 * * @return CSV トークンの値をリスト。ストリームの終わりに達している場合は {@code null} * @throws IOException 入出力エラーが発生した場合 */ public List readValues() throws IOException { synchronized (this) { ensureOpen(); ensureHeader(); return nextValues(); } } /** * 指定された CSV トークンの値をリストを Java プログラム要素へ変換して返します。 * * @param values CSV トークンの値をリスト * @return 変換された Java プログラム要素 * @throws IOException 入出力エラーが発生した場合 */ public T toBean(final List values) throws IOException { synchronized (this) { ensureOpen(); ensureHeader(); return convert(values); } } private List nextValues() throws IOException { List values; while ((values = reader.readValues()) != null) { if (template.isAccept(values)) { continue; } return values; } return null; } @SuppressWarnings("null") private T convert(final List values) throws IOException { final T bean = template.createBean(); for (final Field f : fields) { final Object[] columns = fieldColumnsMap.get(f.getName()); final int count = columns == null ? 0 : columns.length; Object o = null; if (count == 1) { final int pos = (Integer) columns[0]; if (pos >= 0) { o = template.stringToObject(f, values.get(pos)); } } else if (count > 1) { final StringBuilder sb = new StringBuilder(); for (final Object column : columns) { final int pos = (Integer) column; if (pos >= 0) { final String s = values.get(pos); if (s != null) { sb.append(s); } } } o = template.stringToObject(f, sb.toString()); } if (o != null) { FieldUtils.setFieldValue(bean, f, o); } } return bean; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy