org.neo4j.values.virtual.RelationshipValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-values Show documentation
Show all versions of neo4j-values Show documentation
Neo4j property value system.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://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.virtual;
import java.util.function.Consumer;
import org.neo4j.values.AnyValueWriter;
import org.neo4j.values.storable.TextValue;
import static java.lang.String.format;
import static org.neo4j.memory.HeapEstimator.shallowSizeOfInstance;
import static org.neo4j.values.AnyValueWriter.EntityMode.REFERENCE;
public abstract class RelationshipValue extends VirtualRelationshipValue implements RelationshipVisitor
{
private final long id;
private final long startNodeId;
private final long endNodeId;
private int type = RelationshipReference.NO_TYPE;
protected RelationshipValue( long id, long startNodeId, long endNodeId )
{
this.id = id;
this.startNodeId = startNodeId;
this.endNodeId = endNodeId;
}
@Override
public void writeTo( AnyValueWriter writer ) throws E
{
if ( writer.entityMode() == REFERENCE )
{
writer.writeRelationshipReference( id );
}
else
{
writer.writeRelationship( id, startNode().id(), endNode().id(), type(), properties(), isDeleted() );
}
}
@Override
public String toString()
{
return format( "-[%d]-", id );
}
public long startNodeId()
{
return startNodeId;
}
@Override
public long startNodeId( Consumer consumer )
{
return startNodeId;
}
public long endNodeId()
{
return endNodeId;
}
@Override
public long endNodeId( Consumer consumer )
{
return endNodeId;
}
public abstract VirtualNodeValue startNode();
public abstract VirtualNodeValue endNode();
@Override
public long id()
{
return id;
}
@Override
public int relationshipTypeId( Consumer consumer )
{
if ( type == RelationshipReference.NO_TYPE )
{
consumer.accept( this );
}
return type;
}
public abstract TextValue type();
public abstract MapValue properties();
public VirtualNodeValue otherNode( VirtualNodeValue node )
{
return node.equals( startNode() ) ? endNode() : startNode();
}
public long otherNodeId( long node )
{
return node == startNodeId() ? endNodeId() : startNodeId();
}
@Override
public String getTypeName()
{
return "Relationship";
}
@Override
public void visit( long startNode, long endNode, int type )
{
this.type = type;
}
private static final long DIRECT_RELATIONSHIP_VALUE_SHALLOW_SIZE = shallowSizeOfInstance( DirectRelationshipValue.class );
static class DirectRelationshipValue extends RelationshipValue
{
private final VirtualNodeValue startNode;
private final VirtualNodeValue endNode;
private final TextValue type;
private final MapValue properties;
private final boolean isDeleted;
DirectRelationshipValue( long id, VirtualNodeValue startNode, VirtualNodeValue endNode, TextValue type, MapValue properties )
{
super( id, startNode.id(), endNode.id() );
assert properties != null;
this.startNode = startNode;
this.endNode = endNode;
this.type = type;
this.properties = properties;
this.isDeleted = false;
}
DirectRelationshipValue( long id, VirtualNodeValue startNode, VirtualNodeValue endNode, TextValue type, MapValue properties, boolean isDeleted )
{
super( id, startNode.id(), endNode.id() );
assert properties != null;
this.startNode = startNode;
this.endNode = endNode;
this.type = type;
this.properties = properties;
this.isDeleted = isDeleted;
}
@Override
public VirtualNodeValue startNode()
{
return startNode;
}
@Override
public VirtualNodeValue endNode()
{
return endNode;
}
@Override
public TextValue type()
{
return type;
}
@Override
public MapValue properties()
{
return properties;
}
@Override
public long estimatedHeapUsage()
{
return DIRECT_RELATIONSHIP_VALUE_SHALLOW_SIZE +
startNode.estimatedHeapUsage() +
endNode.estimatedHeapUsage() +
type.estimatedHeapUsage() +
properties.estimatedHeapUsage();
}
@Override
public boolean isDeleted()
{
return isDeleted;
}
}
}