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 */
016 package org.opengion.plugin.column;
017
018 import org.opengion.fukurou.util.ErrorMessage;
019 import org.opengion.hayabusa.db.AbstractDBType;
020 import org.opengion.hayabusa.db.DBTypeCheckUtil;
021
022 /**
023 * åŠè§?全角混在ã®ä¸?ˆ¬çš?ªåˆ¶é™ã?ãªã?–‡å—å?を扱ã?‚ºã®ã€ã‚«ãƒ©ãƒ?±žæ?を定義ã—ã¾ã™ã?
024 *
025 * Char ã¾ãŸã? Varchar2 属æ?ã«å¯¾å¿œã™ã‚‹æ–‡å—型クラスã§ã€DBType_XK ã¨ã®é•ã„ã¯ã€?
026 * valueCheck ã§ã€ã‚¯ãƒã‚¹ã‚µã‚¤ãƒˆã‚¹ã‚¯ãƒªãƒ—ティングãƒã‚§ãƒ?‚¯ã‚’行ã‚ãªã?‚ºã€?
027 * '<', '>'ãªã©ã®ãƒ??ã‚¿ã‚’ã?直接ãƒ??タベã?スã«ç™»éŒ²ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã?
028 * よã£ã¦ã€ã“ã®DBTypeを使用ã™ã‚‹å ´åˆã?ã€å¿?šã€Editor_HTML ã€Renderer_HTML
029 * を使用ã—ã¦ã€?<', '>'ãªã©ã®ãƒ??タをエスケープ表示ã•ã›ã¦ãã ã•ã„ã€?
030 *
031 * タイプãƒã‚§ãƒ?‚¯ã¨ã—ã¦ã€ä»¥ä¸‹ã?æ¡ä»¶ã‚’判定ã—ã¾ã™ã?
032 * ・æ–?—å?é•·ã¯ã€Byteæ›ç®—ã§ã®æ–?—æ•°ã¨ã®æ¯”è¼?
033 * ・æ–?—パラメータ㮠æ£è¦è¡¨ç¾ãƒã‚§ãƒ?‚¯
034 *
035 * @og.rev 3.3.3.2 (2003/07/24) æ–°è¦ä½œæ?
036 * @og.group ãƒ??タ属æ?
037 *
038 * @version 4.0
039 * @author Kazuhiko Hasegawa
040 * @since JDK5.0,
041 */
042 public class DBType_ALL extends AbstractDBType {
043 //* ã“ã?プãƒã‚°ãƒ©ãƒ??VERSIONæ–?—å?ã‚’è¨å®šã—ã¾ã™ã? {@value} */
044 private static final String VERSION = "5.2.2.0 (2010/11/01)" ;
045
046 /**
047 * ãƒ??ã‚¿ãŒç™»éŒ²å¯èƒ½ã‹ã©ã?‹ã‚’ãƒã‚§ãƒ?‚¯ã—ã¾ã™ã?
048 * ãƒ??ã‚¿ãŒã‚¨ãƒ©ãƒ¼ã®å ´åˆã?ã€ãã®ã‚¨ãƒ©ãƒ¼å†?®¹ã‚’è¿”ã—ã¾ã™ã?
049 *
050 * @og.rev 3.6.0.0 (2004/09/22) dbType パラメータを引数ã«è¿½åŠ?
051 * @og.rev 5.2.2.0 (2010/11/01) 厳å¯?«ãƒã‚§ãƒ?‚¯(isStrict=true)ã™ã‚‹ãƒ•ラグを追åŠ?
052 *
053 * @param key ã‚ー
054 * @param value 値
055 * @param sizeX 整数部åˆ??æ–?—å?ã®é•·ã?
056 * @param sizeY 少数部åˆ??æ–?—å?ã®é•·ã?
057 * @param typeParam dbType パラメータ
058 * @param isStrict 厳å¯?«ãƒã‚§ãƒ?‚¯ã™ã‚‹ã‹ã©ã?‹[true:ã™ã‚‹/false:標準的]
059 *
060 * @return エラーå†?®¹
061 */
062 // public ErrorMessage valueCheck( final String key ,final String value ,
063 // final int sizeX ,final int sizeY ,final String param ) {
064 @Override
065 public ErrorMessage valueCheck( final String key ,final String value ,
066 final int sizeX ,final int sizeY ,final String typeParam ,final boolean isStrict) {
067
068 ErrorMessage msg = new ErrorMessage();
069 if( value == null || value.length() == 0 ) { return msg; }
070
071 int len = (sizeY == 0) ? sizeX : sizeX + sizeY + 1;
072 String check = DBTypeCheckUtil.byteLengthCheck( value,len );
073 if( check != null ) {
074 // æ–?—å?ã®é•·ã•ãŒæŒ?®šã?é•·ã•よりも長ã?§ã™ã?
075 msg.addMessage( 0,ErrorMessage.NG,"ERR0006",key,value,check,String.valueOf( len ) );
076 }
077
078 // 3.6.0.0 (2004/09/22) dbType パラメータを使用ã—ãŸãƒžãƒƒãƒãƒã‚§ãƒ?‚¯
079 check = DBTypeCheckUtil.matcheCheck( value,typeParam );
080 if( check != null ) {
081 // æŒ?®šã?æ–?—以外ã?æ–?—ãŒä½¿ã‚れã¦ã?¾ã™ã?
082 msg.addMessage( 0,ErrorMessage.NG,"ERR0009", key,check );
083 }
084
085 return msg;
086 }
087 }