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

📄 quewebjdkpathpanel.java

📁 CRM源码This file describes some issues that should be implemented in future and how it should be imple
💻 JAVA
字号:
package com.izforge.izpack.panels;

import com.izforge.izpack.installer.InstallData;
import com.izforge.izpack.installer.InstallerFrame;
import com.izforge.izpack.util.AbstractUIHandler;
import com.izforge.izpack.util.FileExecutor;
import com.izforge.izpack.util.OsVersion;

import java.io.File;
import java.util.StringTokenizer;

/**
 * @author dmitry.antonov
 */
public class QueWebJDKPathPanel extends PathInputPanel {

    private static final long serialVersionUID = 3257006553327810104L;

    private static final String[] testFiles = new String[]{"lib" + File.separator + "tools.jar"};

    private static final String EMULATED_CLASS_NAME = "JDKPathPanel";
    private static final String JDK_PATH_VAR = "JDKPath";
    private static final String JRE_PATH_VAR = "JREPath";
    private static final String INSTALL_JDK = "INSTALL_JDK6";

    private String detectedVersion;
    private boolean useDefaultMessages = true;//false; 

    private String minVersion = null;
    private String maxVersion = null;

    /**
     * The constructor.
     *
     * @param parent The parent window.
     * @param idata  The installation data.
     */
    public QueWebJDKPathPanel(InstallerFrame parent, InstallData idata) {
        super(parent, idata);
        //setMustExist(true);
        if (!OsVersion.IS_OSX)
            setExistFiles(testFiles);
        setMinVersion(idata.getVariable("JDKPathPanel.minVersion"));
        setMaxVersion(idata.getVariable("JDKPathPanel.maxVersion"));
        useDefaultMessages = true;
    }

    /**
     * Indicates wether the panel has been validated or not.
     *
     * @return Wether the panel has been validated or not.
     */
    public boolean isValidated() {
        if (!pathIsValid()) {
            //if path doesn't exist - install JDK
            if (askQuestion(parent.langpack.getString("installer.warning"),
                    "The path specified does not contain the appropriate JDK installation. " +
                            "Would you like to install JDK 1.6.0 using the path provided?",
                    AbstractUIHandler.CHOICES_YES_NO, AbstractUIHandler.ANSWER_NO) == AbstractUIHandler.ANSWER_YES) {
                idata.setVariable(JDK_PATH_VAR, pathSelectionPanel.getPath());
                idata.setVariable(JRE_PATH_VAR, getJREPathFromJDK(pathSelectionPanel.getPath()));
                idata.setVariable(INSTALL_JDK, "yes");
                return true;
            } else {
                return false;
            }
        } else {
            //path exists - check the Java version
            if (verifyVersion()) {
                idata.setVariable(JDK_PATH_VAR, pathSelectionPanel.getPath());
                idata.setVariable(JRE_PATH_VAR, getJREPathFromJDK(pathSelectionPanel.getPath()));
                return true;
            }
            else {
                emitError(parent.langpack.getString("installer.error"),
                        "Specified path contains inappropriate version of JDK");
                return false;
            }
        }
    }

    /**
     * Called when the panel becomes active.
     */
    public void panelActivate() {
        // Resolve the default for chosenPath
        super.panelActivate();
        String chosenPath;
        // The variable will be exist if we enter this panel
        // second time. We would maintain the previos
        // selected path.
        if (idata.getVariable(JDK_PATH_VAR) != null) {
            chosenPath = idata.getVariable(JDK_PATH_VAR);
        }
        else {
            chosenPath = idata.getVariable("APPLICATIONS_DEFAULT_ROOT") + File.separator +
                         "Java" + File.separator + "jdk1.6.0";
        }
        // Set the path for method pathIsValid ...
        pathSelectionPanel.setPath(chosenPath);

        //if (!pathIsValid() || !verifyVersion()) chosenPath = "";
        // Set the default to the path selection panel.
        pathSelectionPanel.setPath(chosenPath);
        String var = idata.getVariable("JDKPathPanel.skipIfValid");
        // Should we skip this panel?
        if (chosenPath.length() > 0 && var != null && "yes".equalsIgnoreCase(var)) {
            idata.setVariable(JDK_PATH_VAR, chosenPath);
            idata.setVariable(JRE_PATH_VAR, getJREPathFromJDK(chosenPath));
            parent.skipPanel();
        }
    }

    private static final String getJREPathFromJDK(String jdkPath) {
        return new File(jdkPath).getParentFile().getAbsolutePath() + File.separator + "jre1.6.0";
    }

