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

org.wildfly.clustering.marshalling.protostream.time.YearMarshaller Maven / Gradle / Ivy

/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.clustering.marshalling.protostream.time;

import java.io.IOException;
import java.time.LocalDate;
import java.time.Year;

import org.infinispan.protostream.descriptors.WireType;
import org.wildfly.clustering.marshalling.protostream.FieldSetMarshaller;
import org.wildfly.clustering.marshalling.protostream.ProtoStreamReader;
import org.wildfly.clustering.marshalling.protostream.ProtoStreamWriter;

/**
 * Marshals {@link Year} instances as number of years since the epoch year.
 * @author Paul Ferraro
 */
public enum YearMarshaller implements FieldSetMarshaller.Simple {
    INSTANCE;

    private static final int POST_EPOCH_YEAR = 0;
    private static final int PRE_EPOCH_YEAR = 1;
    private static final int FIELDS = 2;

    private static final Year EPOCH = Year.of(LocalDate.ofEpochDay(0).getYear());

    @Override
    public Year createInitialValue() {
        return EPOCH;
    }

    @Override
    public int getFields() {
        return FIELDS;
    }

    @Override
    public Year readFrom(ProtoStreamReader reader, int index, WireType type, Year year) throws IOException {
        switch (index) {
            case POST_EPOCH_YEAR:
                return Year.of(EPOCH.getValue() + reader.readUInt32());
            case PRE_EPOCH_YEAR:
                return Year.of(EPOCH.getValue() - reader.readUInt32());
            default:
                reader.skipField(type);
                return year;
        }
    }

    @Override
    public void writeTo(ProtoStreamWriter writer, Year value) throws IOException {
        int year = value.getValue();
        if (year > EPOCH.getValue()) {
            writer.writeUInt32(POST_EPOCH_YEAR, year - EPOCH.getValue());
        } else if (year < EPOCH.getValue()) {
            writer.writeUInt32(PRE_EPOCH_YEAR, EPOCH.getValue() - year);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy