001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.plugin.io;
017
018import java.io.PrintWriter;
019
020import org.opengion.hayabusa.db.DBTableModel;
021
022/**
023 * 固定長文字ファイルの書き出しクラスです。
024 * DefaultTableWriter を継承していますので、ラベル、名前、サイズ、データの
025 * 出力部のみオーバーライドして、固定長文字ファイルの出力機能を実現しています。
026 *
027 * なお、固定長出力されるのは、データ部のみで、ラベル、名前、サイズは、
028 * separator で指定された区切り記号で連結されて出力されます。
029 *
030 * @og.group ファイル出力
031 *
032 * @version  4.0
033 * @author   Kazuhiko Hasegawa
034 * @since    JDK5.0,
035 */
036public class TableWriter_Fixed extends TableWriter_Default {
037        /** このプログラムのVERSION文字列を設定します。   {@value} */
038        private static final String VERSION = "6.4.2.0 (2016/01/29)" ;
039
040        /**
041         * デフォルトコンストラクター
042         *
043         * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor.
044         */
045        public TableWriter_Fixed() { super(); }         // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
046
047        /**
048         * PrintWriter に DBTableModelのテーブル情報を書き込みます。
049         *
050         * @og.rev 2.3.1.2 (2003/01/28) データ出力時に、改行が余分に出される箇所を修正。
051         * @og.rev 3.1.1.0 (2003/03/28) 同期メソッド(synchronized付き)を非同期に変更する。
052         * @og.rev 3.5.4.5 (2004/01/23) 文字列のエンコード指定(桁数判定)
053         * @og.rev 6.0.1.2 (2014/08/08) カラム飛ばしできる機能を追加
054         * @og.rev 6.0.4.0 (2014/11/28) データ出力用のレンデラーと名称がかぶるので、変更します。
055         *
056         * @param       table  DBTableModelオブジェクト
057         * @param       writer PrintWriterオブジェクト
058         */
059        @Override
060        protected void writeData( final DBTableModel table,final PrintWriter writer ) {
061                final int numberOfRows    =  table.getRowCount();
062                final String encode = getEncode();
063
064                for( int row=0; row<numberOfRows; row++ ) {
065                        for( int i=0; i<numberOfColumns; i++ ) {
066                                final int clm = clmNo[i];
067                                if( clm < 0 ) { continue; }                     // 6.0.1.2 (2014/08/08) カラム飛ばし
068                                writer.print( dbColumn[clm].getFixedValue( table.getValue(row,clm),encode ) );          // 6.0.4.0 (2014/11/28)
069                        }
070                        writer.println();
071                }
072        }
073}