    private boolean verifyVersion() {
        String min = getMinVersion();
        String max = getMaxVersion();
        // No min and max, version always ok.
        if (min == null && max == null) return (true);

        if (!pathIsValid()) return (false);
        // No get the version ...
        // We cannot look to the version of this vm because we should
        // test the given JDK VM.
        String[] params = {
                pathSelectionPanel.getPath() + File.separator + "bin" + File.separator + "java",
                "-version"};
        String[] output = new String[2];
        FileExecutor fe = new FileExecutor();
        fe.executeCommand(params, output);
        // "My" VM writes the version on stderr :-(
        String vs = (output[0].length() > 0) ? output[0] : output[1];
        if (min != null) {
            if (!compareVersions(vs, min, true, 4, 4, "__NO_NOT_IDENTIFIER_")) return (false);
        }
        if (max != null)
            if (!compareVersions(vs, max, false, 4, 4, "__NO_NOT_IDENTIFIER_")) return (false);
        return (true);
    }

    private boolean compareVersions(String in, String template, boolean isMin,
                                    int assumedPlace, int halfRange, String useNotIdentifier) {
        StringTokenizer st = new StringTokenizer(in, " \t\n\r\f\"");
        int i;
        int currentRange = 0;
        String[] interestedEntries = new String[halfRange + halfRange];
        for (i = 0; i < assumedPlace - halfRange; ++i)
            if (st.hasMoreTokens()) st.nextToken(); // Forget this entries.

        for (i = 0; i < halfRange + halfRange; ++i) { // Put the interesting Strings into an intermediaer array.
            if (st.hasMoreTokens()) {
                interestedEntries[i] = st.nextToken();
                currentRange++;
            }
        }

        for (i = 0; i < currentRange; ++i) {
            if (useNotIdentifier != null && interestedEntries[i].indexOf(useNotIdentifier) > -1)
                continue;
            if (Character.getType(interestedEntries[i].charAt(0)) != Character.DECIMAL_DIGIT_NUMBER)
                continue;
            break;
        }
        if (i == currentRange) {
            detectedVersion = "<not found>";
            return (false);
        }
        detectedVersion = interestedEntries[i];
        StringTokenizer current = new StringTokenizer(interestedEntries[i], "._-");
        StringTokenizer needed = new StringTokenizer(template, "._-");
        while (needed.hasMoreTokens()) {
            // Current can have no more tokens if needed has more
            // and if a privious token was not accepted as good version.
            // e.g. 1.4.2_02 needed, 1.4.2 current. The false return
            // will be right here. Only if e.g. needed is 1.4.2_00 the
            // return value will be false, but zero should not b e used
            // at the last version part.
            if (!current.hasMoreTokens()) return (false);
            String cur = current.nextToken();
            String nee = needed.nextToken();
            int curVal;
            int neededVal;
            try {
                curVal = Integer.parseInt(cur);
                neededVal = Integer.parseInt(nee);
            }
            catch (NumberFormatException nfe) { // A number format exception will be raised if
                // there is a non numeric part in the version,
                // e.g. 1.5.0_beta. The verification runs only into
                // this deep area of version number (fourth sub place)
                // if all other are equal to the given limit. Then
                // it is right to return false because e.g.
                // the minimal needed version will be 1.5.0.2.
                return (false);
            }
            if (curVal < neededVal) if (isMin)
                return (false);
            else
                return (true);
            if (Integer.parseInt(cur) > Integer.parseInt(nee)) if (isMin)
                return (true);
            else
                return (false);
        }
        return (true);
    }

    public String getI18nStringForClass(String subkey, String alternateClass) {
        return super.getI18nStringForClass(subkey,
                (useDefaultMessages) ? getClass().getName() : EMULATED_CLASS_NAME);
    }

    /**
     * Returns the current detected version.
     *
     * @return the current detected version
     */
    public String getDetectedVersion() {
        return detectedVersion;
    }

    /**
     * Returns the current used maximum version.
     *
     * @return the current used maximum version
     */
    public String getMaxVersion() {
        return maxVersion;
    }

    /**
     * Returns the current used minimum version.
     *
     * @return the current used minimum version
     */
    public String getMinVersion() {
        return minVersion;
    }

    /**
     * Sets the given value as current detected version.
     *
     * @param string version string to be used as detected version
     */
    protected void setDetectedVersion(String string) {
        detectedVersion = string;
    }

    /**
     * Sets the given value as maximum for version control.
     *
     * @param string version string to be used as maximum
     */
    protected void setMaxVersion(String string) {
        maxVersion = string;
    }

    /**
     * Sets the given value as minimum for version control.
     *
     * @param string version string to be used as minimum
     */
    protected void setMinVersion(String string) {
        minVersion = string;
    }

    /*
    * (non-Javadoc)
    *
    * @see com.izforge.izpack.installer.IzPanel#getSummaryBody()
    */
    public String getSummaryBody() {
        return (idata.getVariable(JDK_PATH_VAR));
    }

}

⌨️ 快捷键说明

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