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

org.richfaces.cdk.apt.TaskFactoryImpl Maven / Gradle / Ivy

The newest version!
/*
 * $Id$
 *
 * License Agreement.
 *
 * Rich Faces - Natural Ajax for Java Server Faces (JSF)
 *
 * Copyright (C) 2007 Exadel, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1 as published by the Free Software Foundation.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 */
package org.richfaces.cdk.apt;

import static org.richfaces.cdk.apt.CacheType.JAVA_SOURCES;

import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Locale;

import javax.annotation.processing.Processor;
import javax.tools.JavaCompiler;
import javax.tools.JavaCompiler.CompilationTask;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.StandardLocation;
import javax.tools.ToolProvider;

import org.richfaces.cdk.Cache;
import org.richfaces.cdk.CdkClassLoader;
import org.richfaces.cdk.CdkException;
import org.richfaces.cdk.FileManager;
import org.richfaces.cdk.Logger;
import org.richfaces.cdk.Output;
import org.richfaces.cdk.Outputs;
import org.richfaces.cdk.Source;
import org.richfaces.cdk.Sources;
import org.richfaces.cdk.TimeMeasure;

import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;
import com.google.inject.Inject;

/**
 * 

*

* * @author [email protected] * */ public class TaskFactoryImpl implements CompilationTaskFactory { private static List compilerOptions = new ArrayList(Arrays.asList("-proc:only", "-implicit:class")); @Inject Logger log; @Inject Locale locale; @Inject private Charset charset; @Inject private CdkClassLoader classPathLoader; @Inject @Output(Outputs.JAVA_CLASSES) private FileManager outputFolder; @Inject @Source(Sources.JAVA_SOURCES) private FileManager sourceFolders; @Inject private CdkProcessor cdkProcessor; @Inject @Cache(JAVA_SOURCES) private LibraryCache javaCache; @Inject private JavaSourceTracker sourceCache; private JavaCompiler javaCompiler; private StandardJavaFileManager fileManager; /* * (non-Javadoc) * * @see org.richfaces.cdk.apt.CompilationTaskFactory#getTask(java.lang.Iterable) */ @Override public CompilationTask get() throws AptException { if (sourceFolders.getFiles().iterator().hasNext()) { Iterable sourceObjects = getFileManager().getJavaFileObjectsFromFiles( sourceFolders.getFiles()); TimeMeasure time = new TimeMeasure("loading cache", log).info(true).start("java"); for (JavaFileObject sourceObject : sourceObjects) { if (javaCache.storedBefore(sourceObject.getLastModified())) { sourceCache.putChanged(sourceObject); } } time.stop(); if (sourceObjects.iterator().hasNext()) { if (log.isDebugEnabled()) { compilerOptions.add("-verbose"); compilerOptions.add("-deprecation"); compilerOptions.add("-Xlint:all"); } CompilationTask task = getJavaCompiler().getTask(null, getFileManager(), new DiagnosticListenerImplementation(log, locale), compilerOptions, null, sourceObjects); task.setLocale(locale); task.setProcessors(Collections.singleton(cdkProcessor)); return task; } } // no Java sources, try to build from xml files return new CompilationTask() { @Override public void setProcessors(Iterable processors) { // do nothing } @Override public void setLocale(Locale locale) { } @Override public Boolean call() { cdkProcessor.continueAfterJavaSourceProcessing(); return 0 == log.getErrorCount(); } public void addModules(Iterable moduleNames){ } }; } private StandardJavaFileManager getFileManager() { if (fileManager == null) { fileManager = getJavaCompiler().getStandardFileManager(new DiagnosticListenerImplementation(log, locale), locale, charset); try { fileManager.setLocation(StandardLocation.CLASS_PATH, classPathLoader.getFiles()); Iterable outputFolders = outputFolder.getFolders(); if (null != outputFolders) { // Append only existed folders to output. Iterable existedFolders = Iterables.filter(outputFolders, new Predicate() { @Override public boolean apply(File input) { return input.exists(); } }); if (existedFolders.iterator().hasNext()) { fileManager.setLocation(StandardLocation.SOURCE_OUTPUT, outputFolders); } } fileManager.setLocation(StandardLocation.SOURCE_PATH, sourceFolders.getFolders()); } catch (IOException e) { throw new CdkException("Cannot configure JavaFileManager for compilator", e); } } return fileManager; } private JavaCompiler getJavaCompiler() { if (javaCompiler == null) { javaCompiler = ToolProvider.getSystemJavaCompiler(); } return javaCompiler; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy