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.column;
017
018import org.opengion.hayabusa.db.AbstractRenderer;
019import org.opengion.hayabusa.db.CellRenderer;
020import org.opengion.hayabusa.db.DBColumn;
021
022/**
023 * HMS レンデラーは、カラムのデータを時:分:秒に分けて表示する場合に
024 * 使用するクラスです。
025 *
026 * このクラスは、不変オブジェクトとして、共有されます。
027 *
028 * @og.group データ表示
029 *
030 * @version  4.0
031 * @author       Kazuhiko Hasegawa
032 * @since    JDK5.0,
033 */
034public class Renderer_HMS extends AbstractRenderer {
035        /** このプログラムのVERSION文字列を設定します。   {@value} */
036        private static final String VERSION = "8.5.4.2 (2024/01/12)" ;
037
038        private static final CellRenderer DB_CELL = new Renderer_HMS() ;
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 Renderer_HMS() { super(); }              // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
046
047        /**
048         * 各オブジェクトから自分のインスタンスを返します。
049         * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に
050         * まかされます。
051         *
052         * @og.rev 3.1.1.1 (2003/04/03) 各オブジェクトから自分のインスタンスを返すファクトリメソッドを追加。
053         * @og.rev 3.1.2.1 (2003/04/10) synchronized を、削除します。
054         *
055         * @param       clm     DBColumnオブジェクト
056         *
057         * @return      CellRendererオブジェクト
058         * @og.rtnNotNull
059         */
060        public CellRenderer newInstance( final DBColumn clm ) {
061                return DB_CELL;
062        }
063
064        /**
065         * データの表示用文字列を返します。
066         * ここでは、null か ゼロ文字列の場合は、ゼロ文字列を返します。
067         * 6ケタ、14ケタでないデータは、エラー表示を行います。
068         * 6ケタの場合は、HHMMSS として、HH:MM:SS を返します。
069         * 14ケタの場合は、yyyyMMddHHmmss として、そのうちの時分秒の HH:MM:SS のみ返します。
070         *
071         * @og.rev 5.5.7.2 (2012/10/09) 処理ロジックの見直し
072         * @og.rev 5.6.5.0 (2013/06/07) 14ケタも処理するように変更
073         * @og.rev 6.0.4.0 (2014/11/28) ロジックの共通化
074         *
075         * @param       value 入力値
076         *
077         * @return      データの表示用文字列
078         * @og.rtnNotNull
079         */
080        @Override
081        public String getValue( final String value ) {
082                return getValue( value , true );
083        }
084
085        /**
086         * データ出力用の文字列を作成します。
087         * ファイル等に出力する形式を想定しますので、HTMLタグを含まない
088         * データを返します。
089         * 基本は、#getValue( String ) をそのまま返します。
090         *
091         * @og.rev 6.0.4.0 (2014/11/28) データ出力用のレンデラー
092         *
093         * @param   value 入力値
094         *
095         * @return  データ出力用の文字列
096         * @og.rtnNotNull
097         * @see         #getValue( String )
098         */
099        @Override
100        public String getWriteValue( final String value ) {
101                return getValue( value , false );
102        }
103
104        /**
105         * データ表示用/出力用の文字列を作成します。
106         * 第二引数の isView == true で、データ表示用文字列を、false で
107         * データ出力用の文字列を作成します。
108         * 処理の共通化を行うためのメソッドです。
109         *
110         * @og.rev 6.0.4.0 (2014/11/28) ロジックの共通化
111         * @og.rev 8.5.4.2 (2024/01/12) 処理の方法を見直します。
112         *
113         * @param   value  入力値
114         * @param   isView データ表示用かどうか(true:表示用/false:出力用)
115         *
116         * @return  データ表示用/出力用の文字列
117         * @og.rtnNotNull
118         * @see         #getValue( String )
119         */
120        private String getValue( final String value , final boolean isView ) {
121                if( value == null || value.isEmpty() ) { return ""; }
122
123                // 8.5.4.2 (2024/01/12) 処理の方法を見直します。
124                final String rtn ;
125                if( value.length() == 6 ) {                             // HHMMSS ⇒ HH:MM:SS
126                        rtn = value.substring(0,2) + ':' + value.substring(2,4) + ':'  + value.substring(4,6);
127                }
128                else if( value.length() == 14 ) {               // YYYYMMDDHHMMSS ⇒ HH:MM:SS
129                        rtn = value.substring(8,10) + ':' + value.substring(10,12) + ':'  + value.substring(12);
130                }
131                else if( isView ) {
132                        rtn = "<span class=\"error\">" + value + "</span>";
133                }
134                else {
135                        rtn = value;
136                }
137                return rtn;
138
139//              String rtn = value;             // 初期値:isView = false の時の値
140//
141//              if( rtn.length() == 6 ) {
142//                      final char[] ch1 = new char[8];         // 8.5.4.2 (2024/01/12) PMD 7.0.0 LocalVariableCouldBeFinal
143//                      ch1[0] = rtn.charAt(0);
144//                      ch1[1] = rtn.charAt(1);
145//                      ch1[2] = ':' ;
146//                      ch1[3] = rtn.charAt(2);
147//                      ch1[4] = rtn.charAt(3);
148//                      ch1[5] = ':' ;
149//                      ch1[6] = rtn.charAt(4);
150//                      ch1[7] = rtn.charAt(5);
151//
152//                      rtn = new String( ch1 );
153//              }
154//              // 5.6.5.0 (2013/06/07) 14ケタも処理する
155//              else if( rtn.length() == 14 ) {
156//                      final char[] ch1 = new char[8];         // 8.5.4.2 (2024/01/12) PMD 7.0.0 LocalVariableCouldBeFinal
157//                      ch1[0] = rtn.charAt(8);
158//                      ch1[1] = rtn.charAt(9);
159//                      ch1[2] = ':' ;
160//                      ch1[3] = rtn.charAt(10);
161//                      ch1[4] = rtn.charAt(11);
162//                      ch1[5] = ':' ;
163//                      ch1[6] = rtn.charAt(12);
164//                      ch1[7] = rtn.charAt(13);
165//
166//                      rtn = new String( ch1 );
167//              }
168//              else {
169//                      if( isView ) {
170//                              rtn = "<span class=\"error\">" + value + "</span>";
171//                      }
172//              }
173//              return rtn;
174        }
175}