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

📄 bshutil.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: BshUtil.java 5462 2005-08-05 18:35:48Z 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.base.util;import java.io.IOException;import java.io.InputStreamReader;import java.io.Reader;import java.io.StringReader;import java.net.MalformedURLException;import java.net.URL;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import java.util.Set;import org.ofbiz.base.location.FlexibleLocation;import org.ofbiz.base.util.cache.UtilCache;import bsh.BshClassManager;import bsh.EvalError;import bsh.Interpreter;import bsh.NameSpace;import bsh.ParseException;/** * BshUtil - BeanShell Utilities * *@author     <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> *@author     <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> *@author     Oswin Ondarza and Manuel Soto *@created    Oct 22, 2002 *@version    $Rev: 5462 $ */public final class BshUtil {    public static final String module = BshUtil.class.getName();    protected static Map masterClassManagers = new HashMap();    public static UtilCache parsedScripts = new UtilCache("script.BshLocationParsedCache", 0, 0, false);        /**     * Evaluate a BSH condition or expression     * @param expression The expression to evaluate     * @param context The context to use in evaluation (re-written)     * @return Object The result of the evaluation      * @throws EvalError     */    public static final Object eval(String expression, Map context) throws EvalError {        Object o = null;        if (expression == null || expression.equals("")) {            Debug.logError("BSH Evaluation error. Empty expression", module);            return null;        }        if (Debug.verboseOn())            Debug.logVerbose("Evaluating -- " + expression, module);        if (Debug.verboseOn())            Debug.logVerbose("Using Context -- " + context, module);        try {            Interpreter bsh = makeInterpreter(context);            // evaluate the expression            o = bsh.eval(expression);            if (Debug.verboseOn())                Debug.logVerbose("Evaluated to -- " + o, module);            // read back the context info            NameSpace ns = bsh.getNameSpace();            String[] varNames = ns.getVariableNames();            for (int x = 0; x < varNames.length; x++) {                context.put(varNames[x], bsh.get(varNames[x]));            }        } catch (EvalError e) {            Debug.logError(e, "BSH Evaluation error.", module);            throw e;        }        return o;    }        public static Interpreter makeInterpreter(Map context) throws EvalError {        Interpreter bsh = getMasterInterpreter(null);        // Set the context for the condition        if (context != null) {            Set keySet = context.keySet();            Iterator i = keySet.iterator();            while (i.hasNext()) {                Object key = i.next();                Object value = context.get(key);                bsh.set((String) key, value);            }                        // include the context itself in for easier access in the scripts            bsh.set("context", context);        }                return bsh;    }    public static Interpreter getMasterInterpreter(ClassLoader classLoader) {        if (classLoader == null) {            classLoader = Thread.currentThread().getContextClassLoader();        }        //find the "master" BshClassManager for this classpath        BshClassManager master = (BshClassManager) BshUtil.masterClassManagers.get(classLoader);        if (master == null) {            synchronized (OfbizBshBsfEngine.class) {                master = (BshClassManager) BshUtil.masterClassManagers.get(classLoader);                if (master == null) {                    master = BshClassManager.createClassManager();                    master.setClassLoader(classLoader);                    BshUtil.masterClassManagers.put(classLoader, master);                }            }        }                if (master != null) {            Interpreter interpreter = new Interpreter(new StringReader(""), System.out, System.err,                     false, new NameSpace(master, "global"), null, null);            return interpreter;        } else {            Interpreter interpreter = new Interpreter();            interpreter.setClassLoader(classLoader);            return interpreter;        }    }        public static Object runBshAtLocation(String location, Map context) throws GeneralException {        try {            Interpreter interpreter = makeInterpreter(context);                        Interpreter.ParsedScript script = null;            script = (Interpreter.ParsedScript) parsedScripts.get(location);            if (script == null) {                synchronized (OfbizBshBsfEngine.class) {                    script = (Interpreter.ParsedScript) parsedScripts.get(location);                    if (script == null) {                        URL scriptUrl = FlexibleLocation.resolveLocation(location);                        Reader scriptReader = new InputStreamReader(scriptUrl.openStream());                        script = interpreter.parseScript(location, scriptReader);                        if (Debug.verboseOn()) Debug.logVerbose("Caching BSH script at: " + location, module);                        parsedScripts.put(location, script);                    }                }            }                        return interpreter.evalParsedScript(script);        } catch (MalformedURLException e) {            String errMsg = "Error loading BSH script at [" + location + "]: " + e.toString();            Debug.logError(e, errMsg, module);            throw new GeneralException(errMsg, e);        } catch (ParseException e) {            String errMsg = "Error parsing BSH script at [" + location + "]: " + e.toString();            Debug.logError(e, errMsg, module);            throw new GeneralException(errMsg, e);        } catch (IOException e) {            String errMsg = "Error loading BSH script at [" + location + "]: " + e.toString();            Debug.logError(e, errMsg, module);            throw new GeneralException(errMsg, e);        } catch (EvalError ee) {            Throwable t = ee.getCause();            if (t == null) {                Debug.logWarning(ee, "WARNING: no cause (from getCause) found for BSH EvalError: " + ee.toString(), module);                t = ee;            } else {                Debug.logError(t, "ERROR: Got cause (from getCause) for BSH EvalError: " + ee.toString(), module);            }                        String errMsg = "Error running BSH script at [" + location + "], line [" + ee.getErrorLineNumber() + "]: " + t.toString();            // don't log the full exception, just the main message; more detail logged later            throw new GeneralException(errMsg, t);        }    }}

⌨️ 快捷键说明

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