com.datastax.driver.extras.codecs.jdk8.OptionalCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-driver-extras Show documentation
Show all versions of cassandra-driver-extras Show documentation
Extended functionality for the Java driver.
The newest version!
/*
* Copyright DataStax, Inc.
*
* 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 com.datastax.driver.extras.codecs.jdk8;
import com.datastax.driver.core.IgnoreJDK6Requirement;
import com.datastax.driver.core.TypeCodec;
import com.datastax.driver.extras.codecs.MappingCodec;
import com.google.common.reflect.TypeParameter;
import com.google.common.reflect.TypeToken;
import java.util.Collection;
import java.util.Map;
/**
* A codec that wraps other codecs around JDK 8's {@link java.util.Optional} API.
*
* @param The wrapped Java type
*/
@IgnoreJDK6Requirement
@SuppressWarnings({"Since15", "OptionalUsedAsFieldOrParameterType"})
public class OptionalCodec extends MappingCodec, T> {
private final java.util.function.Predicate isAbsent;
public OptionalCodec(TypeCodec codec) {
this(
codec,
new java.util.function.Predicate() {
@Override
public boolean test(T input) {
return input == null
|| input instanceof Collection && ((Collection) input).isEmpty()
|| input instanceof Map && ((Map) input).isEmpty();
}
});
}
public OptionalCodec(TypeCodec codec, java.util.function.Predicate isAbsent) {
// @formatter:off
super(
codec,
new TypeToken>() {}.where(
new TypeParameter() {}, codec.getJavaType()));
// @formatter:on
this.isAbsent = isAbsent;
}
@Override
protected java.util.Optional deserialize(T value) {
return isAbsent(value) ? java.util.Optional.empty() : java.util.Optional.of(value);
}
@Override
protected T serialize(java.util.Optional value) {
return value.isPresent() ? value.get() : absentValue();
}
protected T absentValue() {
return null;
}
protected boolean isAbsent(T value) {
return isAbsent.test(value);
}
}