All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.micronaut.configuration.jooq.JsonConverterProvider Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2017-2020 original authors
 *
 * 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
 *
 * https://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.micronaut.configuration.jooq;

import io.micronaut.context.annotation.Requires;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.core.type.Argument;
import io.micronaut.json.JsonMapper;
import jakarta.inject.Singleton;
import org.jooq.Converter;
import org.jooq.ConverterProvider;
import org.jooq.JSON;
import org.jooq.JSONB;
import org.jooq.exception.DataTypeException;
import org.jooq.impl.DefaultConverterProvider;

import java.nio.charset.StandardCharsets;

/**
 * jOOQ ConverterProvider integrating the micronaut-json-core {@link JsonMapper} to convert JSON and JSONB types.
 *
 * @author Lukas Moravec
 * @since 4.1.0
 */
@Singleton
@Requires(beans = {JsonMapper.class})
public class JsonConverterProvider implements ConverterProvider {

    private final ConverterProvider delegate = new DefaultConverterProvider();
    private final JsonMapper jsonMapper;

    public JsonConverterProvider(JsonMapper jsonMapper) {
        this.jsonMapper = jsonMapper;
    }

    @Override
    @Nullable
    @SuppressWarnings("unchecked")
    public  Converter provide(Class tType, Class uType) {
        if (tType == JSON.class) {
            return Converter.ofNullable(tType, uType,
                    t -> {
                        try {
                            return jsonMapper.readValue(((JSON) t).data(), Argument.of(uType));
                        } catch (Exception e) {
                            throw new DataTypeException("JSON mapping error", e);
                        }
                    },
                    u -> {
                        try {
                            return (T) JSON.valueOf(new String(jsonMapper.writeValueAsBytes(u), StandardCharsets.UTF_8));
                        } catch (Exception e) {
                            throw new DataTypeException("JSON mapping error", e);
                        }
                    }
            );
        } else if (tType == JSONB.class) {
            return Converter.ofNullable(tType, uType,
                    t -> {
                        try {
                            return jsonMapper.readValue(((JSONB) t).data(), Argument.of(uType));
                        } catch (Exception e) {
                            throw new DataTypeException("JSON mapping error", e);
                        }
                    },
                    u -> {
                        try {
                            return (T) JSONB.valueOf(new String(jsonMapper.writeValueAsBytes(u), StandardCharsets.UTF_8));
                        } catch (Exception e) {
                            throw new DataTypeException("JSON mapping error", e);
                        }
                    }
            );
        } else {
            return delegate.provide(tType, uType);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy