
org.apache.lucene.util.IOUtils Maven / Gradle / Ivy
Show all versions of org.apache.servicemix.bundles.lucene
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.lucene.util;
import java.io.BufferedReader;
import java.io.Closeable;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.channels.FileChannel;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CodingErrorAction;
import java.nio.charset.StandardCharsets;
import java.nio.file.FileVisitResult;
import java.nio.file.FileVisitor;
import java.nio.file.Files;
import java.nio.file.NoSuchFileException;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.Arrays;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import org.apache.lucene.store.Directory;
/**
* Utilities for dealing with {@link Closeable}s.
*
* @lucene.internal
*/
public final class IOUtils {
/**
* UTF-8 charset string.
*
* Where possible, use {@link StandardCharsets#UTF_8} instead, as using the String constant may
* slow things down.
*
* @see StandardCharsets#UTF_8
*/
public static final String UTF_8 = StandardCharsets.UTF_8.name();
private IOUtils() {} // no instance
/**
* Closes all given Closeable
s. Some of the Closeable
s may be null; they
* are ignored. After everything is closed, the method either throws the first exception it hit
* while closing, or completes normally if there were no exceptions.
*
* @param objects objects to call close()
on
*/
public static void close(Closeable... objects) throws IOException {
close(Arrays.asList(objects));
}
/**
* Closes all given Closeable
s.
*
* @see #close(Closeable...)
*/
public static void close(Iterable extends Closeable> objects) throws IOException {
Throwable th = null;
for (Closeable object : objects) {
try {
if (object != null) {
object.close();
}
} catch (Throwable t) {
th = useOrSuppress(th, t);
}
}
if (th != null) {
throw rethrowAlways(th);
}
}
/**
* Closes all given Closeable
s, suppressing all thrown exceptions. Some of the
* Closeable
s may be null, they are ignored.
*
* @param objects objects to call close()
on
*/
public static void closeWhileHandlingException(Closeable... objects) {
closeWhileHandlingException(Arrays.asList(objects));
}
/**
* Closes all given Closeable
s, suppressing all thrown non {@link Error} exceptions.
* Even if a {@link Error} is thrown all given closeable are closed.
*
* @see #closeWhileHandlingException(Closeable...)
*/
public static void closeWhileHandlingException(Iterable extends Closeable> objects) {
Error firstError = null;
Throwable firstThrowable = null;
for (Closeable object : objects) {
try {
if (object != null) {
object.close();
}
} catch (Error e) {
firstError = useOrSuppress(firstError, e);
} catch (Throwable t) {
firstThrowable = useOrSuppress(firstThrowable, t);
}
}
if (firstError != null) {
// we ensure that we bubble up any errors. We can't recover from these but need to make sure
// they are
// bubbled up. if a non-Error is thrown we also add the suppressed exceptions to it.
if (firstThrowable != null) {
firstError.addSuppressed(firstThrowable);
}
throw firstError;
}
}
/**
* Wrapping the given {@link InputStream} in a reader using a {@link CharsetDecoder}. Unlike
* Java's defaults this reader will throw an exception if your it detects the read charset doesn't
* match the expected {@link Charset}.
*
*
Decoding readers are useful to load configuration files, stopword lists or synonym files to
* detect character set problems. However, it's not recommended to use as a common purpose reader.
*
* @param stream the stream to wrap in a reader
* @param charSet the expected charset
* @return a wrapping reader
*/
public static Reader getDecodingReader(InputStream stream, Charset charSet) {
final CharsetDecoder charSetDecoder =
charSet
.newDecoder()
.onMalformedInput(CodingErrorAction.REPORT)
.onUnmappableCharacter(CodingErrorAction.REPORT);
return new BufferedReader(new InputStreamReader(stream, charSetDecoder));
}
/**
* Wrap all calls to {@link Class#getResource(String)} or {@link
* Class#getResourceAsStream(String)} using this method to enforce existence of the resource. This
* code works around those methods returning {@code null} to signal non-existence.
*
* @param resource return value of above methods
* @param name of resource
* @return the resource passed in if existent
* @throws FileNotFoundException if resource was not found
*/
public static T requireResourceNonNull(T resource, String name) throws IOException {
if (resource == null) {
throw new FileNotFoundException("The resource '" + name + "' was not found.");
}
return resource;
}
/**
* Deletes all given files, suppressing all thrown IOExceptions.
*
* Note that the files should not be null.
*/
public static void deleteFilesIgnoringExceptions(Directory dir, Collection files) {
for (String name : files) {
try {
dir.deleteFile(name);
} catch (
@SuppressWarnings("unused")
Throwable ignored) {
// ignore
}
}
}
public static void deleteFilesIgnoringExceptions(Directory dir, String... files) {
deleteFilesIgnoringExceptions(dir, Arrays.asList(files));
}
/**
* Deletes all given file names. Some of the file names may be null; they are ignored. After
* everything is deleted, the method either throws the first exception it hit while deleting, or
* completes normally if there were no exceptions.
*
* @param dir Directory to delete files from
* @param names file names to delete
*/
public static void deleteFiles(Directory dir, Collection names) throws IOException {
Throwable th = null;
for (String name : names) {
if (name != null) {
try {
dir.deleteFile(name);
} catch (Throwable t) {
th = useOrSuppress(th, t);
}
}
}
if (th != null) {
throw rethrowAlways(th);
}
}
/**
* Deletes all given files, suppressing all thrown IOExceptions.
*
* Some of the files may be null, if so they are ignored.
*/
public static void deleteFilesIgnoringExceptions(Path... files) {
deleteFilesIgnoringExceptions(Arrays.asList(files));
}
/**
* Deletes all given files, suppressing all thrown IOExceptions.
*
*
Some of the files may be null, if so they are ignored.
*/
public static void deleteFilesIgnoringExceptions(Collection extends Path> files) {
for (Path name : files) {
if (name != null) {
try {
Files.delete(name);
} catch (
@SuppressWarnings("unused")
Throwable ignored) {
// ignore
}
}
}
}
/**
* Deletes all given Path
s, if they exist. Some of the File
s may be
* null; they are ignored. After everything is deleted, the method either throws the first
* exception it hit while deleting, or completes normally if there were no exceptions.
*
* @param files files to delete
*/
public static void deleteFilesIfExist(Path... files) throws IOException {
deleteFilesIfExist(Arrays.asList(files));
}
/**
* Deletes all given Path
s, if they exist. Some of the File
s may be
* null; they are ignored. After everything is deleted, the method either throws the first
* exception it hit while deleting, or completes normally if there were no exceptions.
*
* @param files files to delete
*/
public static void deleteFilesIfExist(Collection extends Path> files) throws IOException {
Throwable th = null;
for (Path file : files) {
try {
if (file != null) {
Files.deleteIfExists(file);
}
} catch (Throwable t) {
th = useOrSuppress(th, t);
}
}
if (th != null) {
throw rethrowAlways(th);
}
}
/**
* Deletes one or more files or directories (and everything underneath it).
*
* @throws IOException if any of the given files (or their subhierarchy files in case of
* directories) cannot be removed.
*/
public static void rm(Path... locations) throws IOException {
LinkedHashMap unremoved = rm(new LinkedHashMap(), locations);
if (!unremoved.isEmpty()) {
StringBuilder b =
new StringBuilder("Could not remove the following files (in the order of attempts):\n");
for (Map.Entry kv : unremoved.entrySet()) {
b.append(" ")
.append(kv.getKey().toAbsolutePath())
.append(": ")
.append(kv.getValue())
.append("\n");
}
throw new IOException(b.toString());
}
}
private static LinkedHashMap rm(
final LinkedHashMap unremoved, Path... locations) {
if (locations != null) {
for (Path location : locations) {
// TODO: remove this leniency!
if (location != null && Files.exists(location)) {
try {
Files.walkFileTree(
location,
new FileVisitor() {
@Override
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs)
throws IOException {
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult postVisitDirectory(Path dir, IOException impossible)
throws IOException {
assert impossible == null;
try {
Files.delete(dir);
} catch (IOException e) {
unremoved.put(dir, e);
}
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
throws IOException {
try {
Files.delete(file);
} catch (IOException exc) {
unremoved.put(file, exc);
}
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult visitFileFailed(Path file, IOException exc)
throws IOException {
if (exc != null) {
unremoved.put(file, exc);
}
return FileVisitResult.CONTINUE;
}
});
} catch (IOException impossible) {
throw new AssertionError("visitor threw exception", impossible);
}
}
}
}
return unremoved;
}
/**
* This utility method takes a previously caught (non-null) {@code Throwable} and rethrows either
* the original argument if it was a subclass of the {@code IOException} or an {@code
* RuntimeException} with the cause set to the argument.
*
* This method never returns any value, even though it declares a return value
* of type {@link Error}. The return value declaration is very useful to let the compiler know
* that the code path following the invocation of this method is unreachable. So in most cases the
* invocation of this method will be guarded by an {@code if} and used together with a {@code
* throw} statement, as in:
*
*
{@code
* if (t != null) throw IOUtils.rethrowAlways(t)
* }
*
* @param th The throwable to rethrow, must not be null.
* @return This method always results in an exception, it never returns any value. See method
* documentation for details and usage example.
* @throws IOException if the argument was an instance of IOException
* @throws RuntimeException with the {@link RuntimeException#getCause()} set to the argument, if
* it was not an instance of IOException.
*/
public static Error rethrowAlways(Throwable th) throws IOException, RuntimeException {
if (th == null) {
throw new AssertionError("rethrow argument must not be null.");
}
if (th instanceof IOException) {
throw (IOException) th;
}
if (th instanceof RuntimeException) {
throw (RuntimeException) th;
}
if (th instanceof Error) {
throw (Error) th;
}
throw new RuntimeException(th);
}
/**
* Ensure that any writes to the given file is written to the storage device that contains it.
*
* @param fileToSync the file to fsync
* @param isDir if true, the given file is a directory (we open for read and ignore IOExceptions,
* because not all file systems and operating systems allow to fsync on a directory)
*/
public static void fsync(Path fileToSync, boolean isDir) throws IOException {
// If the file is a directory we have to open read-only, for regular files we must open r/w for
// the fsync to have an effect.
// See http://blog.httrack.com/blog/2013/11/15/everything-you-always-wanted-to-know-about-fsync/
if (isDir && Constants.WINDOWS) {
// opening a directory on Windows fails, directories can not be fsynced there
if (Files.exists(fileToSync) == false) {
// yet do not suppress trying to fsync directories that do not exist
throw new NoSuchFileException(fileToSync.toString());
}
return;
}
try (final FileChannel file =
FileChannel.open(fileToSync, isDir ? StandardOpenOption.READ : StandardOpenOption.WRITE)) {
try {
file.force(true);
} catch (final IOException e) {
if (isDir) {
assert (Constants.LINUX || Constants.MAC_OS_X) == false
: "On Linux and MacOSX fsyncing a directory should not throw IOException, "
+ "we just don't want to rely on that in production (undocumented). Got: "
+ e;
// Ignore exception if it is a directory
return;
}
// Throw original exception
throw e;
}
}
}
/**
* Returns the second throwable if the first is null otherwise adds the second as suppressed to
* the first and returns it.
*/
public static T useOrSuppress(T first, T second) {
if (first == null) {
return second;
} else {
first.addSuppressed(second);
}
return first;
}
/**
* Applies the consumer to all non-null elements in the collection even if an exception is thrown.
* The first exception thrown by the consumer is re-thrown and subsequent exceptions are
* suppressed.
*/
@SuppressWarnings("StreamToIterable")
public static void applyToAll(Collection collection, IOConsumer consumer)
throws IOException {
IOUtils.close(
collection.stream().filter(Objects::nonNull).map(t -> (Closeable) () -> consumer.accept(t))
::iterator);
}
}