/** * Copyright (C) 2006-2017 INRIA and contributors * Spoon - http://spoon.gforge.inria.fr/ * * This software is governed by the CeCILL-C License under French law and * abiding by the rules of distribution of free software. You can use, modify * and/or redistribute the software under the terms of the CeCILL-C license as * circulated by CEA, CNRS and INRIA at http://www.cecill.info. * * 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 CeCILL-C License for more details. * * The fact that you are presently reading this means that you have had * knowledge of the CeCILL-C license and that you accept its terms. */ package spoon.support.compiler.jdt; import java.util.List; import java.util.concurrent.atomic.AtomicLong; import org.eclipse.jdt.core.compiler.CategorizedProblem; import spoon.SpoonException; import spoon.compiler.Environment; import spoon.compiler.SpoonFile; import spoon.compiler.builder.JDTBuilder; import spoon.reflect.cu.CompilationUnit; import spoon.reflect.factory.Factory; import spoon.support.compiler.SnippetCompilationError; import spoon.support.compiler.VirtualFile; public class JDTSnippetCompiler extends JDTBasedSpoonCompiler { private final AtomicLong snippetNumber = new AtomicLong(0); public static final String SNIPPET_FILENAME_PREFIX = JDTSnippetCompiler.class.getName() + "_spoonSnippet_"; private CompilationUnit snippetCompilationUnit; public JDTSnippetCompiler(Factory factory, String contents) { super(factory); //give the Virtual file the unique name so JDTCommentBuilder.spoonUnit can be correctly initialized addInputSource(new VirtualFile(contents, SNIPPET_FILENAME_PREFIX + (snippetNumber.incrementAndGet()))); } @Override public boolean build() { return build(null); } @Override public boolean build(JDTBuilder builder) { if (factory == null) { throw new SpoonException("Factory not initialized"); } boolean srcSuccess; List<SpoonFile> allFiles = sources.getAllJavaFiles(); factory.getEnvironment().debugMessage("compiling sources: " + allFiles); long t = System.currentTimeMillis(); javaCompliance = factory.getEnvironment().getComplianceLevel(); try { srcSuccess = buildSources(builder); } finally { //remove snippet compilation unit from the cache (to clear memory) and remember it so client can use it for (SpoonFile spoonFile : allFiles) { if (spoonFile.getName().startsWith(SNIPPET_FILENAME_PREFIX)) { snippetCompilationUnit = factory.CompilationUnit().removeFromCache(spoonFile.getName()); } } } reportProblems(factory.getEnvironment()); factory.getEnvironment().debugMessage("compiled in " + (System.currentTimeMillis() - t) + " ms"); return srcSuccess; } @Override protected boolean buildSources(JDTBuilder jdtBuilder) { return buildUnitsAndModel(jdtBuilder, sources, getSourceClasspath(), "snippet ", false); } @Override protected void report(Environment environment, CategorizedProblem problem) { if (problem.isError()) { throw new SnippetCompilationError(problem.getMessage() + "at line " + problem.getSourceLineNumber()); } } /** * @return CompilationUnit which was produced by compiling of this snippet */ public CompilationUnit getSnippetCompilationUnit() { return snippetCompilationUnit; } }