?? tagutils.java
字號:
?/*
* Copyright 2006-2007 original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ecside.tag;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.Tag;
import javax.servlet.jsp.tagext.TagSupport;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.taglibs.standard.lang.support.ExpressionEvaluatorManager;
import org.ecside.core.ECSideConstants;
import org.ecside.core.TableModel;
import org.ecside.core.TableModelUtils;
import org.ecside.core.bean.BaseBean;
import org.ecside.core.bean.GirdExpression;
import org.ecside.util.ExceptionUtils;
/**
* @author Wei Zijun
*
*/
public final class TagUtils {
private static Log logger = LogFactory.getLog(TagUtils.class);
public final static Map escape_REX=new HashMap();
public final static String VAR_EX="VAR";
public final static String REX_EX="(^"+VAR_EX+"|\\W+"+VAR_EX+")\\.(\\w+)";
public static void main(String[] args) {
// String attributeS=null;
// System.out.println(attributeS instanceof String);
// System.out.println(TagUtils.escapeExpression("aaa#[ESC_HTML:bnm]zzzzz#^ESC_HTML:<td>asd^vvvvv", "html"));
// System.out.println(TagUtils.escapeExpression("111", "html"));
// System.out.println(TagUtils.escapeExpression("aaa#[ESC_HTML:bnm]zzzzz#[ESC_HTML:asd]vvvvv",escape_HTML));
// System.out.println(TagUtils.escapeExpression("aaa#{ESC_HTML:bnm}zzzzz#{ESC_HTML:asd}vvvvv",escape_HTML1));
// System.out.println(TagUtils.escapeExpression("aaa#^ESC_HTML:bnm^zzzzz#^ESC_HTML:asd^vvvvv",escape_HTML2));
// System.out.println(TagUtils.escapeExpression("aaa#~ESC_HTML:bnm~zzzzz#~ESC_HTML:asd~vvvvv",escape_HTML3));
}
static {
escape_REX.put("html", new String[] {
"#\\[(ESC_HTML:)([^\\]]+)\\]*",
"#\\^(ESC_HTML:)([^\\^]+)\\^*",
"#~(ESC_HTML:)([^~]+~)*"
});
escape_REX.put("xml", new String[] {
"#\\[(ESC_XML:)([^\\]]+)\\]*",
"#\\^(ESC_XML:)([^\\^]+)\\^*",
"#~(ESC_XML:)([^~]+)~*"
});
escape_REX.put("js", new String[] {
"#\\[(ESC_JS:)([^\\]]+)\\]*",
"#\\^(ESC_JS:)([^\\^]+)\\^*",
"#~(ESC_JS:)([^~]+)~*"
});
}
private TagUtils() {
}
public final static String escapeString(String value, String escapeType){
if ("html".equals(escapeType)){
value=StringEscapeUtils.escapeHtml(value);
}else if ("xml".equals(escapeType)){
value=StringEscapeUtils.escapeXml(value);
}else if ("js".equals(escapeType)){
value=StringEscapeUtils.escapeJavaScript(value);
}
return value;
}
public final static String escapeExpression(String attribute,String escapeType){
String[] escapeRexs=(String[])escape_REX.get(escapeType);
for (int i=0;i<escapeRexs.length;i++){
Pattern pattern = Pattern.compile(escapeRexs[i]);
Matcher matcher = pattern.matcher(attribute);
StringBuffer attributeBuffer=new StringBuffer();
int lastIndex=0;
while (matcher.find()){
String pEsc=matcher.group(0);
// String pEscType=matcher.group(1);
String pEscValue=matcher.group(2);
pEscValue=escapeString(pEscValue,escapeType);
int start=matcher.start(0);
attributeBuffer.append(attribute.substring(lastIndex, start));
attributeBuffer.append(pEscValue);
lastIndex=start+pEsc.length();
}
attributeBuffer.append(attribute.substring(lastIndex));
attribute=attributeBuffer.toString();
}
return attribute;
}
public final static String evaluateExpressionAsString(String attributeName, String attribute, Tag tag, PageContext pageContext) {
try {
if (attribute != null) {
attribute = (String) ExpressionEvaluatorManager.evaluate(attributeName, attribute, String.class, tag, pageContext);
if (attribute!=null && attribute.startsWith(ECSideConstants.ESCAPE_PREFIX) ){
attribute=attribute.substring(ECSideConstants.ESCAPE_PREFIX.length());
attribute=escapeExpression(attribute,"html");
attribute=escapeExpression(attribute,"xml");
attribute=escapeExpression(attribute,"js");
}
}
} catch (JspException e) {
logger.error("Could not resolve EL for [" + attributeName + "] - " + ExceptionUtils.formatStackTrace(e));
}
return attribute;
}
public final static void initExpression(String expressionKey,String expressionStr ,BaseBean bBean){
if (expressionStr==null) {return ;}
bBean.addExpressionPropertys(expressionKey,null);
expressionStr=expressionStr.trim();
if (expressionStr.startsWith(ECSideConstants.EXPRESSION_PREFIX) ){
List expressionPropertys=new ArrayList();
expressionStr=expressionStr.substring(ECSideConstants.EXPRESSION_PREFIX.length());
Pattern pattern = Pattern.compile(TagUtils.REX_EX);
Matcher matcher = pattern.matcher(expressionStr);
while(matcher.find()){
expressionPropertys.add(matcher.group(2));
}
if (expressionPropertys.size()>0){
bBean.addExpressionPropertys(expressionKey,expressionPropertys.toArray());
}
GirdExpression calcEX=new GirdExpression();
calcEX.build(TagUtils.VAR_EX,expressionStr);
bBean.addExpression(expressionKey,calcEX);
}
}
public final static Object runExpression(String expressionKey,BaseBean bBean ,Object currentBean){
Object[] expressionPropertys=bBean.getExpressionPropertys(expressionKey);
if (expressionPropertys!=null){
GirdExpression expression=bBean.getExpression(expressionKey);
for (int i=0;i<expressionPropertys.length;i++){
String ep=(String)expressionPropertys[i];
expression.setArgument(ep, TableModelUtils.getColumnPropertyValue(currentBean, ep));
}
return expression.call();
}
return null;
}
public final static Object evaluateExpressionAsObject(String attributeName, Object attribute, Tag tag, PageContext pageContext) {
try {
if (attribute != null) {
attribute = ExpressionEvaluatorManager.evaluate(attributeName, attribute.toString(), Object.class, tag, pageContext);
}
if (attribute instanceof String){
String attributeS=attribute.toString();
if (attributeS.startsWith(ECSideConstants.ESCAPE_PREFIX) ){
attributeS=attributeS.substring(ECSideConstants.ESCAPE_PREFIX.length());
attributeS=escapeExpression(attributeS,"html");
attributeS=escapeExpression(attributeS,"xml");
attributeS=escapeExpression(attributeS,"js");
attribute=attributeS;
}
}
} catch (JspException e) {
logger.error("Could not resolve EL for [" + attributeName + "] - " + ExceptionUtils.formatStackTrace(e));
}
return attribute;
}
public final static Collection evaluateExpressionAsCollection(String attributeName, Object attribute, Tag tag, PageContext pageContext) {
attribute = evaluateExpressionAsObject(attributeName, attribute, tag, pageContext);
if (attribute == null || !(attribute instanceof Collection)) {
if (logger.isDebugEnabled()) {
logger.debug("The attribute [" + attributeName + "] is null or not a Collection.");
}
return null;
}
return (Collection)attribute;
}
public final static Boolean evaluateExpressionAsBoolean(String attributeName, String attribute, Tag tag, PageContext pageContext) {
attribute = evaluateExpressionAsString(attributeName, attribute, tag, pageContext);
if (attribute == null) {
return null;
}
return Boolean.valueOf(attribute);
}
public final static int evaluateExpressionAsInt(String attributeName, String attribute, Tag tag, PageContext pageContext) {
attribute = evaluateExpressionAsString(attributeName, attribute, tag, pageContext);
if (attribute == null) {
return 0;
}
return new Integer(attribute).intValue();
}
public static TableModel getModel(Tag tag) {
TableTag tableTag = (TableTag) TagSupport.findAncestorWithClass(tag, TableTag.class);
return tableTag.getModel();
}
public static boolean isIteratingBody(Tag tag) {
return getModel(tag).getCurrentRowBean() != null;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -