com.mongodb.KotlinCodecProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* Copyright 2008-present MongoDB, 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.mongodb;
import com.mongodb.lang.Nullable;
import org.bson.codecs.Codec;
import org.bson.codecs.configuration.CodecProvider;
import org.bson.codecs.configuration.CodecRegistry;
import org.bson.codecs.kotlin.ArrayCodecProvider;
import org.bson.codecs.kotlin.DataClassCodecProvider;
import org.bson.codecs.kotlinx.KotlinSerializerCodecProvider;
import java.lang.reflect.Type;
import java.util.Collections;
import java.util.List;
import static org.bson.internal.ProvidersCodecRegistry.getFromCodecProvider;
import static org.bson.codecs.configuration.CodecRegistries.fromProviders;
/**
* A CodecProvider for Kotlin data classes.
* Delegates to {@code org.bson.codecs.kotlinx.KotlinSerializerCodecProvider}
* and falls back to {@code org.bson.codecs.kotlin.DataClassCodecProvider}.
* If neither bson-kotlin package nor the bson-kotlinx package is available,
* {@linkplain CodecProvider#get(Class, CodecRegistry) provides} {@code null}.
*
* @since 4.10
*/
public class KotlinCodecProvider implements CodecProvider {
@Nullable
private static final CodecProvider KOTLIN_SERIALIZABLE_CODEC_PROVIDER;
@Nullable
private static final CodecProvider DATA_CLASS_CODEC_PROVIDER;
static {
CodecProvider possibleCodecProvider = null;
try {
Class.forName("org.bson.codecs.kotlinx.KotlinSerializerCodecProvider"); // Kotlinx bson canary test
possibleCodecProvider = new KotlinSerializerCodecProvider();
} catch (ClassNotFoundException e) {
// No kotlinx support
}
KOTLIN_SERIALIZABLE_CODEC_PROVIDER = possibleCodecProvider;
possibleCodecProvider = null;
try {
Class.forName("org.bson.codecs.kotlin.DataClassCodecProvider"); // Kotlin bson canary test
possibleCodecProvider = fromProviders(new ArrayCodecProvider(), new DataClassCodecProvider());
} catch (ClassNotFoundException e) {
// No kotlin data class support
}
DATA_CLASS_CODEC_PROVIDER = possibleCodecProvider;
}
@Override
@Nullable
public Codec get(final Class clazz, final CodecRegistry registry) {
return get(clazz, Collections.emptyList(), registry);
}
@Override
@Nullable
public Codec get(final Class clazz, final List typeArguments, final CodecRegistry registry) {
Codec codec = null;
if (KOTLIN_SERIALIZABLE_CODEC_PROVIDER != null) {
codec = getFromCodecProvider(KOTLIN_SERIALIZABLE_CODEC_PROVIDER, clazz, typeArguments, registry);
}
if (codec == null && DATA_CLASS_CODEC_PROVIDER != null) {
codec = getFromCodecProvider(DATA_CLASS_CODEC_PROVIDER, clazz, typeArguments, registry);
}
return codec;
}
}