All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mozilla.javascript.ImplementationVersion Maven / Gradle / Ivy

package org.mozilla.javascript;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Enumeration;
import java.util.jar.Attributes;
import java.util.jar.Manifest;

/**
 * This class is a singleton that just exists to serve up the implementation version. This should
 * encourage that it's safely but lazily loaded just once per VM.
 */
public class ImplementationVersion {

    private String versionString;

    private static final ImplementationVersion version = new ImplementationVersion();

    public static String get() {
        return version.versionString;
    }

    private ImplementationVersion() {
        Enumeration urls;
        try {
            urls = ImplementationVersion.class.getClassLoader()
                .getResources("META-INF/MANIFEST.MF");
        } catch (IOException ioe) {
            return;
        }

        // There will be many manifests in the world -- enumerate all of them until we find the right one.
        while (urls.hasMoreElements()) {
            URL metaUrl = urls.nextElement();
            try (InputStream is = metaUrl.openStream()) {
                Manifest mf = new Manifest(is);
                Attributes attrs = mf.getMainAttributes();
                if ("Mozilla Rhino".equals(attrs.getValue("Implementation-Title"))) {
                    versionString =
                        "Rhino " + attrs.getValue("Implementation-Version") + " " +
                            attrs.getValue("Built-Date").replaceAll("-", " ");
                    return;
                }
            } catch (IOException e) {
                // Ignore this unlikely event
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy