org.gradle.api.internal.file.AbstractFileTreeElement Maven / Gradle / Ivy
/*
* Copyright 2009 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.api.internal.file;
import org.apache.commons.io.IOUtils;
import org.gradle.api.GradleException;
import org.gradle.api.UncheckedIOException;
import org.gradle.api.file.FileTreeElement;
import org.gradle.internal.exceptions.Contextual;
import org.gradle.internal.file.Chmod;
import org.gradle.internal.nativeintegration.filesystem.FileSystem;
import org.gradle.util.internal.GFileUtils;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public abstract class AbstractFileTreeElement implements FileTreeElement {
private final Chmod chmod;
public abstract String getDisplayName();
protected AbstractFileTreeElement(Chmod chmod) {
this.chmod = chmod;
}
protected Chmod getChmod() {
return chmod;
}
@Override
public String toString() {
return getDisplayName();
}
@Override
public String getName() {
return getRelativePath().getLastName();
}
@Override
public String getPath() {
return getRelativePath().getPathString();
}
@Override
public void copyTo(OutputStream output) {
try {
InputStream inputStream = open();
try {
IOUtils.copyLarge(inputStream, output);
} finally {
inputStream.close();
}
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
@Override
public boolean copyTo(File target) {
validateTimeStamps();
try {
if (isDirectory()) {
GFileUtils.mkdirs(target);
} else {
GFileUtils.mkdirs(target.getParentFile());
copyFile(target);
}
chmod.chmod(target, getMode());
return true;
} catch (Exception e) {
throw new CopyFileElementException(String.format("Could not copy %s to '%s'.", getDisplayName(), target), e);
}
}
private void validateTimeStamps() {
final long lastModified = getLastModified();
if(lastModified < 0) {
throw new GradleException(String.format("Invalid Timestamp %s for '%s'.", lastModified, getDisplayName()));
}
}
private void copyFile(File target) throws IOException {
FileOutputStream outputStream = new FileOutputStream(target);
try {
copyTo(outputStream);
} finally {
outputStream.close();
}
}
@Override
public int getMode() {
return isDirectory()
? FileSystem.DEFAULT_DIR_MODE
: FileSystem.DEFAULT_FILE_MODE;
}
@Contextual
private static class CopyFileElementException extends GradleException {
CopyFileElementException(String message, Throwable cause) {
super(message, cause);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy