org.gradle.buildinit.plugins.internal.SimpleTemplateOperation 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 2016 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.buildinit.plugins.internal;
import com.google.common.base.Charsets;
import com.google.common.io.FileWriteMode;
import com.google.common.io.Files;
import com.google.common.io.Resources;
import groovy.text.SimpleTemplateEngine;
import groovy.text.Template;
import groovy.util.CharsetToolkit;
import org.gradle.api.GradleException;
import org.gradle.util.internal.GFileUtils;
import java.io.File;
import java.io.Writer;
import java.net.URL;
import java.util.Map;
public class SimpleTemplateOperation implements TemplateOperation {
private final URL templateURL;
private final File target;
private final Map bindings;
public SimpleTemplateOperation(URL templateURL, File target, Map bindings) {
if (templateURL == null) {
throw new BuildInitException("Template URL must not be null");
}
if (target == null) {
throw new BuildInitException("Target file must not be null");
}
this.templateURL = templateURL;
this.bindings = bindings;
this.target = target;
}
@Override
public void generate() {
try {
GFileUtils.parentMkdirs(target);
SimpleTemplateEngine templateEngine = new SimpleTemplateEngine();
String templateText = Resources.asCharSource(templateURL, CharsetToolkit.getDefaultSystemCharset()).read();
Template template = templateEngine.createTemplate(templateText);
try (Writer writer = Files.asCharSink(target, Charsets.UTF_8, FileWriteMode.APPEND).openStream()) {
template.make(bindings).writeTo(writer);
}
} catch (Exception ex) {
throw new GradleException("Could not generate file " + target + ".", ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy