org.apache.iceberg.io.FileIO Maven / Gradle / Ivy
Show all versions of iceberg-api Show documentation
/*
* 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.iceberg.io;
import java.io.Closeable;
import java.io.Serializable;
import java.util.Map;
/**
* Pluggable module for reading, writing, and deleting files.
*
* Both table metadata files and data files can be written and read by this module. Implementations
* must be serializable because various clients of Spark tables may initialize this once and pass
* it off to a separate module that would then interact with the streams.
*/
public interface FileIO extends Serializable, Closeable {
/**
* Get a {@link InputFile} instance to read bytes from the file at the given path.
*/
InputFile newInputFile(String path);
/**
* Get a {@link OutputFile} instance to write bytes to the file at the given path.
*/
OutputFile newOutputFile(String path);
/**
* Delete the file at the given path.
*/
void deleteFile(String path);
/**
* Convenience method to {@link #deleteFile(String) delete} an {@link InputFile}.
*/
default void deleteFile(InputFile file) {
deleteFile(file.location());
}
/**
* Convenience method to {@link #deleteFile(String) delete} an {@link OutputFile}.
*/
default void deleteFile(OutputFile file) {
deleteFile(file.location());
}
/**
* Initialize File IO from catalog properties.
* @param properties catalog properties
*/
default void initialize(Map properties) {
}
/**
* Close File IO to release underlying resources.
*
* Calling this method is only required when this FileIO instance is no longer expected to be used,
* and the resources it holds need to be explicitly released to avoid resource leaks.
*/
@Override
default void close() {
}
}