📄 logicalclause.java
字号:
/** * Copyright (C) 2003-2004 Funambol * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package sync4j.framework.server.store;import java.io.Serializable;import java.util.ArrayList;import org.apache.commons.lang.builder.ToStringBuilder;/** * This class recognize the clause of type logical for the query. * For logical clause mean AND, OR, NOT clause. * * @author Luigia Fassina @ Funambol * * @version $Id: LogicalClause.java,v 1.3 2004/04/13 09:37:34 luigia Exp $ * */public class LogicalClause extends Clause implements Serializable { // --------------------------------------------------------------- Constants public static final String OPT_AND = "AND"; public static final String OPT_OR = "OR" ; public static final String OPT_NOT = "NOT"; // ------------------------------------------------------------ Private data private String operator; private Clause[] operands; // ------------------------------------------------------------ constructors /** * The default constructor is disabled. We do not want it to be used. */ protected LogicalClause() {} /** * Create a new LogicalClause object with the given operator and operands. * Operator must be one of * <ul> * <li> AND * <li> OR * <li> NOT * </ul> * * operands must be of size 1 in the case operator is NOT and of size 2 in * the case operator is AND or OR. * * @param operator the operator * @param operands the operands - NOT NULL * * @throws IllegalArgumentException if the given values are not correct. * @throws IllegalArgumentException if any required parameter is null. */ public LogicalClause(String operator, Clause[] operands) { if (!OPT_AND.equalsIgnoreCase(operator) && !OPT_OR.equalsIgnoreCase(operator) && !OPT_NOT.equalsIgnoreCase(operator)) { throw new IllegalArgumentException( "operator " + operator + " not supported; it must be one of (" + OPT_AND + "," + OPT_OR + "," + OPT_NOT + ")" ); } if (operands == null) { throw new NullPointerException("operands is null!"); } if (OPT_NOT.equalsIgnoreCase(operator)) { if (operands.length != 1) { throw new IllegalArgumentException( "one and only one operand is required with " + OPT_NOT ); } } else { if (operands.length < 2) { throw new IllegalArgumentException( "two or more operands are required with " + OPT_AND + " or " + OPT_OR ); } } this.operator = operator; this.operands = operands; } /** Getter for property operator. * @return Value of property operator. * */ public String getOperator() { return operator; } // ------------------------------------------------ Implementation of Clause public PreparedWhere getPreparedWhere() { StringBuffer sql = new StringBuffer(); ArrayList parameters = new ArrayList(); PreparedWhere pw = null; if (isUnaryOperator()) { pw = operands[0].getPreparedWhere(); sql.append(operator.toLowerCase()).append(pw.sql); for(int i=0; i<pw.parameters.length; ++i) { parameters.add(pw.parameters[i]); } } else { for (int i=0; i<operands.length; ++i) { pw = operands[i].getPreparedWhere(); if (i>0) { sql.append(' ').append(operator.toLowerCase()).append(' '); } sql.append(pw.sql); for(int j=0; j<pw.parameters.length; ++j) { parameters.add(pw.parameters[j]); } } } PreparedWhere ret = new PreparedWhere(); ret.sql = '(' + sql.toString() + ')'; ret.parameters = parameters.toArray(); return ret; } // --------------------------------------------------------- Private methods private boolean isUnaryOperator() { return OPT_NOT.equalsIgnoreCase(operator); } // ------------------------------------------------------------------------- public String toString() { ToStringBuilder sb = new ToStringBuilder(this); sb.append("operator:", operator); return sb.toString(); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -