org.dbflute.helper.filesystem.FileHierarchyTracer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbflute-runtime Show documentation
Show all versions of dbflute-runtime Show documentation
The runtime library of DBFlute
/*
* Copyright 2014-2021 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.dbflute.helper.filesystem;
import java.io.File;
import java.io.FileFilter;
import java.io.IOException;
import java.util.Arrays;
import java.util.Comparator;
import org.dbflute.helper.filesystem.exception.FileHierarchyTracingIOFailureException;
/**
* @author jflute
*/
public class FileHierarchyTracer {
/**
* Trace the files in the hierarchy from the root directory.
*
* tracer.trace(srcDir, new FileHierarchyTracingHandler() {
* public boolean isTargetFileOrDir(File currentFile) {
* return currentFile.isDirectory() || currentFile.getName().endsWith(".java");
* }
* public void handleFile(File currentFile) {
* ...
* }
* }
*
* @param rootDir The directory for root to trace files. (NotNull)
* @param handler The handler of tracing. (NotNull)
* @throws FileHierarchyTracingIOFailureException When it fails by IO failure.
*/
public void trace(File rootDir, FileHierarchyTracingHandler handler) {
if (rootDir == null) {
String msg = "The argument 'rootDir' should not be null.";
throw new IllegalArgumentException(msg);
}
try {
doTrace(rootDir, handler);
} catch (IOException e) {
String msg = "Failed to trace the directory: " + rootDir;
throw new FileHierarchyTracingIOFailureException(msg, e);
}
}
protected void doTrace(File currentDir, final FileHierarchyTracingHandler handler) throws IOException {
final File[] listFiles = currentDir.listFiles(new FileFilter() {
public boolean accept(File file) {
return handler.isTargetFileOrDir(file);
}
});
if (listFiles == null) {
return;
}
orderListFiles(listFiles); // to be same order between Windows and MacOSX
for (File elementFile : listFiles) {
if (elementFile.isDirectory()) {
doTrace(elementFile, handler);
} else {
handler.handleFile(elementFile);
}
}
}
protected void orderListFiles(File[] listFiles) {
Arrays.sort(listFiles, new Comparator() {
public int compare(File o1, File o2) {
return o1.getName().compareTo(o2.getName());
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy