io.micronaut.starter.template.URLTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-starter-core Show documentation
Show all versions of micronaut-starter-core Show documentation
Generates Micronaut applications
/*
* Copyright 2017-2022 original 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
*
* https://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 io.micronaut.starter.template;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.util.Objects;
public class URLTemplate extends DefaultTemplate {
private final URL url;
private final boolean executable;
public URLTemplate(String path, URL url) {
this(DEFAULT_MODULE, path, url, false);
}
public URLTemplate(String path, URL url, boolean executable) {
this(DEFAULT_MODULE, path, url, executable);
}
public URLTemplate(String module, String path, URL url) {
this(module, path, url, false);
}
public URLTemplate(String module, String path, URL url, boolean executable) {
super(module, path);
this.url = Objects.requireNonNull(url, "Resource not found for path: " + path);
this.executable = executable;
}
@Override
public void write(OutputStream outputStream) throws IOException {
try (InputStream inputStream = url.openStream()) {
byte[] buffer = new byte[1024];
int len;
while ((len = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, len);
}
}
}
public boolean isExecutable() {
return executable;
}
public URL getUrl() {
return url;
}
}