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.HybsSystemException;
019import org.opengion.hayabusa.resource.CodeData;
020import static org.opengion.fukurou.system.HybsConst.CR ;                                // 6.1.0.0 (2014/12/26)
021import static org.opengion.fukurou.system.HybsConst.BUFFER_LARGE;               // 6.1.0.0 (2014/12/26) refactoring
022
023/**
024 * データのコード情報を取り扱うクラスです。
025 *
026 * コードのキーとラベルの情報から、HTMLのメニューやリストを作成するための オプション
027 * タグを作成したり、与えられたキーをもとに、チェック済みのオプションタグを作成したり
028 * します。
029 *
030 * @og.group 選択データ制御
031 *
032 * @version  4.0
033 * @author   Kazuhiko Hasegawa
034 * @since    JDK5.0,
035 */
036// 8.5.5.1 (2024/02/29) spotbugs CT_CONSTRUCTOR_THROW(コンストラクタで、Excweptionを出さない) class を final にすれば、警告は消える。
037// public class Selection_RADIO extends Selection_NULL {
038public final class Selection_RADIO extends Selection_NULL {
039        private final CodeData codeData ;
040
041        /**
042         * コンストラクター
043         *
044         * @param       cdData  コードデータオブジェクト
045         *
046         */
047        public Selection_RADIO( final CodeData cdData ) {
048                super();                // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor
049                if( cdData == null ) {
050                        final String errMsg = "コードリソースが定義されていません。" + CR ;
051                        throw new HybsSystemException( errMsg );
052                }
053
054                codeData = cdData ;
055        }
056
057        /**
058         * 初期値が選択済みの 選択肢(オプション)を返します。
059         * このオプションは、引数の値を初期値とするオプションタグを返します。
060         * ※ このクラスでは実装されていません。
061         *
062         * @og.rev 5.1.3.0 (2010/02/01) 追加
063         *
064         * @param       selectValue     選択されている値
065         * @param       seqFlag シーケンスアクセス機能の指定
066         * @param       useShortLabel   短ラベルの指定
067         *
068         * @return  オプションタグ
069         */
070        @Override
071        public String getOption( final String selectValue,final boolean seqFlag, final boolean useShortLabel ) {
072                final String errMsg = "このクラスでは実装されていません。";
073                throw new UnsupportedOperationException( errMsg );
074        }
075
076        /**
077         * 初期値が選択済みの 選択肢(オプション)を返します。
078         * このオプションは、引数の値を初期値とするオプションタグを返します。
079         * このメソッドでは、引数のuseShortLabelがtrueに指定された場合に、ラベル(短)をベースとした
080         * ツールチップ表示を行います。
081         * これは、ラジオボタンやチェックボックスなど、1コードデータ単位に name を指定する
082         * 場合に使います。
083         * 旧 #getRadio( String , String , boolean ) メソッドの代替えです。
084         *
085         * @og.rev 2.1.0.1 (2002/10/17) 選択リストを、正方向にしか選べないようにする sequenceFlag を導入する
086         * @og.rev 3.5.6.3 (2004/07/12) キャッシュを利用せず毎回タグを作成します。
087         * @og.rev 3.8.6.0 (2006/09/29) useLabel 属性 追加
088         * @og.rev 6.2.2.4 (2015/04/24) メソッド変更。旧 #getRadio( String , String , boolean )
089         * @og.rev 7.0.1.0 (2018/10/15) XHTML → HTML5 対応(空要素の、"/>" 止めを、">" に変更します)。
090         * @og.rev 7.2.6.1 (2020/07/17) codeGroupが使えるように、isUseを判定する。
091         *
092         * @param   name         ラジオの name
093         * @param   selectValue  選択されている値
094         * @param   useLabel     ラベル表示の有無 [true:有/false:無]
095         *
096         * @return  オプションタグ
097         * @og.rtnNotNull
098         */
099        @Override
100        public String getOption( final String name,final String selectValue,final boolean useLabel ) {
101                final String inputTag = "<input type=\"radio\" name=\"" + name + "\" value=\"" ;
102                final StringBuilder buf = new StringBuilder( BUFFER_LARGE );
103                final int size = codeData.getSize();
104                for( int i=0; i<size; i++ ) {
105                        if( ! codeData.isUse(i) ) { continue; }         // 7.2.6.1 (2020/07/17)
106
107                        final String value = codeData.getCodeKey(i);
108                        if( useLabel ) { buf.append( "<label>" ); }
109                        buf.append( inputTag ).append( value ).append( '"' );           // 6.0.2.5 (2014/10/31) char を append する。
110                        if( value.equals( selectValue ) ) {
111                                buf.append( " checked=\"checked\"" );
112                        }
113//                      buf.append( "/>" );
114                        buf.append( '>' );                              // 7.0.1.0 (2018/10/15)
115                        if( useLabel ) { buf.append( codeData.getShortLabel(i) ).append( "</label>" ); }
116                }
117                return buf.toString();
118        }
119
120        /**
121         * 選択肢(value)に対するラベルを返します。
122         * 選択肢(value)が、存在しなかった場合は、選択肢そのものを返します。
123         * このメソッドでは、短縮ラベルを返すかどうかを指定するフラグを指定します。
124         * getValueLabel( XX,false ) は、getValueLabel( XX ) と同じです。
125         *
126         * @og.rev 4.0.0.0 (2005/11/30) を追加
127         *
128         * @param       selectValue     選択肢の値
129         * @param       isSLbl  短縮ラベルを使用する [true:使用する/false:しない]
130         *
131         * @return  選択肢のラベル
132         * @see     #getValueLabel( String )
133         */
134        @Override
135        public String getValueLabel( final String selectValue,final boolean isSLbl ) {
136                // マッチするアドレスを探す。
137                final int selected = codeData.getAddress( selectValue );
138
139                // 6.4.1.1 (2016/01/16) PMD refactoring. A method should have only one exit point, and that should be the last statement in the method
140                return selected < 0
141                                        ? selectValue                   // マッチしなければ、選択肢そのものを返す。
142                                        : ( isSLbl
143                                                ? codeData.getShortLabel(selected)
144                                                : codeData.getLongLabel(selected) );
145        }
146
147}