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.rev 6.2.2.4 (2015/04/24) 新規作成 031 * @og.group 選択データ制御 032 * 033 * @version 4.0 034 * @author Kazuhiko Hasegawa 035 * @since JDK5.0, 036 */ 037// 8.5.5.1 (2024/02/29) spotbugs CT_CONSTRUCTOR_THROW(コンストラクタで、Excweptionを出さない) class を final にすれば、警告は消える。 038// public class Selection_BITBOX extends Selection_NULL { 039public final class Selection_BITBOX extends Selection_NULL { 040 private final CodeData codeData ; 041 042 /** 043 * コンストラクター 044 * 045 * @og.rev 6.2.2.4 (2015/04/24) 新規追加 046 * 047 * @param cdData コードデータオブジェクト 048 */ 049 public Selection_BITBOX( final CodeData cdData ) { 050 super(); // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor 051 if( cdData == null ) { 052 final String errMsg = "コードリソースが定義されていません。" + CR ; 053 throw new HybsSystemException( errMsg ); 054 } 055 056 codeData = cdData ; 057 } 058 059 /** 060 * 初期値が選択済みの 選択肢(オプション)を返します。 061 * このオプションは、引数の値を初期値とするオプションタグを返します。 062 * ※ このクラスでは実装されていません。 063 * 064 * @og.rev 6.2.2.4 (2015/04/24) 新規追加 065 * 066 * @param selectValue 選択されている値 067 * @param seqFlag シーケンスアクセス機能の指定 068 * @param useShortLabel 短ラベルの指定 069 * 070 * @return オプションタグ 071 */ 072 @Override 073 public String getOption( final String selectValue,final boolean seqFlag, final boolean useShortLabel ) { 074 final String errMsg = "このクラスでは実装されていません。"; 075 throw new UnsupportedOperationException( errMsg ); 076 } 077 078 /** 079 * 初期値が選択済みの 選択肢(オプション)を返します。 080 * このオプションは、引数の値を初期値とするオプションタグを返します。 081 * このメソッドでは、引数のuseShortLabelがtrueに指定された場合に、ラベル(短)をベースとした 082 * ツールチップ表示を行います。 083 * これは、ラジオボタンやチェックボックスなど、1コードデータ単位に name を指定する 084 * 場合に使います。 085 * 旧 #getRadio( String , String , boolean ) メソッドの代替えです。 086 * 087 * @og.rev 6.2.2.4 (2015/04/24) 新規追加 088 * @og.rev 6.4.4.0 (2016/03/11) ラベルとラジオボタンの間に、全角スペースをひとつ入れます。 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 // 8.5.5.1 (2024/02/29) PMD 7.0.0 OnlyOneReturn メソッドには終了ポイントが 1 つだけ必要 102 String rtn; 103 104 String value = null; // エラーメッセージ表示用 105 try { 106 final String inputTag = "<input type=\"checkbox\" name=\"" + name + "\" value=\"" ; 107 final StringBuilder buf = new StringBuilder( BUFFER_LARGE ); 108 final int size = codeData.getSize(); 109 final int selVal = selectValue == null || selectValue.isEmpty() ? 0 : Integer.parseInt( selectValue ); // 数値化して、論理和の準備をする。 110 for( int i=0; i<size; i++ ) { 111 if( ! codeData.isUse(i) ) { continue; } // 7.2.6.1 (2020/07/17) 112 113 value = codeData.getCodeKey(i); 114 final int val = value == null || value.isEmpty() ? 0 : Integer.parseInt( value ); // 数値化して、論理和の準備をする。 115 if( useLabel ) { buf.append( "<label>" ); } 116 buf.append( inputTag ).append( value ).append( '"' ); // 6.0.2.5 (2014/10/31) char を append する。 117 if( ( val & selVal ) != 0 ) { // 論理積 118 buf.append( " checked=\"checked\"" ); 119 } 120// buf.append( "/>" ); 121 buf.append( '>' ); // 7.0.1.0 (2018/10/15) 122 if( useLabel ) { buf.append( codeData.getShortLabel(i) ).append( " </label>" ); } 123 } 124// return buf.toString(); 125 rtn = buf.toString(); 126 } 127 catch( final NumberFormatException ex ) { // 文字列が解析可能な数値を含まない場合 128 final String errMsg = "BITBOXで、数値変換できませんでした。 " + CR 129 + " name=[" + name + ", selectValue=[" + selectValue + "] , value=[" + value + "]" + CR 130 + ex.getMessage() ; 131// return errMsg; 132 rtn = errMsg; 133 } 134 return rtn; 135 } 136 137 /** 138 * 選択肢(value)に対するラベルを返します。 139 * 選択肢(value)が、存在しなかった場合は、選択肢そのものを返します。 140 * このメソッドでは、短縮ラベルを返すかどうかを指定するフラグを指定します。 141 * getValueLabel( XX,false ) は、getValueLabel( XX ) と同じです。 142 * 143 * @og.rev 6.2.2.4 (2015/04/24) 新規追加 144 * 145 * @param selectValue 選択肢の値 146 * @param isSLbl 短縮ラベルを [true:使用する/false:しない] (未使用) 147 * 148 * @return 選択肢のラベル 149 * @see #getValueLabel( String ) 150 */ 151 @Override 152 public String getValueLabel( final String selectValue,final boolean isSLbl ) { 153 // 8.5.5.1 (2024/02/29) PMD 7.0.0 OnlyOneReturn メソッドには終了ポイントが 1 つだけ必要 154 String rtn; 155 156 String value = null; 157 try { 158 final StringBuilder buf = new StringBuilder( BUFFER_LARGE ); 159 final int size = codeData.getSize(); 160 // 6.4.2.1 (2016/02/05) PMD refactoring. Useless parentheses. 161 final int selVal = selectValue == null || selectValue.isEmpty() ? 0 : Integer.parseInt( selectValue ); // 数値化して、論理積の準備をする。 162 for( int i=0; i<size; i++ ) { 163 value = codeData.getCodeKey(i); 164 // 6.4.2.1 (2016/02/05) PMD refactoring. Useless parentheses. 165 final int val = value == null || value.isEmpty() ? 0 : Integer.parseInt( value ); // 数値化して、論理積の準備をする。 166 if( ( val & selVal ) == 0 ) { // 論理積 167 buf.append( '□' ); 168 } 169 else { 170 buf.append( '■' ); 171 } 172 173 if( isSLbl ) { buf.append( codeData.getShortLabel(i) ).append( ' ' ); } 174 } 175// return buf.toString(); 176 rtn = buf.toString(); 177 } 178 catch( final NumberFormatException ex ) { // 文字列が解析可能な数値を含まない場合 179 final String errMsg = "BITBOXで、数値変換できませんでした。 " + CR 180 + " selectValue=[" + selectValue + "] , value=[" + value + "]" + CR 181 + ex.getMessage() ; 182// return errMsg; 183 rtn = errMsg; 184 } 185 return rtn; 186 } 187 188}