org.fife.rsta.ac.java.buildpath.ZipSourceLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagesupport Show documentation
Show all versions of languagesupport Show documentation
A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.
/*
* 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.io.InputStream;
import java.io.InputStreamReader;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import org.fife.rsta.ac.java.classreader.ClassFile;
import org.fife.rsta.ac.java.rjc.ast.CompilationUnit;
import org.fife.rsta.ac.java.rjc.lexer.Scanner;
import org.fife.rsta.ac.java.rjc.parser.ASTFactory;
/**
* Represents source inside a zip or jar file. The source can be either in
* a "src/
" subfolder, or at the root level of the archive. This
* class is useful for the JDK or other libraries that come with a
* src.zip
file (src.jar
on OS X).
*
* @author Robert Futrell
* @version 1.0
*/
public class ZipSourceLocation implements SourceLocation {
private File archive;
/**
* Constructor.
*
* @param archive The archive containing the source. This should be an
* absolute path to ensure correctness.
*/
public ZipSourceLocation(String archive) {
this(new File(archive));
}
/**
* Constructor.
*
* @param archive The archive containing the source.
*/
public ZipSourceLocation(File archive) {
this.archive = archive;
}
/**
* {@inheritDoc}
*/
public CompilationUnit getCompilationUnit(ClassFile cf) throws IOException {
CompilationUnit cu = null;
ZipFile zipFile = new ZipFile(archive);
try {
String entryName = cf.getClassName(true).replaceAll("\\.", "/");
entryName += ".java";
//System.out.println("DEBUG: entry name: " + entryName);
ZipEntry entry = zipFile.getEntry(entryName);
if (entry == null) {
// Seen in some src.jar files, for example OS X's src.jar
entry = zipFile.getEntry("src/" + entryName);
}
if (entry != null) {
InputStream in = zipFile.getInputStream(entry);
Scanner s = new Scanner(new InputStreamReader(in));
cu = new ASTFactory().getCompilationUnit(entryName, s);
}
} finally {
zipFile.close(); // Closes the input stream too
}
return cu;
}
/**
* {@inheritDoc}
*/
public String getLocationAsString() {
return archive.getAbsolutePath();
}
}