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

org.neo4j.values.storable.DateTimeArray Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) "Neo4j"
 * Neo4j Sweden AB [https://neo4j.com]
 *
 * This file is part of Neo4j.
 *
 * Neo4j is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.neo4j.values.storable;

import static org.neo4j.memory.HeapEstimator.ZONED_DATE_TIME_SIZE;
import static org.neo4j.memory.HeapEstimator.shallowSizeOfInstance;
import static org.neo4j.memory.HeapEstimator.sizeOfObjectArray;

import java.time.ZonedDateTime;
import java.util.Arrays;
import org.neo4j.values.AnyValue;
import org.neo4j.values.SequenceValue;
import org.neo4j.values.ValueMapper;

public final class DateTimeArray extends TemporalArray {
    private static final long SHALLOW_SIZE = shallowSizeOfInstance(DateTimeArray.class);

    private final ZonedDateTime[] value;

    DateTimeArray(ZonedDateTime[] value) {
        assert value != null;
        this.value = value;
    }

    @Override
    protected ZonedDateTime[] value() {
        return value;
    }

    @Override
    public  T map(ValueMapper mapper) {
        return mapper.mapDateTimeArray(this);
    }

    @Override
    public boolean equals(Value other) {
        return other.equals(value);
    }

    @Override
    public boolean equals(ZonedDateTime[] x) {
        return Arrays.equals(value, x);
    }

    @Override
    public  void writeTo(ValueWriter writer) throws E {
        writeTo(writer, ValueWriter.ArrayType.ZONED_DATE_TIME, value);
    }

    @Override
    public ValueRepresentation valueRepresentation() {
        return ValueRepresentation.ZONED_DATE_TIME_ARRAY;
    }

    @Override
    protected int unsafeCompareTo(Value otherValue) {
        return compareToNonPrimitiveArray((DateTimeArray) otherValue);
    }

    @Override
    public String getTypeName() {
        return "DateTimeArray";
    }

    @Override
    public long estimatedHeapUsage() {
        return SHALLOW_SIZE + sizeOfObjectArray(ZONED_DATE_TIME_SIZE, value.length);
    }

    @Override
    public boolean hasCompatibleType(AnyValue value) {
        return value instanceof DateTimeValue;
    }

    @Override
    public ArrayValue copyWithAppended(AnyValue added) {
        assert hasCompatibleType(added) : "Incompatible types";
        ZonedDateTime[] newArray = Arrays.copyOf(value, value.length + 1);
        newArray[value.length] = ((DateTimeValue) added).temporal();
        return new DateTimeArray(newArray);
    }

    @Override
    public ArrayValue copyWithPrepended(AnyValue prepended) {
        assert hasCompatibleType(prepended) : "Incompatible types";
        ZonedDateTime[] newArray = new ZonedDateTime[value.length + 1];
        System.arraycopy(value, 0, newArray, 1, value.length);
        newArray[0] = ((DateTimeValue) prepended).temporal();
        return new DateTimeArray(newArray);
    }

    @Override
    public boolean equals(SequenceValue other) {
        if (other instanceof ArrayValue otherArray) {
            return otherArray.equals(value);
        } else {
            return super.equals(other);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy