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.hayabusa.common.HybsSystem;
019import org.opengion.hayabusa.db.AbstractRenderer;
020import org.opengion.hayabusa.db.CellRenderer;
021import org.opengion.hayabusa.db.DBColumn;
022import org.opengion.fukurou.util.StringUtil;
023
024/**
025 * BARCODE レンデラーは、カラムのデータからCODE39 バーコードを表示する場合に使用するクラスです。
026 * div 要素に、バーコードに変換する文字列を設定して、それを JsBarcode.code39.min.js を使用して バーコードに
027 * 変換します。QRコードと統一できなかったため、canvas や video をJavaScript内部で生成しています。
028 * バーコードは、img タグに適用されます。
029 *
030 * スタート/エンドキャラクタ(*)は、JavaScript側(JsBarcode)で付与されます。データに付けるとエラーになる。
031 * チェックデジットのモジュラス43 は、既存のバーコードフォント仕様との互換性から、付けません。
032 *
033 * 基本的な構造は、データ設定用の div要素 と 表示用のimg起動用のscript です。
034 *
035 *    <div id="div≪カラム名≫" class="BARDATA" >≪値≫</div>
036 *    <img src="" id="img≪カラム名≫" class="BARIMG" ≪パラメータ≫ >
037 *    <script>barView("≪カラム名≫");</script>
038 *
039 * script に CDNサービス を使うと、無線環境(iPad等)ではものすごく遅くなったため、ローカルに配置することにします。
040 * <script src="https://cdn.jsdelivr.net/npm/jsbarcode@3.11.4/dist/barcodes/JsBarcode.code39.min.js"><!-- --></script>
041 *
042 * これらは、使用する画面に、組み込んでください。
043 * <script src="{@SYS.JSP}/common/option/JsBarcode.code39.min.js"><!-- --></script>
044 * <script src="{@SYS.JSP}/common/option/videocamera.js"><!-- --></script>
045 *
046 * @og.rev 7.4.2.2 (2021/05/28) 新規作成
047 * @og.group データ表示
048 *
049 * @version  7.4
050 * @author   Kazuhiko Hasegawa
051 * @since    JDK11.0,
052 */
053public class Renderer_BARCODE extends AbstractRenderer {
054        /** このプログラムのVERSION文字列を設定します。 {@value} */
055        private static final String VERSION = "8.5.3.0 (2023/09/08)" ;
056
057        private static final String BASE_HTML = "<div id='div≪カラム名≫' class='BARDATA' >≪値≫</div>"
058                                                                        + CR +  "<img src='' id='img≪カラム名≫' class='BARIMG' ≪パラメータ≫ >"
059                                                                        + CR +  "<script>barView('≪カラム名≫');</script>" ;
060
061        private String  name;
062        private String  param;
063
064        /**
065         * デフォルトコンストラクター
066         *
067         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
068         */
069        public Renderer_BARCODE() { super(); }          // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
070
071        /**
072         * DBColumnオブジェクトを指定したprivateコンストラクター。
073         *
074         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
075         * @og.rev 8.5.3.0 (2023/09/08) DynamicAttributes対応
076         *
077         * @param       clm     DBColumnオブジェクト
078         */
079        private Renderer_BARCODE( final DBColumn clm ) {
080                super();
081
082                name  = clm.getName();
083//              param = StringUtil.nvalAdd( clm.getRendererParam() ,
084//                                                                      clm.getRendererAttributes().get( "optionAttributes" ) );
085                // 8.5.3.0 (2023/09/08) optionAttributesの使い方が分からない為、optionAttributesのセットを廃止
086                param = StringUtil.nval( clm.getRendererParam() , "" );
087        }
088
089        /**
090         * 各オブジェクトから自分のインスタンスを返します。
091         * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に
092         * まかされます。
093         *
094         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
095         *
096         * @param       clm     DBColumnオブジェクト
097         * @return      CellEditorオブジェクト
098         * @og.rtnNotNull
099         */
100        public CellRenderer newInstance( final DBColumn clm ) {
101                return new Renderer_BARCODE( clm );
102        }
103
104        /**
105         * データの表示用文字列を返します。
106         *
107         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
108         *
109         * @param       value   入力値
110         * @return      データの表示用文字列
111         * @og.rtnNotNull
112         */
113        @Override
114        public String getValue( final String value ) {
115                return makeBarcode( name, value );
116        }
117
118        /**
119         * データの表示用文字列を返します。
120         *
121         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
122         *
123         * @param       row             行番号
124         * @param       value   入力値
125         * @return      データ表示用の文字列
126         * @og.rtnNotNull
127         */
128        @Override
129        public String getValue( final int row,final String value ) {
130                final String newName = name + HybsSystem.JOINT_STRING + row;
131                return makeBarcode( newName, value );
132        }
133
134        /**
135         * データ出力用の文字列を作成します。
136         * ファイル等に出力する形式を想定しますので、HTMLタグを含まない
137         * データを返します。
138         * 基本は、#getValue( String ) をそのまま返します。
139         *
140         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
141         *
142         * @param       value   入力値
143         * @return      データ出力用の文字列
144         * @og.rtnNotNull
145         * @see         #getValue( String )
146         */
147        @Override
148        public String getWriteValue( final String value ) {
149                return value == null ? "" : value;
150        }
151
152        /**
153         * データの表示用文字列を返します。
154         *
155         * @og.rev 7.4.2.2 (2021/05/28) 新規作成
156         *
157         * @param       name    カラム名
158         * @param       value   入力値 表示するファイルのアドレス
159         * @return      データ表示用の文字列
160         * @og.rtnNotNull
161         */
162        private String makeBarcode( final String name,final String value ) {
163
164                return BASE_HTML.replaceAll( "≪カラム名≫"  , name )
165                                                .replaceAll( "≪パラメータ≫" , param )
166                                                .replaceAll( "≪値≫"     , value );
167        }
168}