io.trino.filesystem.s3.S3FileIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-filesystem-s3 Show documentation
Show all versions of trino-filesystem-s3 Show documentation
Trino - S3 file system support
/*
* 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 io.trino.filesystem.s3;
import com.google.common.collect.ImmutableSet;
import io.trino.filesystem.FileEntry;
import io.trino.filesystem.FileIterator;
import io.trino.filesystem.Location;
import software.amazon.awssdk.core.exception.SdkException;
import software.amazon.awssdk.services.s3.model.ObjectStorageClass;
import software.amazon.awssdk.services.s3.model.RestoreStatus;
import software.amazon.awssdk.services.s3.model.S3Object;
import java.io.IOException;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Optional;
import java.util.Set;
import static com.google.common.base.Verify.verify;
import static java.util.Objects.requireNonNull;
final class S3FileIterator
implements FileIterator
{
private final S3Location location;
private final Iterator iterator;
private final Location baseLocation;
private static final String S3_GLACIER_TAG = "s3:glacier";
private static final String S3_GLACIER_AND_RESTORED_TAG = "s3:glacierRestored";
public S3FileIterator(S3Location location, Iterator iterator)
{
this.location = requireNonNull(location, "location is null");
this.iterator = requireNonNull(iterator, "iterator is null");
this.baseLocation = location.baseLocation();
}
@Override
public boolean hasNext()
throws IOException
{
try {
return iterator.hasNext();
}
catch (SdkException e) {
throw new IOException("Failed to list location: " + location, e);
}
}
@Override
public FileEntry next()
throws IOException
{
try {
S3Object object = iterator.next();
verify(object.key().startsWith(location.key()), "S3 listed key [%s] does not start with prefix [%s]", object.key(), location.key());
Set tags = ImmutableSet.of();
if (object.storageClass() == ObjectStorageClass.GLACIER || object.storageClass() == ObjectStorageClass.DEEP_ARCHIVE) {
tags = new HashSet<>();
tags.add(S3_GLACIER_TAG);
if (Optional.ofNullable(object.restoreStatus()).map(RestoreStatus::restoreExpiryDate).isPresent()) {
tags.add(S3_GLACIER_AND_RESTORED_TAG);
}
tags = ImmutableSet.copyOf(tags);
}
return new FileEntry(
baseLocation.appendPath(object.key()),
object.size(),
object.lastModified(),
Optional.empty(),
tags);
}
catch (SdkException e) {
throw new IOException("Failed to list location: " + location, e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy