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 java.util.Locale; 019import java.util.Map; 020import java.util.HashMap; 021 022import org.opengion.hayabusa.common.HybsSystem; // 7.3.2.3 (2021/04/09) 023import org.opengion.hayabusa.db.AbstractRenderer; 024import org.opengion.hayabusa.db.CellRenderer; 025import org.opengion.hayabusa.db.DBColumn; 026import org.opengion.fukurou.util.StringUtil ; // 6.2.2.0 (2015/03/27) 027 028/** 029 * ICON レンデラーは、カラムのファイル名の拡張子からアイコンファイルのイメージタグを作成します。 030 * イメージデータは、jsp/image/thumb を使用します。 031 * 032 * 実質的には、アイコンではなく、サムネイルとして利用します。 033 * 034 * 縦横比をそのままに、縦か横の最大値に画像サイズを合わせるには、 035 * style="max-width:100; max-height:100;" をセットすることで対応できます。 036 * class="ICON" 属性を出力しておきますので、CSSファイルで記述してください。 037 * 038 * (例:) 039 *<pre> 040 * <style> 041 * img.ICON { max-width:100px; max-height:100px; } 042 * </style> 043 *</pre> 044 * 045 * このクラスは、不変オブジェクトとして、共有されます。 046 * 047 * @og.rev 5.6.5.1 (2013/06/14) 新規作成 048 * @og.rev 7.3.2.3 (2021/04/09) システム定数のJSP_IMGを使用します。(※ SYS.JSP + SYS.IMAGE_DIR) 049 * 050 * @og.group データ表示 051 * 052 * @version 4.0 053 * @author Kazuhiko Hasegawa 054 * @since JDK5.0, 055 */ 056public class Renderer_ICON extends AbstractRenderer { 057 /** このプログラムのVERSION文字列を設定します。 {@value} */ 058 private static final String VERSION = "7.0.1.0 (2018/10/15)" ; 059 060 private static final CellRenderer DB_CELL = new Renderer_ICON() ; 061 062 /** 7.3.2.3 (2021/04/09) システム定数のJSP_IMGを使用します。(※ SYS.JSP + SYS.IMAGE_DIR) */ 063 private static final String JSP_IMG = HybsSystem.sys( "JSP_IMG" ) ; 064 065// private static final String DOC_VIEW = "../image/thumb/docview.png" ; // その他のアイコン 066 private static final String DOC_VIEW = JSP_IMG + "/thumb/docview.png" ; // その他のアイコン 067 068 // アイコンファイルに割り当てられる拡張子とファイルの関連(MAP)情報 069 /** staticイニシャライザ後、読み取り専用にするので、ConcurrentHashMap を使用しません。 */ 070 private static final Map<String,String> ICON_MAP ; 071 static { 072 ICON_MAP = new HashMap<>(); 073 074// ICON_MAP.put( "doc" , "../image/thumb/doc.png" ); 075// ICON_MAP.put( "docx" , "../image/thumb/doc.png" ); 076// ICON_MAP.put( "xls" , "../image/thumb/xls.png" ); 077// ICON_MAP.put( "xlsx" , "../image/thumb/xls.png" ); 078// ICON_MAP.put( "xlsm" , "../image/thumb/xls.png" ); // 6.2.2.0 (2015/03/27) マクロ付Excel(.xlsm)対応 079// ICON_MAP.put( "ppt" , "../image/thumb/ppt.png" ); 080// ICON_MAP.put( "pptx" , "../image/thumb/ppt.png" ); 081// ICON_MAP.put( "pdf" , "../image/thumb/pdf.png" ); 082// ICON_MAP.put( "txt" , "../image/thumb/text.png" ); 083// ICON_MAP.put( "zip" , "../image/thumb/zip.png" ); 084 085 ICON_MAP.put( "doc" , JSP_IMG + "/thumb/doc.png" ); 086 ICON_MAP.put( "docx" , JSP_IMG + "/thumb/doc.png" ); 087 ICON_MAP.put( "xls" , JSP_IMG + "/thumb/xls.png" ); 088 ICON_MAP.put( "xlsx" , JSP_IMG + "/thumb/xls.png" ); 089 ICON_MAP.put( "xlsm" , JSP_IMG + "/thumb/xls.png" ); // 6.2.2.0 (2015/03/27) マクロ付Excel(.xlsm)対応 090 ICON_MAP.put( "ppt" , JSP_IMG + "/thumb/ppt.png" ); 091 ICON_MAP.put( "pptx" , JSP_IMG + "/thumb/ppt.png" ); 092 ICON_MAP.put( "pdf" , JSP_IMG + "/thumb/pdf.png" ); 093 ICON_MAP.put( "txt" , JSP_IMG + "/thumb/text.png" ); 094 ICON_MAP.put( "zip" , JSP_IMG + "/thumb/zip.png" ); 095 } 096 097 /** 098 * デフォルトコンストラクター 099 * 100 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 101 */ 102 public Renderer_ICON() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 103 104 /** 105 * 各オブジェクトから自分のインスタンスを返します。 106 * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に 107 * まかされます。 108 * 109 * @param clm DBColumnオブジェクト 110 * 111 * @return CellRendererオブジェクト 112 * @og.rtnNotNull 113 */ 114 public CellRenderer newInstance( final DBColumn clm ) { 115 return DB_CELL; 116 } 117 118 /** 119 * データの表示用文字列を返します。 120 * 121 * @og.rev 6.0.2.4 (2014/10/17) img タグに、title 属性追記 122 * @og.rev 6.2.2.0 (2015/03/27) BRと\nを相互に変換する処理を追加 123 * @og.rev 6.2.2.3 (2015/04/10) htmlフィルターに、BR→改行処理機能を追加。 124 * @og.rev 7.0.1.0 (2018/10/15) XHTML → HTML5 対応(空要素の、"/>" 止めを、">" に変更します)。 125 * 126 * @param value 入力値 127 * 128 * @return データの表示用文字列 129 * @og.rtnNotNull 130 */ 131 @Override 132 public String getValue( final String value ) { 133 String icon = null; 134 135 if( value != null ) { 136 String sufix = null; 137 final int idx = value.lastIndexOf('.'); // 6.0.2.5 (2014/10/31) refactoring 138 if( idx >= 0 ) { 139 sufix = value.substring( idx+1 ).toLowerCase( Locale.JAPAN ); 140 icon = ICON_MAP.get( sufix ); 141 } 142 } 143 144 if( icon == null ) { icon = DOC_VIEW; } 145 146 final String title = StringUtil.htmlFilter( value,true ); 147// return "<img class=\"ICON\" src=\"" + icon + "\" alt=\"" + title + "\" title=\"" + title + "\" />" ; 148 return "<img class=\"ICON\" src=\"" + icon + "\" alt=\"" + title + "\" title=\"" + title + "\" >" ; 149 } 150 151 /** 152 * データ出力用の文字列を作成します。 153 * ファイル等に出力する形式を想定しますので、HTMLタグを含まない 154 * データを返します。 155 * 基本は、#getValue( String ) をそのまま返します。 156 * 157 * @og.rev 6.0.4.0 (2014/11/28) データ出力用のレンデラー 158 * 159 * @param value 入力値 160 * 161 * @return データ出力用の文字列 162 * @og.rtnNotNull 163 * @see #getValue( String ) 164 */ 165 @Override 166 public String getWriteValue( final String value ) { 167 return value == null ? "" : value; 168 } 169}