ChecksumSupport.java
/*
* 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.hadoop.fs.s3a.impl;
import java.util.Locale;
import java.util.Set;
import org.apache.hadoop.thirdparty.com.google.common.collect.ImmutableSet;
import software.amazon.awssdk.services.s3.model.ChecksumAlgorithm;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.util.ConfigurationHelper;
import static org.apache.hadoop.fs.s3a.Constants.CHECKSUM_ALGORITHM;
/**
* Utility class to support operations on S3 object checksum.
*/
public final class ChecksumSupport {
/**
* Special checksum algorithm to declare that no checksum
* is required: {@value}.
*/
public static final String NONE = "NONE";
/**
* CRC32C, mapped to CRC32_C algorithm class.
*/
public static final String CRC32C = "CRC32C";
/**
* CRC64NVME, mapped to CRC64_NVME algorithm class.
*/
public static final String CRC64NVME = "CRC64NVME";
private ChecksumSupport() {
}
/**
* Checksum algorithms that are supported by S3A.
*/
private static final Set<ChecksumAlgorithm> SUPPORTED_CHECKSUM_ALGORITHMS = ImmutableSet.of(
ChecksumAlgorithm.CRC32,
ChecksumAlgorithm.CRC32_C,
ChecksumAlgorithm.CRC64_NVME,
ChecksumAlgorithm.SHA1,
ChecksumAlgorithm.SHA256);
/**
* Get the checksum algorithm to be used for data integrity check of the objects in S3.
* This operation includes validating if the provided value is a supported checksum algorithm.
* @param conf configuration to scan
* @return the checksum algorithm to be passed on S3 requests
* @throws IllegalArgumentException if the checksum algorithm is not known or not supported
*/
public static ChecksumAlgorithm getChecksumAlgorithm(Configuration conf) {
return ConfigurationHelper.resolveEnum(conf,
CHECKSUM_ALGORITHM,
ChecksumAlgorithm.class,
configValue -> {
// default values and handling algorithms names without underscores.
String val = configValue == null
? NONE
: configValue.toUpperCase(Locale.ROOT);
switch (val) {
case "":
case NONE:
return null;
case CRC32C:
return ChecksumAlgorithm.CRC32_C;
case CRC64NVME:
return ChecksumAlgorithm.CRC64_NVME;
default:
throw new IllegalArgumentException("Checksum algorithm is not supported: "
+ configValue);
}
});
}
}