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

org.fife.rsta.ac.java.buildpath.LibraryInfo Maven / Gradle / Ivy

Go to download

A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.

There is a newer version: 3.3.0
Show newest version
/*
 * 04/21/2012
 *
 * Copyright (C) 2010 Robert Futrell
 * robert_futrell at users.sourceforge.net
 * http://fifesoft.com/rsyntaxtextarea
 *
 * This library is distributed under a modified BSD license.  See the included
 * RSTALanguageSupport.License.txt file for details.
 */
package org.fife.rsta.ac.java.buildpath;

import java.io.File;
import java.io.IOException;
import java.util.TreeMap;

import org.fife.rsta.ac.java.JarManager;
import org.fife.rsta.ac.java.classreader.ClassFile;


/**
 * Information about a jar, compiled class folder, or other source of classes
 * to add to the "build path" for Java completion.  Instances of this class are
 * added to a {@link JarManager} for each library that should be on the build
 * path.

* * This class also keeps track of an optional source location, such as a zip * file or source folder. If defined, this location is used to find the .java * source corresponding to the library's classes, which is used to display * Javadoc comments during code completion. * * @author Robert Futrell * @version 1.0 * @see DirLibraryInfo * @see JarLibraryInfo * @see ClasspathLibraryInfo */ public abstract class LibraryInfo implements Comparable, Cloneable { /** * The location of the source files corresponding to this library. This * may be null. */ private SourceLocation sourceLoc; /** * Returns a deep copy of this library. * * @return A deep copy. */ public Object clone() { try { return super.clone(); } catch (CloneNotSupportedException cnse) { // Never happens throw new IllegalStateException( "Doesn't support cloning, but should! - " + getClass().getName()); } } /** * Returns the class file information for the specified class. Instances * of JarReader can call this method to lazily load * information on individual classes and shove it into their package maps. * * @param entryName The fully qualified name of the class file. * @return The class file, or null if it isn't found in this * library. * @throws IOException If an IO error occurs. */ public abstract ClassFile createClassFile(String entryName) throws IOException; /** * Creates and returns a map of maps representing the hierarchical package * structure in this library. * * @return The package structure in this library. * @throws IOException If an IO error occurs. */ public abstract TreeMap createPackageMap() throws IOException; /** * Two LibraryInfos are considered equal if they represent * the same class file location. Source attachment is irrelevant. * * @return Whether the specified instance represents the same class * source as this one. */ public boolean equals(Object o) { return compareTo(o)==0; } /** * Returns information on the "main" jar for a JRE. This will be * rt.jar everywhere except OS X, where it will be * classes.jar. The associated source zip/jar file is also * checked for. * * @return The information, or null if there is not a JRE in * the specified directory. * @see #getMainJreJarInfo() */ public static LibraryInfo getJreJarInfo(File jreHome) { LibraryInfo info = null; File mainJar = new File(jreHome, "lib/rt.jar"); // Sun JRE's File sourceZip = null; if (mainJar.isFile()) { // Sun JRE's sourceZip = new File(jreHome, "src.zip"); if (!sourceZip.isFile()) { // Might be a JRE inside a JDK sourceZip = new File(jreHome, "../src.zip"); } } else { // Might be OS X mainJar = new File(jreHome, "../Classes/classes.jar"); // ${java.home}/src.jar is the common location on OS X. sourceZip = new File(jreHome, "src.jar"); } if (mainJar.isFile()) { info = new JarLibraryInfo(mainJar); if (sourceZip.isFile()) { // Make sure our last guess actually exists info.setSourceLocation(new ZipSourceLocation(sourceZip)); } } else { System.err.println("[ERROR]: Cannot locate JRE jar in " + jreHome.getAbsolutePath()); mainJar = null; } return info; } /** * Returns the time this library was last modified. For jar files, this * would be the modified date of the file. For directories, this would be * the time a file in the directory was most recently modified. This * information is used to determine whether callers should clear their * cached package map information and load it anew.

* * This API may change in the future. * * @return The last time this library was modified. */ public abstract long getLastModified(); /** * Returns the location of this library, as a string. If this library * is contained in a single jar file, this will be the full path to that * jar. If it is a directory containing classes, it will be the full path * of the directory. Otherwise, this value will be null. * * @return The location of this library. */ public abstract String getLocationAsString(); /** * Returns information on the JRE running this application. This will be * rt.jar everywhere except OS X, where it will be * classes.jar. The associated source zip/jar file is also * checked for. * * @return The information, or null if an error occurs. * @see #getJreJarInfo(File) */ public static LibraryInfo getMainJreJarInfo() { String javaHome = System.getProperty("java.home"); return getJreJarInfo(new File(javaHome)); } /** * Returns the location of the source corresponding to this library. * * @return The source for this library, or null if none. * @see #setSourceLocation(SourceLocation) */ public SourceLocation getSourceLocation() { return sourceLoc; } /** * Subclasses should override this method since {@link #equals(Object)} is * overridden. Instances of LibraryInfo aren't typically * stored in maps, so the hash value isn't necessarily important to * RSTALanguageSupport. * * @return The hash code for this library. */ public abstract int hashCode(); /** * Sets the location of the source corresponding to this library. * * @param sourceLoc The source location. This may be null. * @see #getSourceLocation() */ public void setSourceLocation(SourceLocation sourceLoc) { this.sourceLoc = sourceLoc; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy