/* * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * This file is a derivative of code released by the University of * California under the terms listed below. * * WALA JDT Frontend is Copyright (c) 2008 The Regents of the * University of California (Regents). Provided that this notice and * the following two paragraphs are included in any distribution of * Refinement Analysis Tools or its derivative work, Regents agrees * not to assert any of Regents' copyright rights in Refinement * Analysis Tools against recipient for recipient's reproduction, * preparation of derivative works, public display, public * performance, distribution or sublicensing of Refinement Analysis * Tools and derivative works, in source code and object code form. * This agreement not to assert does not confer, by implication, * estoppel, or otherwise any license or rights in any intellectual * property of Regents, including, but not limited to, any patents * of Regents or Regents' employees. * * IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, * INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE * AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE AND FURTHER DISCLAIMS ANY STATUTORY * WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE AND ACCOMPANYING * DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS * IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, * UPDATES, ENHANCEMENTS, OR MODIFICATIONS. */ package com.ibm.wala.cast.java.translator.jdt.ecj; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.util.Hashtable; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; import org.eclipse.core.runtime.NullProgressMonitor; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.compiler.IProblem; import org.eclipse.jdt.core.dom.AST; import org.eclipse.jdt.core.dom.ASTParser; import org.eclipse.jdt.core.dom.CompilationUnit; import org.eclipse.jdt.core.dom.FileASTRequestor; import com.ibm.wala.cast.java.translator.Java2IRTranslator; import com.ibm.wala.cast.java.translator.SourceModuleTranslator; import com.ibm.wala.cast.java.translator.jdt.JDTJava2CAstTranslator; import com.ibm.wala.cast.tree.CAstSourcePositionMap.Position; import com.ibm.wala.cast.tree.impl.RangePosition; import com.ibm.wala.classLoader.DirectoryTreeModule; import com.ibm.wala.classLoader.JarFileModule; import com.ibm.wala.classLoader.JarStreamModule; import com.ibm.wala.classLoader.Module; import com.ibm.wala.classLoader.ModuleEntry; import com.ibm.wala.classLoader.SourceFileModule; import com.ibm.wala.ipa.callgraph.AnalysisScope; import com.ibm.wala.types.ClassLoaderReference; import com.ibm.wala.util.collections.HashMapFactory; import com.ibm.wala.util.collections.Pair; import com.ibm.wala.util.io.TemporaryFile; /** * A SourceModuleTranslator whose implementation of loadAllSources() uses the PolyglotFrontEnd pseudo-compiler to generate DOMO IR * for the sources in the compile-time classpath. * * @author rfuhrer */ // remove me comment: Jdt little-case = not OK, upper case = OK public class ECJSourceModuleTranslator implements SourceModuleTranslator { private final class ECJAstToIR extends FileASTRequestor { private final Map sourceMap; public ECJAstToIR(Map sourceMap) { this.sourceMap = sourceMap; } @Override public void acceptAST(String source, CompilationUnit ast) { JDTJava2CAstTranslator jdt2cast = makeCAstTranslator(ast, source); final Java2IRTranslator java2ir = makeIRTranslator(); java2ir.translate(sourceMap.get(source), jdt2cast.translateToCAst()); if (! "true".equals(System.getProperty("wala.jdt.quiet"))) { IProblem[] problems = ast.getProblems(); int length = problems.length; if (length > 0) { StringBuffer buffer = new StringBuffer(); for (int i = 0; i < length; i++) { buffer.append(problems[i].getMessage()); buffer.append('\n'); } if (length != 0) System.err.println("Unexpected problems in " + source + "\n " + buffer.toString()); } } } } protected boolean dump; protected ECJSourceLoaderImpl sourceLoader; private final String[] sources; private final String[] libs; public ECJSourceModuleTranslator(AnalysisScope scope, ECJSourceLoaderImpl sourceLoader) { this(scope, sourceLoader, false); } public ECJSourceModuleTranslator(AnalysisScope scope, ECJSourceLoaderImpl sourceLoader, boolean dump) { this.sourceLoader = sourceLoader; this.dump = dump; Pair paths = computeClassPath(scope); sources = paths.fst; libs = paths.snd; } private Pair computeClassPath(AnalysisScope scope) { List sources = new LinkedList<>(); List libs = new LinkedList<>(); for (ClassLoaderReference cl : scope.getLoaders()) { while (cl != null) { List modules = scope.getModules(cl); for (Iterator iter = modules.iterator(); iter.hasNext();) { Module m = iter.next(); if (m instanceof JarFileModule) { JarFileModule jarFileModule = (JarFileModule) m; libs.add(jarFileModule.getAbsolutePath()); } else if (m instanceof JarStreamModule) { try { File F = File.createTempFile("tmp", "jar"); F.deleteOnExit(); TemporaryFile.streamToFile(F, ((JarStreamModule)m)); libs.add(F.getAbsolutePath()); } catch (IOException e) { assert false : e; } } else if (m instanceof DirectoryTreeModule) { DirectoryTreeModule directoryTreeModule = (DirectoryTreeModule) m; sources.add(directoryTreeModule.getPath()); } else { //Assertions.UNREACHABLE("Module entry is neither jar file nor directory"); } } cl = cl.getParent(); } } return Pair.make(sources.toArray(new String[ sources.size() ]), libs.toArray(new String[ libs.size() ])); } /* * Project -> AST code from org.eclipse.jdt.core.tests.performance */ @Override public void loadAllSources(Set modules) { List sources = new LinkedList<>(); Map sourceMap = HashMapFactory.make(); for(ModuleEntry m : modules) { if (m.isSourceFile()) { SourceFileModule s = (SourceFileModule)m; sourceMap.put(s.getAbsolutePath(), s); sources.add(s.getAbsolutePath()); } } String[] sourceFiles = sources.toArray(new String[ sources.size() ]); final ASTParser parser = ASTParser.newParser(AST.JLS8); parser.setResolveBindings(true); parser.setEnvironment(libs, this.sources, null, false); Hashtable options = JavaCore.getOptions(); options.put(JavaCore.COMPILER_SOURCE, "1.8"); parser.setCompilerOptions(options); parser.createASTs(sourceFiles, null, new String[0], new ECJAstToIR(sourceMap), new NullProgressMonitor()); } protected Java2IRTranslator makeIRTranslator() { return new Java2IRTranslator(sourceLoader); } protected JDTJava2CAstTranslator makeCAstTranslator(CompilationUnit cu, String fullPath) { return new JDTJava2CAstTranslator(sourceLoader, cu, fullPath, false, dump) { @Override public Position makePosition(int start, int end) { try { return new RangePosition(new URL("file://" + fullPath), this.cu.getLineNumber(start), start, end); } catch (MalformedURLException e) { throw new RuntimeException("bad file: " + fullPath, e); } } }; } }