// // LibraryEntry.java // /* LOCI Plugins for ImageJ: a collection of ImageJ plugins including the Bio-Formats Importer, Bio-Formats Exporter, Bio-Formats Macro Extensions, Data Browser and Stack Slicer. Copyright (C) 2005-@year@ Melissa Linkert, Curtis Rueden and Christopher Peterson. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package loci.plugins.config; import java.io.File; import java.io.PrintWriter; import java.net.URLDecoder; import java.util.HashMap; /** * A list entry for the configuration window's Libraries tab. * * <dl><dt><b>Source code:</b></dt> * <dd><a href="http://trac.openmicroscopy.org.uk/ome/browser/bioformats.git/components/loci-plugins/src/loci/plugins/config/LibraryEntry.java">Trac</a>, * <a href="http://git.openmicroscopy.org/?p=bioformats.git;a=blob;f=components/loci-plugins/src/loci/plugins/config/LibraryEntry.java;hb=HEAD">Gitweb</a></dd></dl> * * @author Curtis Rueden ctrueden at wisc.edu */ public class LibraryEntry implements Comparable<Object> { // -- Constants -- /** Version code to indicate a missing library. */ public static final String MISSING_VERSION_CODE = "!"; /** HTML markup for installed library. */ private static final String PRESENT = ""; /** HTML markup for missing library. */ private static final String MISSING = "<font color=\"7f7f7f\"><i>"; // -- Fields -- protected String name; protected String type; protected String libClass; protected String url; protected String license; protected String notes; protected String status; protected String version; protected String path; // -- Constructor -- public LibraryEntry(PrintWriter log, HashMap<String, String> props) { this(log, props.get("name"), props.get("type"), props.get("class"), props.get("version"), props.get("url"), props.get("license"), props.get("notes")); } public LibraryEntry(PrintWriter log, String name, String type, String libClass, String version, String url, String license, String notes) { this.name = name; this.type = type; this.libClass = libClass; this.url = url; this.license = license; this.notes = notes; // check library status try { Class<?> c = Class.forName(libClass); if (version == null) { // try to detect version from the package version = ""; if (c != null) { Package p = c.getPackage(); if (p != null) { String pVendor = p.getImplementationVendor(); String pVersion = p.getImplementationVersion(); if (pVendor != null && pVersion != null) { version = pVersion + " (" + pVendor + ")"; } else if (pVersion != null) version = pVersion; else if (pVendor != null) version = pVendor; } } } else if (version.equals(MISSING_VERSION_CODE)) { // we know a priori that this library is not properly installed version = null; throw new ClassNotFoundException(); } this.version = version; // get resource containing the class String className = libClass.substring(libClass.lastIndexOf(".") + 1); path = c.getResource(className + ".class").toString(); path = path.replaceAll("^jar:", ""); path = path.replaceAll("^file:", ""); path = path.replaceAll("^/*/", "/"); path = path.replaceAll("^/([A-Z]:)", "$1"); path = path.replaceAll("!.*", ""); path = URLDecoder.decode(path, "UTF-8"); String slash = File.separator; if (slash.equals("\\")) slash = "\\\\"; path = path.replaceAll("/", slash); log.println("Found library " + name + ":"); if (!"".equals(version)) log.println(" Version = " + version); log.println(" Path = " + path); } catch (Throwable t) { if (t instanceof ClassNotFoundException) { log.println("No library " + name + "."); } else { log.println("Error communicating with library " + name + ":"); t.printStackTrace(log); } } status = version == null ? "Missing" : "Installed"; } // -- Comparable API methods -- public int compareTo(Object o) { LibraryEntry entry = (LibraryEntry) o; return name.compareTo(entry.name); } // -- Object API methods -- public String toString() { String markup = version == null ? MISSING : PRESENT; return "<html>" + markup + name; } }