
software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute.DurationAttributeConverter Maven / Gradle / Ivy
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.enhanced.dynamodb.internal.converter.attribute;
import static software.amazon.awssdk.enhanced.dynamodb.internal.converter.ConverterUtils.padLeft;
import java.time.Duration;
import software.amazon.awssdk.annotations.Immutable;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.annotations.ThreadSafe;
import software.amazon.awssdk.enhanced.dynamodb.AttributeConverter;
import software.amazon.awssdk.enhanced.dynamodb.AttributeValueType;
import software.amazon.awssdk.enhanced.dynamodb.EnhancedType;
import software.amazon.awssdk.enhanced.dynamodb.internal.converter.ConverterUtils;
import software.amazon.awssdk.enhanced.dynamodb.internal.converter.TypeConvertingVisitor;
import software.amazon.awssdk.services.dynamodb.model.AttributeValue;
/**
* A converter between {@link Duration} and {@link AttributeValue}.
*
*
* This stores and reads values in DynamoDB as a number, so that they can be sorted numerically as part of a sort key.
*
*
* Durations are stored in the format "[-]X[.YYYYYYYYY]", where X is the number of seconds in the duration, and Y is the number of
* nanoseconds in the duration, left padded with zeroes to a length of 9. The Y and decimal point may be excluded for durations
* that are of whole seconds. The duration may be preceded by a - to indicate a negative duration.
*
*
* Examples:
*
* - {@code Duration.ofDays(1)} is stored as {@code ItemAttributeValueMapper.fromNumber("86400")}
* - {@code Duration.ofSeconds(9)} is stored as {@code ItemAttributeValueMapper.fromNumber("9")}
* - {@code Duration.ofSeconds(-9)} is stored as {@code ItemAttributeValueMapper.fromNumber("-9")}
* - {@code Duration.ofNanos(1_234_567_890)} is stored as {@code ItemAttributeValueMapper.fromNumber("1.234567890")}
* - {@code Duration.ofMillis(1)} is stored as {@code ItemAttributeValueMapper.fromNumber("0.001000000")}
* - {@code Duration.ofNanos(1)} is stored as {@code ItemAttributeValueMapper.fromNumber("0.000000001")}
* - {@code Duration.ofNanos(-1)} is stored as {@code ItemAttributeValueMapper.fromNumber("-0.000000001")}
*
*
*
* This can be created via {@link #create()}.
*/
@SdkInternalApi
@ThreadSafe
@Immutable
public final class DurationAttributeConverter implements AttributeConverter {
private static final Visitor VISITOR = new Visitor();
private DurationAttributeConverter() {
}
public static DurationAttributeConverter create() {
return new DurationAttributeConverter();
}
@Override
public EnhancedType type() {
return EnhancedType.of(Duration.class);
}
@Override
public AttributeValueType attributeValueType() {
return AttributeValueType.N;
}
@Override
public AttributeValue transformFrom(Duration input) {
return AttributeValue.builder()
.n(input.getSeconds() +
(input.getNano() == 0 ? "" : "." + padLeft(9, input.getNano())))
.build();
}
@Override
public Duration transformTo(AttributeValue input) {
if (input.n() != null) {
return EnhancedAttributeValue.fromNumber(input.n()).convert(VISITOR);
}
return EnhancedAttributeValue.fromAttributeValue(input).convert(VISITOR);
}
private static final class Visitor extends TypeConvertingVisitor {
private Visitor() {
super(Duration.class, DurationAttributeConverter.class);
}
@Override
public Duration convertNumber(String value) {
String[] splitOnDecimal = ConverterUtils.splitNumberOnDecimal(value);
long seconds = Long.parseLong(splitOnDecimal[0]);
int nanoAdjustment = Integer.parseInt(splitOnDecimal[1]);
if (seconds < 0) {
nanoAdjustment = -nanoAdjustment;
}
return Duration.ofSeconds(seconds, nanoAdjustment);
}
}
}