📄 iftag.java
字号:
/*
* $Id: IfTag.java,v 1.2 2003/09/14 05:36:48 jonesde Exp $
*
* Copyright (c) 2002-2003 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
package org.ofbiz.content.webapp.taglib;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.Collection;
import javax.servlet.jsp.JspTagException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.BodyContent;
import javax.servlet.jsp.tagext.BodyTagSupport;
import org.ofbiz.base.util.Debug;
/**
* IfTag - Conditional Tag.
*
* @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a>
* @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a>
* @version 1.0
* @created August 31, 2001
*/
public class IfTag extends BodyTagSupport {
public static final String module = IfTag.class.getName();
private String name = null;
private String value = null;
private String type = null;
private Integer size = null;
public void setName(String name) {
this.name = name;
}
public void setValue(String value) {
this.value = value;
}
public void setType(String type) {
this.type = type;
}
public void setSize(String size) throws NumberFormatException {
this.size = Integer.valueOf(size);
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
public String getType() {
return type;
}
public String getSize() {
if (size == null)
return null;
return size.toString();
}
public int doStartTag() throws JspTagException {
Object object = null;
try {
object = pageContext.findAttribute(name);
if (object == null) {
object = pageContext.getRequest().getParameter(name);
}
if (object == null) {
return SKIP_BODY;
}
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
if (size != null) {
int localSize = size.intValue();
try {
if (object instanceof Collection) {
// the object is a Collection so compare the size.
if (((Collection) object).size() > localSize)
return EVAL_BODY_AGAIN;
} else if (object instanceof String) {
// the object is a Collection so compare the size.
if (((String) object).length() > localSize)
return EVAL_BODY_AGAIN;
} else {
// use reflection to find a size() method
try {
Method sizeMethod = object.getClass().getMethod("size", null);
int objectSize = ((Integer) sizeMethod.invoke(object, null)).intValue();
if (objectSize > localSize)
return EVAL_BODY_AGAIN;
} catch (Exception e) {
Debug.logError(e, module);
return SKIP_BODY;
}
}
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else if (object instanceof Boolean || "Boolean".equalsIgnoreCase(type)) {
// Assume the object is a Boolean and compare to the Boolean value of value.
try {
Boolean b = (Boolean) object;
if (value != null) {
Boolean v = new Boolean(value);
if (b.equals(v))
return EVAL_BODY_AGAIN;
} else {
if (b.booleanValue())
return EVAL_BODY_AGAIN;
}
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else if (value != null) {
if (object instanceof String || "String".equalsIgnoreCase(type)) {
// Assume the object is a string and compare to the String value of value.
try {
String s = (String) object;
if (s.equals(value))
return EVAL_BODY_AGAIN;
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else if (object instanceof Integer || "Integer".equalsIgnoreCase(type)) {
// Assume the object is a Integer and compare to the Integer value of value.
try {
Integer i = (Integer) object;
Integer v = Integer.valueOf(value);
if (i.equals(v))
return EVAL_BODY_AGAIN;
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else if (object instanceof Long || "Long".equalsIgnoreCase(type)) {
// Assume the object is a Integer and compare to the Integer value of value.
try {
Long i = (Long) object;
Long v = Long.valueOf(value);
if (i.equals(v))
return EVAL_BODY_AGAIN;
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else if (object instanceof Float || "Float".equalsIgnoreCase(type)) {
// Assume the object is a Double and compare to the Double value of value.
try {
Float d = (Float) object;
Float v = Float.valueOf(value);
if (d.equals(v))
return EVAL_BODY_AGAIN;
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else if (object instanceof Double || "Double".equalsIgnoreCase(type)) {
// Assume the object is a Double and compare to the Double value of value.
try {
Double d = (Double) object;
Double v = Double.valueOf(value);
if (d.equals(v))
return EVAL_BODY_AGAIN;
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
} else {
// Assume the object is an Object and compare to the Object named value.
Object valueObject = null;
try {
valueObject = pageContext.findAttribute(value);
if (valueObject != null && valueObject.equals(object))
return EVAL_BODY_AGAIN;
} catch (RuntimeException e) {
Debug.logError(e, module);
return SKIP_BODY;
}
}
} else {
// basicly if no other comparisons available, just check to see if
// the thing is null or not, and since we've already checked that,
// treat as true here
return EVAL_BODY_AGAIN;
}
return SKIP_BODY;
}
public int doAfterBody() {
return SKIP_BODY;
}
public int doEndTag() {
try {
BodyContent body = getBodyContent();
if (body != null) {
JspWriter out = body.getEnclosingWriter();
String bodyString = body.getString();
body.clearBody();
//Debug.logInfo("printing string: " + bodyString, module);
out.print(bodyString);
}
} catch (IOException e) {
Debug.logError(e, "IfTag Error.", module);
}
return EVAL_PAGE;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -