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.fukurou.system.OgBuilder ; // 6.4.4.1 (2016/03/18) 019// import org.opengion.fukurou.db.DBUtil; 020// import org.opengion.fukurou.db.ApplicationInfo; 021import org.opengion.fukurou.util.StringFormat; 022// import org.opengion.hayabusa.common.HybsSystem; 023import org.opengion.hayabusa.db.AbstractRenderer; 024import org.opengion.hayabusa.db.CellRenderer; 025import org.opengion.hayabusa.db.DBColumn; 026 027/** 028 * MULTIQUERY レンデラーは、表示パラメータで指定された SQL文の実行結果を表示するクラスです。 029 * 030 * 複数件のデータが取得された場合、各データは、spanタグで囲われて返されます。 031 * <span>値1</span><span>値2</span><span>値3</span> 032 * 033 * 第2カラムを指定した場合、その値は、spanタグのclass属性として付加されます。 034 * 035 * また、SQL文の指定には、元のValue を、$1 として使用可能です。 036 * ($Cで自身のカラム名を参照することも可能です) 037 * 038 * ここでは、AAA:BBB:CCC:DDD という値を、$1,$2,$3,$4 に割り当てなおして、 039 * QUERYを実行します。また、$1 は、本来の値として、メニューの初期値設定等に 040 * 使用します。上記の例では、AAA が値で、それ以降は、引数になります。 041 * さらに、元の文字列"AAA:BBB:CCC:DDD"は、$0 に割り当てられます。割り当てがない 042 * 変数は、""(ゼロ文字列)として、扱われます。 043 * 又、$Cには自分自身のカラム名を割り当てます。 044 * 045 * カラムの表示に必要な属性は、DBColumn オブジェクト より取り出します。 046 * このクラスは、DBColumn オブジェクト毎に1つ作成されます。 047 * 048 * @og.rev 5.1.8.0 (2010/07/01) 新規追加 049 * @og.rev 8.5.7.0 (2024/03/29) QueryFormat を使用して共通部分の処理を行う。 050 * @og.group データ表示 051 * 052 * @version 5.0 053 * @author Hiroki Nakamura 054 * @since JDK5.0, 055 */ 056public class Renderer_MULTIQUERY extends AbstractRenderer { 057 /** このプログラムのVERSION文字列を設定します。 {@value} */ 058 private static final String VERSION = "8.5.7.0 (2024/03/29)" ; 059 060 // 8.5.7.0 (2024/03/29) QueryFormat を使用して共通部分の処理を行う。 061// private final String query; 062// private final String dbid; 063 private final String name; 064 private final QueryFormat queryFormat; // 8.5.7.0 (2024/03/29) 065 066// /** コネクションにアプリケーション情報を追記するかどうか指定 */ 067// public static final boolean USE_DB_APPLICATION_INFO = HybsSystem.sysBool( "USE_DB_APPLICATION_INFO" ) ; 068 069// private final ApplicationInfo appInfo; 070// private static final String SYSTEM_ID = HybsSystem.sys( "SYSTEM_ID" ) ; 071 072 /** 073 * デフォルトコンストラクター。 074 * このコンストラクターで、基本オブジェクトを作成します。 075 * 076 * @og.rev 8.5.7.0 (2024/03/29) QueryFormat を使用して共通部分の処理を行う。 077 */ 078 public Renderer_MULTIQUERY() { 079 super(); // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor 080 queryFormat = new QueryFormat(); // 8.5.7.0 (2024/03/29) 081// query = null; 082// dbid = null; 083// appInfo = makeApplicationInfo( null ); 084 name = null; 085 } 086 087 /** 088 * DBColumnオブジェクトを指定したprivateコンストラクター。 089 * 090 * @og.rev 8.5.7.0 (2024/03/29) QueryFormat を使用して共通部分の処理を行う。 091 * 092 * @param clm DBColumnオブジェクト 093 */ 094 private Renderer_MULTIQUERY( final DBColumn clm ) { 095 super(); // 6.4.1.1 (2016/01/16) PMD refactoring. It is a good practice to call super() in a constructor 096 name = clm.getName(); 097 queryFormat = new QueryFormat( clm.getRendererParam(),clm.getDbid(),name ); 098// query = clm.getRendererParam(); 099// dbid = clm.getDbid(); 100// appInfo = makeApplicationInfo( clm.getName() ); 101 } 102 103// /** 104// * アクセスログ取得の為、ApplicationInfoオブジェクトを作成します。 105// * 106// * @og.rev 8.5.7.0 (2024/03/29) QueryFormat を使用して共通部分の処理を行う。 107// * 108// * @param name オブジェクト 109// * 110// * @return ApplicationInfoオブジェクト 111// */ 112// private ApplicationInfo makeApplicationInfo( final String name ) { 113// // 6.3.9.1 (2015/11/27) Found 'DD'-anomaly for variable(PMD) 114// final ApplicationInfo infoTemp ; 115// if( USE_DB_APPLICATION_INFO ) { 116// infoTemp = new ApplicationInfo(); 117// // ユーザーID,IPアドレス,ホスト名 118// infoTemp.setClientInfo( SYSTEM_ID,HybsSystem.HOST_ADRS,HybsSystem.HOST_NAME ); 119// // 画面ID,操作,プログラムID 120// infoTemp.setModuleInfo( "Renderer_MULTIQUERY",null,name ); 121// } 122// else { 123// infoTemp = null; // 6.3.9.1 (2015/11/27) 124// } 125// 126// return infoTemp ; 127// } 128 129 /** 130 * 各オブジェクトから自分のインスタンスを返します。 131 * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に 132 * まかされます。 133 * 134 * @param clm DBColumnオブジェクト 135 * 136 * @return CellRendererオブジェクト 137 * @og.rtnNotNull 138 */ 139 public CellRenderer newInstance( final DBColumn clm ) { 140 return new Renderer_MULTIQUERY( clm ); 141 } 142 143 /** 144 * データの表示用文字列を返します。 145 * 146 * ここでは、AAA:BBB:CCC:DDD という値を、$1,$2,$3,$4 に割り当てなおして、 147 * QUERYを実行します。また、$1 は、本来の値として、メニューの初期値設定等に 148 * 使用します。上記の例では、AAA が値で、それ以降は、引数になります。 149 * さらに、元の文字列"AAA:BBB:CCC:DDD"は、$0 に割り当てられます。割り当てがない 150 * 変数は、""(ゼロ文字列)として、扱われます。 151 * 又、$Cには自分自身のカラム名を割り当てます。 152 * 153 * 複数件のデータが取得された場合、各データは、spanタグで囲われて返されます。 154 * <span>値1</span><span>値2</span><span>値3</span> 155 * 第2カラムを指定した場合、その値は、spanタグのclass属性として付加されます 156 * 157 * @og.rev 5.7.9.0 (2014/08/08) DBUtil.dbExecute 実行時エラーを回避 158 * @og.rev 6.4.4.1 (2016/03/18) StringBuilderの代わりに、OgBuilderを使用する。 159 * @og.rev 6.4.5.3 (2016/05/13) value は、コロン区切りの先頭だけ分離する。 160 * @og.rev 8.5.7.0 (2024/03/29) QueryFormat を使用して共通部分の処理を行う。 161 * 162 * @param value 入力値 163 * 164 * @return データの表示用文字列 165 * @og.rtnNotNull 166 */ 167 @Override 168 public String getValue( final String value ) { 169 final String[][] rtn = queryFormat.dbExecute( value ); 170 171// final StringFormat format = new StringFormat( query, value, name ); 172// final String str = format.format(); 173// 174// // 5.7.9.0 (2014/08/08) DBUtil.dbExecute 実行時エラーを回避 175// // 8.5.6.1 (2024/03/29) 引数が null の場合は、""(ゼロ文字列)を返す。 176//// String rtnVal = (value == null) ? "" : StringFormat.getValue( value ); // 6.4.5.3 (2016/05/13) 本来、QUERYで変換すべきだが、元の値を設定する。 177 String rtnVal = StringFormat.getValue( value ); // 6.4.5.3 (2016/05/13) 本来、QUERYで変換すべきだが、元の値を設定する。 178// try { 179// final String[][] rtn = DBUtil.dbExecute( str, null, appInfo, dbid ); 180 181 if( rtn != null && rtn.length > 0 && rtn[0] != null && rtn[0].length > 0 ) { 182 // 6.3.9.1 (2015/11/27) Found 'DD'-anomaly for variable(PMD) 183 final boolean isUseClass = rtn[0].length > 1 ; 184 185 final OgBuilder buf = new OgBuilder(); 186 // 8.5.4.2 (2024/01/12) PMD 7.0.0 ForLoopCanBeForeach 187// for( int i=0; i<rtn.length; i++ ) { 188// buf.append( "<span" ) 189// .appendIf( isUseClass , " class=\"" , rtn[i][1] ) 190// .append( "\">" , rtn[i][0] , "</span>" ); 191// } 192 for( final String[] vals : rtn ) { 193 buf.append( "<span" ) 194 .appendIf( isUseClass , " class=\"" , vals[1] ) 195 .append( "\">" , vals[0] , "</span>" ); 196 } 197 rtnVal = buf.toString(); 198 } 199// } 200// catch( final RuntimeException ex ) { 201// final String errMsg = "SQL文の処理に失敗しました。" + CR 202// + "query=" + query + " , inValue=" + value + " , name=" + name 203// + CR 204// + ex.getMessage() ; 205// System.err.println( errMsg ); 206// } 207 208 return rtnVal; 209 } 210 211 /** 212 * データ出力用の文字列を作成します。 213 * ファイル等に出力する形式を想定しますので、HTMLタグを含まない 214 * データを返します。 215 * 基本は、#getValue( String ) をそのまま返します。 216 * 217 * @og.rev 6.0.4.0 (2014/11/28) データ出力用のレンデラー 218 * 219 * @param value 入力値 220 * 221 * @return データ出力用の文字列 222 * @og.rtnNotNull 223 * @see #getValue( String ) 224 */ 225 @Override 226 public String getWriteValue( final String value ) { 227 return ( value == null ) ? "" : value; 228 } 229}