org.gradle.play.internal.twirl.TwirlCompilerAdapterV22X 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 2014 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.play.internal.twirl;
import org.gradle.language.twirl.TwirlImports;
import org.gradle.language.twirl.TwirlTemplateFormat;
import org.gradle.language.twirl.internal.DefaultTwirlTemplateFormat;
import org.gradle.scala.internal.reflect.ScalaMethod;
import org.gradle.scala.internal.reflect.ScalaReflectionUtil;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
class TwirlCompilerAdapterV22X extends VersionedTwirlCompilerAdapter {
private static final Iterable SHARED_PACKAGES = Collections.singleton("play.templates");
// Based on https://github.com/playframework/playframework/blob/2.2.6/framework/src/sbt-plugin/src/main/scala/PlayKeys.scala
private static final Collection DEFAULT_JAVA_IMPORTS = Arrays.asList(
"play.api.templates._",
"play.api.templates.PlayMagic._",
"models._",
"controllers._",
"java.lang._",
"java.util._",
"scala.collection.JavaConversions._",
"scala.collection.JavaConverters._",
"play.api.i18n._",
"play.core.j.PlayMagicForJava._",
"play.mvc._",
"play.data._",
"play.api.data.Field",
"play.mvc.Http.Context.Implicit._");
private static final Collection DEFAULT_SCALA_IMPORTS = Arrays.asList(
"play.api.templates._",
"play.api.templates.PlayMagic._",
"models._",
"controllers._",
"play.api.i18n._",
"play.api.mvc._",
"play.api.data._");
private final String twirlVersion;
private final String scalaVersion;
public TwirlCompilerAdapterV22X(String twirlVersion, String scalaVersion) {
this.twirlVersion = twirlVersion;
this.scalaVersion = scalaVersion;
}
@Override
public ScalaMethod getCompileMethod(final ClassLoader cl) throws ClassNotFoundException {
return ScalaReflectionUtil.scalaMethod(
cl,
"play.templates.ScalaTemplateCompiler",
"compile",
File.class,
File.class,
File.class,
String.class,
String.class
);
}
@Override
public Object[] createCompileParameters(ClassLoader cl, File file, File sourceDirectory, File destinationDirectory, TwirlImports defaultImports, TwirlTemplateFormat templateFormat, List additionalImports) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
final Collection defaultTwirlImports;
if (defaultImports == TwirlImports.JAVA) {
defaultTwirlImports = DEFAULT_JAVA_IMPORTS;
} else {
defaultTwirlImports = DEFAULT_SCALA_IMPORTS;
}
return new Object[] {
file,
sourceDirectory,
destinationDirectory,
templateFormat.getFormatType(),
getImportsFor(templateFormat, defaultTwirlImports, additionalImports)
};
}
@Override
public Iterable getClassLoaderPackages() {
return SHARED_PACKAGES;
}
@Override
public String getDependencyNotation() {
return "com.typesafe.play:templates-compiler_" + scalaVersion + ":" + twirlVersion;
}
@Override
public Collection getDefaultTemplateFormats() {
return Arrays.asList(
new DefaultTwirlTemplateFormat("html", "play.api.templates.HtmlFormat", Collections.singleton("views.html._")),
new DefaultTwirlTemplateFormat("txt", "play.api.templates.TxtFormat", Collections.singleton("views.txt._")),
new DefaultTwirlTemplateFormat("xml", "play.api.templates.XmlFormat", Collections.singleton("views.xml._")),
new DefaultTwirlTemplateFormat("js", "play.api.templates.JavaScriptFormat", Collections.singleton("views.js._"))
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy