org.gradle.plugins.javascript.coffeescript.CoffeeScriptCompile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.plugins.javascript.coffeescript;
import groovy.lang.Closure;
import org.gradle.api.Action;
import org.gradle.api.file.FileCollection;
import org.gradle.api.logging.LogLevel;
import org.gradle.api.tasks.Classpath;
import org.gradle.api.tasks.InputFiles;
import org.gradle.api.tasks.Nested;
import org.gradle.api.tasks.OutputDirectory;
import org.gradle.api.tasks.SourceTask;
import org.gradle.api.tasks.TaskAction;
import org.gradle.plugins.javascript.coffeescript.compile.internal.DefaultCoffeeScriptCompileSpec;
import org.gradle.plugins.javascript.coffeescript.compile.internal.rhino.RhinoCoffeeScriptCompiler;
import org.gradle.plugins.javascript.rhino.worker.RhinoWorkerHandleFactory;
import org.gradle.plugins.javascript.rhino.worker.internal.DefaultRhinoWorkerHandleFactory;
import org.gradle.process.internal.worker.WorkerProcessFactory;
import javax.inject.Inject;
import java.io.File;
public class CoffeeScriptCompile extends SourceTask {
private Object coffeeScriptJs;
private Object destinationDir;
private Object rhinoClasspath;
private CoffeeScriptCompileOptions options = new CoffeeScriptCompileOptions();
@Inject
protected WorkerProcessFactory getWorkerProcessBuilderFactory() {
throw new UnsupportedOperationException();
}
@InputFiles
public FileCollection getCoffeeScriptJs() {
return getProject().files(coffeeScriptJs);
}
public void setCoffeeScriptJs(Object coffeeScriptJs) {
this.coffeeScriptJs = coffeeScriptJs;
}
@Classpath
public FileCollection getRhinoClasspath() {
return getProject().files(rhinoClasspath);
}
public void setRhinoClasspath(Object rhinoClasspath) {
this.rhinoClasspath = rhinoClasspath;
}
@OutputDirectory
public File getDestinationDir() {
return getProject().file(destinationDir);
}
public void setDestinationDir(Object destinationDir) {
this.destinationDir = destinationDir;
}
@Nested
public CoffeeScriptCompileOptions getOptions() {
return options;
}
public void options(Action action) {
action.execute(getOptions());
}
public void options(Closure> closure) {
getProject().configure(getOptions(), closure);
}
@TaskAction
public void doCompile() {
RhinoWorkerHandleFactory handleFactory = new DefaultRhinoWorkerHandleFactory(getWorkerProcessBuilderFactory());
CoffeeScriptCompileSpec spec = new DefaultCoffeeScriptCompileSpec();
spec.setCoffeeScriptJs(getCoffeeScriptJs().getSingleFile());
spec.setDestinationDir(getDestinationDir());
spec.setSource(getSource());
spec.setOptions(getOptions());
LogLevel logLevel = getProject().getGradle().getStartParameter().getLogLevel();
CoffeeScriptCompiler compiler = new RhinoCoffeeScriptCompiler(handleFactory, getRhinoClasspath(), logLevel, getProject().getProjectDir());
setDidWork(compiler.compile(spec).getDidWork());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy