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

com.github.robtimus.net.ip.jackson.databind.IPAddressSerializer Maven / Gradle / Ivy

/*
 * IPAddressSerializer.java
 * Copyright 2020 Rob Spoor
 *
 * 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.github.robtimus.net.ip.jackson.databind;

import java.io.IOException;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.github.robtimus.net.ip.IPAddress;
import com.github.robtimus.net.ip.IPAddressFormatter;
import com.github.robtimus.net.ip.IPv4Address;
import com.github.robtimus.net.ip.IPv6Address;

/**
 * Base class for all serializers for {@link IPAddress} and sub classes.
 *
 * @author Rob Spoor
 * @param  The type of IP address to serialize.
 */
public abstract class IPAddressSerializer> extends JsonSerializer {

    private final IPAddressFormatter formatter;

    private IPAddressSerializer(IPAddressFormatter formatter) {
        this.formatter = formatter;
    }

    @Override
    public void serialize(I value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
        gen.writeString(format(value));
    }

    private String format(I value) {
        return formatter != null ? formatter.format(value) : value.toString();
    }

    @Override
    public abstract Class handledType();

    /**
     * A serializer for {@link IPv4Address}.
     *
     * @author Rob Spoor
     */
    public static class IPv4 extends IPAddressSerializer {

        static final IPv4 INSTANCE = new IPv4();

        /**
         * Creates a new {@link IPv4Address} serializer.
         */
        public IPv4() {
            super(null);
        }

        @Override
        public Class handledType() {
            return IPv4Address.class;
        }
    }

    /**
     * A serializer for {@link IPv4Address}.
     *
     * @author Rob Spoor
     */
    public static class IPv6 extends IPAddressSerializer {

        static final IPv6 INSTANCE = new IPv6(null);

        /**
         * Creates a new {@link IPv6Address} serializer.
         *
         * @param formatter The formatter to use. If {@code null}, {@link IPv6Address#toString()} will be used instead.
         */
        public IPv6(IPAddressFormatter formatter) {
            super(formatter);
        }

        @Override
        public Class handledType() {
            return IPv6Address.class;
        }
    }

    /**
     * A serializer for {@link IPAddress}. It can handle both {@link IPv4Address} and {@link IPv6Address}.
     *
     * @author Rob Spoor
     */
    public static class AnyVersion extends IPAddressSerializer> {

        static final AnyVersion INSTANCE = new AnyVersion(null);

        /**
         * Creates a new {@link IPAddress} serializer.
         *
         * @param formatter The formatter to use. If {@code null}, {@link IPAddress#toString()} will be used instead.
         */
        public AnyVersion(IPAddressFormatter> formatter) {
            super(formatter);
        }

        @Override
        @SuppressWarnings("unchecked")
        public Class> handledType() {
            return (Class>) (Class) IPAddress.class;
        }
    }
}