⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 entityjoinoperator.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: EntityJoinOperator.java 5462 2005-08-05 18:35:48Z jonesde $ * *  Copyright (c) 2002 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.entity.condition;import java.util.ArrayList;import java.util.Iterator;import java.util.List;import java.util.Map;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericEntity;import org.ofbiz.entity.GenericModelException;import org.ofbiz.entity.model.ModelEntity;/** * Encapsulates operations between entities and entity fields. This is a immutable class. * *@author     <a href='mailto:chris_maurer@altavista.com'>Chris Maurer</a> *@author     <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> *@author     <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> *@since      1.0 *@version    $Rev: 5462 $ */public class EntityJoinOperator extends EntityOperator {    protected boolean shortCircuitValue;    protected EntityJoinOperator(int id, String code, boolean shortCircuitValue) {        super(id, code);        this.shortCircuitValue = shortCircuitValue;    }    public void addSqlValue(StringBuffer sql, ModelEntity modelEntity, List entityConditionParams, boolean compat, Object lhs, Object rhs) {        sql.append('(');        sql.append(((EntityCondition) lhs).makeWhereString(modelEntity, entityConditionParams));        sql.append(' ');        sql.append(getCode());        sql.append(' ');        if (rhs instanceof EntityCondition) {            sql.append(((EntityCondition) rhs).makeWhereString(modelEntity, entityConditionParams));        } else {            addValue(sql, null, rhs, entityConditionParams);        }        sql.append(')');    }    public void addSqlValue(StringBuffer sql, ModelEntity modelEntity, List entityConditionParams, List conditionList) {        if (conditionList != null && conditionList.size() > 0) {            sql.append('(');            Iterator conditionIter = conditionList.iterator();            while (conditionIter.hasNext()) {                EntityCondition condition = (EntityCondition) conditionIter.next();                sql.append(condition.makeWhereString(modelEntity, entityConditionParams));                 if (conditionIter.hasNext()) {                     sql.append(' ');                     sql.append(getCode());                     sql.append(' ');                 }            }            sql.append(')');        }    }    protected EntityCondition freeze(Object item) {        return ((EntityCondition) item).freeze();    }    public EntityCondition freeze(Object lhs, Object rhs) {        return new EntityExpr(freeze(lhs), this, freeze(rhs));    }    public EntityCondition freeze(List conditionList) {        List newList = new ArrayList(conditionList.size());        for (int i = 0; i < conditionList.size(); i++) {            EntityCondition condition = (EntityCondition) conditionList.get(i);            newList.add(condition.freeze());        }        return new EntityConditionList(newList, this);    }    public void visit(EntityConditionVisitor visitor, List conditionList) {        if (conditionList != null && conditionList.size() > 0) {            for (int i = 0; i < conditionList.size(); i++) {                visitor.visit(conditionList.get(i));            }        }    }    public void visit(EntityConditionVisitor visitor, Object lhs, Object rhs) {        ((EntityCondition) lhs).visit(visitor);        visitor.visit(rhs);    }    public boolean entityMatches(GenericEntity entity, Object lhs, Object rhs) {        return entityMatches(entity, (EntityCondition) lhs, (EntityCondition) rhs);    }    public Object eval(GenericEntity entity, EntityCondition lhs, EntityCondition rhs) {        return entityMatches(entity, lhs, rhs) ? Boolean.TRUE : Boolean.FALSE;    }    public boolean entityMatches(GenericEntity entity, EntityCondition lhs, EntityCondition rhs) {        if (lhs.entityMatches(entity)) return shortCircuitValue;        if (rhs.entityMatches(entity)) return shortCircuitValue;        return !shortCircuitValue;    }    public boolean entityMatches(GenericEntity entity, List conditionList) {        return mapMatches(entity.getDelegator(), entity, conditionList);    }    public Object eval(GenericDelegator delegator, Map map, Object lhs, Object rhs) {        return castBoolean(mapMatches(delegator, map, lhs, rhs));    }    public boolean mapMatches(GenericDelegator delegator, Map map, Object lhs, Object rhs) {        if (((EntityCondition) lhs).mapMatches(delegator, map)) return shortCircuitValue;        if (((EntityCondition) rhs).mapMatches(delegator, map)) return shortCircuitValue;        return !shortCircuitValue;    }    public Object eval(GenericDelegator delegator, Map map, List conditionList) {        return castBoolean(mapMatches(delegator, map, conditionList));    }    public boolean mapMatches(GenericDelegator delegator, Map map, List conditionList) {        if (conditionList != null && conditionList.size() > 0) {            for (int i = 0; i < conditionList.size(); i++) {                EntityCondition condition = (EntityCondition) conditionList.get(i);                if (condition.mapMatches(delegator, map) == shortCircuitValue) return shortCircuitValue;            }        }        return !shortCircuitValue;    }    public void validateSql(ModelEntity modelEntity, Object lhs, Object rhs) throws GenericModelException {        validateSql(modelEntity, (EntityCondition) lhs, (EntityCondition) rhs);    }    public void validateSql(ModelEntity modelEntity, EntityCondition lhs, EntityCondition rhs) throws GenericModelException {        lhs.checkCondition(modelEntity);        rhs.checkCondition(modelEntity);    }    public void validateSql(ModelEntity modelEntity, List conditionList) throws GenericModelException {        if (conditionList == null && conditionList.size() == 0)            throw new GenericModelException("Empty list for joining");        for (int i = 0; i < conditionList.size(); i++) {            Object condObj = conditionList.get(i);            if (!(condObj instanceof EntityCondition)) {                throw new GenericModelException("Object is not a valid EntityCondition [" + condObj.getClass().getName() + "]");            }            EntityCondition condition = (EntityCondition) condObj;            condition.checkCondition(modelEntity);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -