com.hotels.styx.api.io.FileResourceIterator Maven / Gradle / Ivy
/*
Copyright (C) 2013-2018 Expedia Inc.
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 com.hotels.styx.api.io;
import com.hotels.styx.api.Resource;
import com.hotels.styx.api.common.Strings;
import java.io.File;
import java.util.Iterator;
import java.util.function.Function;
import java.util.function.Predicate;
import static com.google.common.io.Files.fileTreeTraverser;
import static java.util.stream.StreamSupport.stream;
/**
* Iterates over resources in a file system location.
*/
public class FileResourceIterator implements Iterator {
private final Iterator resourceIterator;
public FileResourceIterator(File root, File file, String suffix) {
File absolutePath = root.toPath().resolve(file.toPath()).toFile();
Iterable children = fileTreeTraverser().postOrderTraversal(absolutePath);
this.resourceIterator = stream(children.spliterator(), false)
.filter(hasSuffix(suffix).or(sameFile(file)))
.map(fileToResource(file))
.iterator();
}
private static Predicate sameFile(File file) {
return input -> input.isFile() && input.getAbsolutePath().equals(file.getAbsolutePath());
}
private static Function fileToResource(File root) {
return input -> new FileResource(root, input);
}
private static Predicate hasSuffix(String suffix) {
return file -> Strings.hasSuffix(suffix, file.getPath());
}
@Override
public boolean hasNext() {
return resourceIterator.hasNext();
}
@Override
public Resource next() {
return resourceIterator.next();
}
@Override
public void remove() {
throw new UnsupportedOperationException();
}
}