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.hayabusa.db;
017
018import org.opengion.hayabusa.common.HybsSystem;
019import org.opengion.fukurou.system.HybsConst;                                   // 6.1.0.0 (2014/12/26)
020import org.opengion.fukurou.util.Attributes;
021import org.opengion.fukurou.util.TagBuffer;
022
023// import static org.opengion.fukurou.util.StringUtil.isNull;   // 6.1.0.0 (2014/12/26)
024import org.opengion.fukurou.util.StringUtil;                                    // 8.5.4.2 (2024/01/12) import static … を個別に記述
025
026/**
027 * CellEditor の具象クラスで、カラムのデータを編集する場合に使用するクラスです。
028 *
029 *  カラムの表示に必要な属性は、DBColumn オブジェクト より取り出します。
030 * このクラスは、DBColumn オブジェクト毎に1つ作成されます。
031 *
032 * @og.group データ編集
033 *
034 * @version     4.0
035 * @author      Kazuhiko Hasegawa
036 * @since       JDK5.0,
037 */
038public abstract class AbstractEditor implements CellEditor {
039        private final int COLUMNS_MAXSIZE = HybsSystem.sysInt( "HTML_COLUMNS_MAXSIZE" ) ;       // 表示フィールドの大きさ
040        // 3.5.4.7 (2004/02/06) viewタグで表示する場合のカラムの大きさ
041        private final int VIEW_COLUMNS_MAXSIZE = HybsSystem.sysInt( "HTML_VIEW_COLUMNS_MAXSIZE" ) ;
042
043        /** システムの改行コードを設定します。*/
044        protected static final String CR                 = HybsConst.CR;                        // 6.1.0.0 (2014/12/26) refactoring
045        /** StringBilderなどの初期値を設定します。   {@value} */
046        protected static final int BUFFER_MIDDLE = HybsConst.BUFFER_MIDDLE;     // 6.1.0.0 (2014/12/26) refactoring
047
048        // 3.3.1.1 (2003/07/03) name , attributes 属性を final にする。
049        /** attributes 属性 */
050        protected Attributes    attributes ;            // SubClass で誤って new することを防止
051
052        // 6.4.4.2 (2016/04/01) size1,size2,name,tagBuffer をfinal化します。
053        /** カラムタグのテキストフィールドを表示する最大桁数 */
054        protected final String          size1 ;
055        /** VIEWタグのテキストフィールドを表示する最大桁数 */
056        protected final String          size2 ;
057        /** 名前 */
058        protected final String          name ;
059        /** タグバッファー */
060        protected final TagBuffer       tagBuffer = new TagBuffer() ;
061
062        /**
063         * デフォルトコンストラクター。
064         * このコンストラクターで、基本オブジェクトを作成します。
065         *
066         * @og.rev 3.1.1.1 (2003/04/03) 各オブジェクトから自分のインスタンスを返すファクトリメソッドを追加。
067         * @og.rev 6.4.3.3 (2016/03/04) PMD refactoring. Each class should declare at least one constructor.
068         *
069         */
070        public AbstractEditor() {
071                super();
072                name    = "null" ;
073                size1   = "20" ;
074                size2   = "30" ;
075        }
076
077        /**
078         * コンストラクター。
079         *
080         * @og.rev 3.1.1.1 (2003/04/03) 各オブジェクトから自分のインスタンスを返すファクトリメソッドを追加。
081         * @og.rev 3.5.4.2 (2003/12/15) 漢字入力(IMEモード)をONにするのを、"K" のみとします。
082         * @og.rev 3.5.4.2 (2003/12/15) size が 1 の場合、CSSファイルでサイズ指定を行うクラスを出力します。
083         * @og.rev 3.5.4.6 (2004/01/30) 漢字入力(IMEモード)をONにするのを、"K" と、"KX" のみとします。
084         * @og.rev 3.5.5.5 (2004/04/23) maxlength の導入
085         * @og.rev 4.0.0.0 (2005/01/31) getFieldSize メソッドを XHTMLTag から DBColumn へ移動
086         * @og.rev 5.1.7.0 (2010/06/01) 動的プルダウン実装見直し
087         * @og.rev 6.0.4.0 (2014/11/28) optionAttributes は、コンストラクタで設定します。
088         * @og.rev 6.2.0.0 (2015/02/27) 小さなカラムのサイズ指定は、すでに廃止 ("S0" + 桁数(1~5))
089         * @og.rev 6.2.0.0 (2015/02/27) フィールドサイズ 追加(VIEW_LENGTHと分離して、役割を明確にする)
090         * @og.rev 8.5.3.0 (2023/09/08) DynamicAttributes対応
091         *
092         * @param       clm     DBColumnオブジェクト
093         */
094        protected AbstractEditor( final DBColumn clm ) {
095                name = clm.getName();
096                final String disabled = clm.isWritable() ? null : "disabled" ;
097
098                final int maxlength = clm.getTotalSize();               // 4.0.0 (2005/01/31) メソッド名変更
099
100                // 6.1.1.0 (2015/01/17) Attributesの連結記述
101                attributes = new Attributes()
102                                                .set( "type"            , "text" )
103                                                .set( "maxlength"       , String.valueOf( maxlength ) )
104                                                .set( "disabled"        , disabled )
105                                                .set( clm.getEditorAttributes() )                                       // #addAttributes( Attributes ) の代替え
106                                                .add( "class"           , clm.getDbType() );                    // clazz 属性として使用
107
108                // 6.1.1.0 (2015/01/17) TagBufferの連結記述
109                tagBuffer.add( attributes.get( "p_optionAttributes" ) )                         // 6.0.4.0 (2014/11/28) 8.5.3.0 (2023/09/08) 先頭に"p_"付与
110                                 .add( attributes.get( "p_eventAttributes" ) );                         // 8.5.3.0 (2023/09/08) Add
111
112                // 3.5.5.5 (2004/04/23) size の導入、初期値は、一覧表のサイズにします。
113
114                // 6.2.0.0 (2015/02/27) フィールドサイズ 追加(VIEW_LENGTHと分離して、役割を明確にする)
115                size1 = String.valueOf( clm.getFieldSize( COLUMNS_MAXSIZE      ) );
116                size2 = String.valueOf( clm.getFieldSize( VIEW_COLUMNS_MAXSIZE ) );
117        }
118
119        /**
120         * データの編集用文字列を返します。
121         *
122         * @og.rev 3.5.5.5 (2004/04/23) viewSize の導入
123         * @og.rev 4.3.7.2 (2009/06/15) 属性でidが出力される場合は、idを出力しない
124         * @og.rev 5.1.7.0 (2010/06/01) 動的プルダウン実装見直し
125         *
126         * @param       value   値
127         *
128         * @return      データの編集用文字列
129         * @og.rtnNotNull
130         */
131        @Override       // CellEditor
132        public String getValue( final String value ) {
133                // 6.1.1.0 (2015/01/17) TagBufferの連結記述
134                return new TagBuffer( "input" )
135                                        .add( "name"    , name )                                                                                // 4.3.6.0 (2009/04/01)
136                                        // 8.5.4.2 (2024/01/12) import static … を個別に記述
137                                        .add( "id"              , name , StringUtil.isNull( attributes.get( "id" ) ) )          // 4.3.7.2 (2009/06/15)
138                                        .add( "value"   , value )
139                                        .add( "size"    , size1 )
140                                        .add( tagBuffer.makeTag() )
141                                        .makeTag();
142        }
143
144        /**
145         * name属性を変えた、データ表示/編集用のHTML文字列を作成します。
146         * テーブル上の name に 行番号を付加して、名前_行番号 で登録するキーを作成し、
147         * リクエスト情報を1つ毎のフィールドで処理できます。
148         *
149         * @og.rev 2.0.0.3 (2002/09/26) optionAttributes 属性に "$i" を使うとその行数に置き換る機能を追加。
150         * @og.rev 3.1.0.0 (2003/03/20) 名前と行番号の区切り記号を "^" から "__" に変更。
151         * @og.rev 3.5.4.2 (2003/12/15) getFieldSize を、XHTMLTag.getFieldSize に変更。
152         * @og.rev 3.5.4.7 (2004/02/06) viewタグで表示する場合のカラムの大きさ VIEW_COLUMNS_MAXSIZE 追加
153         * @og.rev 3.5.5.0 (2004/03/12) 名前と行番号の区切り記号("__")を、HybsSystem.JOINT_STRING  に変更。
154         * @og.rev 3.5.5.5 (2004/04/23) viewSize の導入、初期値は、一覧表にあわせました。
155         * @og.rev 3.5.5.5 (2004/04/23) 新規に Attributes オブジェクトを作成する方式を止めます。
156         * @og.rev 4.3.7.2 (2009/06/15) 属性でidが出力される場合は、idを出力しない
157         * @og.rev 5.1.7.0 (2010/06/01) 動的プルダウン実装見直し
158         *
159         * @param       row             行番号
160         * @param       value   値
161         *
162         * @return      データ表示/編集用の文字列
163         * @og.rtnNotNull
164         */
165        @Override       // CellEditor
166        public String getValue( final int row,final String value ) {
167                final String newName = name + HybsSystem.JOINT_STRING + row;
168
169                // 6.1.1.0 (2015/01/17) TagBufferの連結記述
170                return new TagBuffer( "input" )
171                                        .add( "name"    , newName )                                                                             // 4.3.6.0 (2009/04/01)
172                                        // 8.5.4.2 (2024/01/12) import static … を個別に記述
173                                        .add( "id"              , newName , StringUtil.isNull( attributes.get( "id" ) ) )       // 4.3.7.2 (2009/06/15)
174                                        .add( "value"   , value )
175                                        .add( "size"    , size2 )
176                                        .add( tagBuffer.makeTag() )
177                                        .makeTag( row,value );
178        }
179}