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

📄 findservices.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * $Id: FindServices.java 6697 2006-02-07 06:17:14Z jonesde $ * * Copyright (c) 2001-2005 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.common;import java.sql.Timestamp;import java.util.ArrayList;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Map;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.ObjectType;import org.ofbiz.base.util.StringUtil;import org.ofbiz.base.util.UtilDateTime;import org.ofbiz.base.util.UtilHttp;import org.ofbiz.base.util.UtilValidate;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericEntityException;import org.ofbiz.entity.GenericValue;import org.ofbiz.entity.condition.EntityComparisonOperator;import org.ofbiz.entity.condition.EntityConditionList;import org.ofbiz.entity.condition.EntityCondition;import org.ofbiz.entity.condition.EntityExpr;import org.ofbiz.entity.condition.EntityJoinOperator;import org.ofbiz.entity.condition.EntityOperator;import org.ofbiz.entity.condition.EntityFunction;import org.ofbiz.entity.condition.EntityFieldValue;import org.ofbiz.entity.model.ModelEntity;import org.ofbiz.entity.util.EntityFindOptions;import org.ofbiz.entity.util.EntityListIterator;import org.ofbiz.entity.util.EntityUtil;import org.ofbiz.service.DispatchContext;import org.ofbiz.service.ServiceUtil;import org.ofbiz.service.GenericServiceException;import org.ofbiz.service.LocalDispatcher;/** * FindServices Class * * @author     <a href="mailto:byersa@automationgroups.com">Al Byers</a> * @version    $Rev: 6697 $ * @since      2.2 */public class FindServices {    public static final String module = FindServices.class.getName();    public static HashMap entityOperators;    static {        entityOperators = new HashMap();        entityOperators.put("and", EntityOperator.AND);        entityOperators.put("between", EntityOperator.BETWEEN);        entityOperators.put("equals", EntityOperator.EQUALS);        entityOperators.put("greaterThan", EntityOperator.GREATER_THAN);        entityOperators.put("greaterThanEqualTo", EntityOperator.GREATER_THAN_EQUAL_TO);        entityOperators.put("in", EntityOperator.IN);        entityOperators.put("lessThan", EntityOperator.LESS_THAN);        entityOperators.put("lessThanEqualTo", EntityOperator.LESS_THAN_EQUAL_TO);        entityOperators.put("like", EntityOperator.LIKE);        entityOperators.put("not", EntityOperator.NOT);        entityOperators.put("notEqual", EntityOperator.NOT_EQUAL);        entityOperators.put("or", EntityOperator.OR);    }    public FindServices() {}    /**     * prepareField, analyse inputFields to created normalizedFields a map with field name and operator.     *     * This is use to the generic method that expects entity data affixed with special suffixes     * to indicate their purpose in formulating an SQL query statement.     * @param inputFields     Input parameters run thru UtilHttp.getParameterMap       * @return a map with field name and operator     */    public static HashMap prepareField(Map inputFields, Map queryStringMap, Map origValueMap) {        // Strip the "_suffix" off of the parameter name and        // build a three-level map of values keyed by fieldRoot name,        //    fld0 or fld1,  and, then, "op" or "value"        // ie. id        //  - fld0        //      - op:like        //      - value:abc        //  - fld1 (if there is a range)        //      - op:lessThan        //      - value:55 (note: these two "flds" wouldn't really go together)        // Also note that op/fld can be in any order. (eg. id_fld1_equals or id_equals_fld1)        // Note that "normalizedFields" will contain values other than those        // Contained in the associated entity.        // Those extra fields will be ignored in the second half of this method.        HashMap normalizedFields = new HashMap();        Iterator ifIter = inputFields.keySet().iterator();        //StringBuffer queryStringBuf = new StringBuffer();        while (ifIter.hasNext()) {            String fieldNameRaw = null; // The name as it appeas in the HTML form            String fieldNameRoot = null; // The entity field name. Everything to the left of the first "_" if                                                                 //  it exists, or the whole word, if not.            String fieldPair = null; // "fld0" or "fld1" - begin/end of range or just fld0 if no range.            Object fieldValue = null; // If it is a "value" field, it will be the value to be used in the query.                                                        // If it is an "op" field, it will be "equals", "greaterThan", etc.            int iPos = -1;            int iPos2 = -1;            HashMap subMap = null;            HashMap subMap2 = null;            String fieldMode = null;            fieldNameRaw = (String) ifIter.next();            fieldValue = inputFields.get(fieldNameRaw);            if (ObjectType.isEmpty(fieldValue)) {                continue;            }            //queryStringBuffer.append(fieldNameRaw + "=" + fieldValue);            queryStringMap.put(fieldNameRaw, fieldValue);            iPos = fieldNameRaw.indexOf("_"); // Look for suffix            // This is a hack to skip fields from "multi" forms            // These would have the form "fieldName_o_1"            if (iPos >= 0) {                String suffix = fieldNameRaw.substring(iPos + 1);                iPos2 = suffix.indexOf("_");                if (iPos2 == 1) {                    continue;                }            }            // If no suffix, assume no range (default to fld0) and operations of equals            // If no field op is present, it will assume "equals".            if (iPos < 0) {                fieldNameRoot = fieldNameRaw;                fieldPair = "fld0";                fieldMode = "value";            } else { // Must have at least "fld0/1" or "equals, greaterThan, etc."                // Some bogus fields will slip in, like "ENTITY_NAME", but they will be ignored                fieldNameRoot = fieldNameRaw.substring(0, iPos);                String suffix = fieldNameRaw.substring(iPos + 1);                iPos2 = suffix.indexOf("_");                if (iPos2 < 0) {                    if (suffix.startsWith("fld")) {                        // If only one token and it starts with "fld"                        //  assume it is a value field, not an op                        fieldPair = suffix;                        fieldMode = "value";                    } else {                        // if it does not start with fld, assume it is an op or the 'ignore case' (ic) field                        fieldPair = "fld0";                        fieldMode = suffix;                    }                } else {                    String tkn0 = suffix.substring(0, iPos2);                    String tkn1 = suffix.substring(iPos2 + 1);                    // If suffix has two parts, let them be in any order                    // One will be "fld0/1" and the other will be the op (eg. equals, greaterThan_                    if (tkn0.startsWith("fld")) {                        fieldPair = tkn0;                        fieldMode = tkn1;                    } else {                        fieldPair = tkn1;                        fieldMode = tkn0;                    }                }            }            subMap = (HashMap) normalizedFields.get(fieldNameRoot);            if (subMap == null) {                subMap = new HashMap();                normalizedFields.put(fieldNameRoot, subMap);            }            subMap2 = (HashMap) subMap.get(fieldPair);            if (subMap2 == null) {                subMap2 = new HashMap();                subMap.put(fieldPair, subMap2);            }            subMap2.put(fieldMode, fieldValue);            List origList = (List) origValueMap.get(fieldNameRoot);            if (origList == null) {                origList = new ArrayList();                origValueMap.put(fieldNameRoot, origList);            }            Object [] origValues = {fieldNameRaw, fieldValue};            origList.add(origValues);        }        return normalizedFields;    }        /**     * createCondition, comparing the normalizedFields with the list of keys, .     *     * This is use to the generic method that expects entity data affixed with special suffixes     * to indicate their purpose in formulating an SQL query statement.     * @param keys     list of field for which it's possible to make the query       * @param normalizedFields     list of field the user have populated       * @return a arrayList usable to create an entityCondition     */    public static ArrayList createCondition(List keys, HashMap normalizedFields, Map queryStringMap, Map origValueMap) {        String fieldName = null;        HashMap subMap = null;        HashMap subMap2 = null;        EntityOperator fieldOp = null;        String fieldValue = null; // If it is a "value" field, it will be the value to be used in the query.                                  // If it is an "op" field, it will be "equals", "greaterThan", etc.        Iterator iter = keys.iterator();        EntityExpr cond = null;        ArrayList tmpList = new ArrayList();        String opString = null;        String ignoreCase = null;        int count = 0;        while (iter.hasNext()) {            fieldName = (String) iter.next();            subMap = (HashMap) normalizedFields.get(fieldName);            if (subMap == null) {                continue;            }            subMap2 = (HashMap) subMap.get("fld0");            opString = (String) subMap2.get("op");            ignoreCase = (String) subMap2.get("ic");            if (opString != null) {                if (opString.equals("contains")) {                    fieldOp = EntityOperator.LIKE;                } else if (opString.equals("empty")) {                    fieldOp = EntityOperator.EQUALS;                } else {                    fieldOp = (EntityOperator) entityOperators.get(opString);                }            } else {                fieldOp = EntityOperator.EQUALS;            }            fieldValue = (String) subMap2.get("value");            if (fieldValue == null) {                continue;            }            if (opString != null) {                if (opString.equals("contains")) {                    fieldOp = EntityOperator.LIKE;                    fieldValue = "%" + fieldValue + "%";                } else if (opString.equals("empty")) {                    fieldOp = EntityOperator.EQUALS;                    fieldValue = null;                    ignoreCase = null;                } else if (opString.equals("like")) {                    fieldOp = EntityOperator.LIKE;                    fieldValue += "%";                } else if (opString.equals("greaterThanFromDayStart")) {                    fieldValue = dayStart(fieldValue, 0);                    fieldOp = EntityOperator.GREATER_THAN;                    ignoreCase = null;                } else if (opString.equals("sameDay")) {                    String timeStampString = fieldValue;                    fieldValue = dayStart(timeStampString, 0);                    fieldOp = EntityOperator.GREATER_THAN_EQUAL_TO;                    ignoreCase = null;                    // Set up so next part finds ending conditions for same day                    subMap2 = (HashMap) subMap.get("fld1");                    if (subMap2 == null) {                        subMap2 = new HashMap();                        subMap.put("fld1", subMap2);                    }                    String endOfDay = dayStart(timeStampString, 1);                    subMap2.put("value", endOfDay);                    subMap2.put("op", "lessThan");                } else {                    fieldOp = (EntityOperator) entityOperators.get(opString);                }            } else {                fieldOp = EntityOperator.EQUALS;            }            if (ignoreCase != null && ignoreCase.equals("Y")) {                cond = new EntityExpr(new EntityFunction.UPPER(new EntityFieldValue(fieldName)), (EntityComparisonOperator) fieldOp, new EntityFunction.UPPER(fieldValue.toUpperCase()));

⌨️ 快捷键说明

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