
org.neo4j.bolt.protocol.io.pipeline.PipelineAnyValueWriter Maven / Gradle / Ivy
/*
* 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.bolt.protocol.io.pipeline;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.OffsetTime;
import java.time.ZonedDateTime;
import org.neo4j.packstream.io.PackstreamBuf;
import org.neo4j.packstream.io.value.PackstreamValueWriter;
import org.neo4j.values.storable.CoordinateReferenceSystem;
import org.neo4j.values.storable.TextArray;
import org.neo4j.values.storable.TextValue;
import org.neo4j.values.virtual.MapValue;
import org.neo4j.values.virtual.NodeValue;
import org.neo4j.values.virtual.RelationshipValue;
public class PipelineAnyValueWriter extends PackstreamValueWriter {
private final PipelineContext context;
public PipelineAnyValueWriter(PackstreamBuf target, PipelineContext context) {
super(target);
this.context = context;
}
@Override
public void writePoint(CoordinateReferenceSystem crs, double[] coordinate) {
this.context.writePoint(crs, coordinate);
}
@Override
public void writeDuration(long months, long days, long seconds, int nanos) {
this.context.writeDuration(months, days, seconds, nanos);
}
@Override
public void writeDate(LocalDate localDate) {
this.context.writeDate(localDate);
}
@Override
public void writeLocalTime(LocalTime localTime) {
this.context.writeTime(localTime);
}
@Override
public void writeTime(OffsetTime offsetTime) {
this.context.writeTime(offsetTime);
}
@Override
public void writeLocalDateTime(LocalDateTime localDateTime) {
this.context.writeLocalDateTime(localDateTime);
}
@Override
public void writeDateTime(ZonedDateTime zonedDateTime) {
this.context.writeDateTime(zonedDateTime);
}
@Override
public void writeNode(String elementId, long nodeId, TextArray labels, MapValue properties, boolean isDeleted) {
this.context.writeNode(elementId, nodeId, labels, properties, isDeleted);
}
@Override
public void writeRelationship(
String elementId,
long relId,
String startNodeElementId,
long startNodeId,
String endNodeElementId,
long endNodeId,
TextValue type,
MapValue properties,
boolean isDeleted) {
this.context.writeRelationship(
elementId,
relId,
startNodeElementId,
startNodeId,
endNodeElementId,
endNodeId,
type,
properties,
isDeleted);
}
@Override
public void writePath(NodeValue[] nodes, RelationshipValue[] relationships) {
this.context.writePath(nodes, relationships);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy