blob: be09941b4e4767007589553f7853e0b27288a2f6 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.tinkerpop.gremlin.hadoop.structure.io;
import org.apache.hadoop.io.Writable;
import org.apache.hadoop.io.WritableUtils;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.structure.io.gryo.kryoshim.KryoShimServiceLoader;
import org.apache.tinkerpop.gremlin.structure.util.ElementHelper;
import org.apache.tinkerpop.gremlin.structure.util.star.StarGraph;
import java.io.ByteArrayInputStream;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
/**
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public final class VertexWritable implements Writable, Serializable {
private StarGraph.StarVertex vertex;
public VertexWritable() {
}
public VertexWritable(final Vertex vertex) {
this.set(vertex);
}
public void set(final Vertex vertex) {
this.vertex = vertex instanceof StarGraph.StarVertex ?
(StarGraph.StarVertex) vertex :
StarGraph.of(vertex).getStarVertex();
}
public StarGraph.StarVertex get() {
return this.vertex;
}
@Override
public void readFields(final DataInput input) throws IOException {
this.vertex = null;
final ByteArrayInputStream bais = new ByteArrayInputStream(WritableUtils.readCompressedByteArray(input));
this.vertex = ((StarGraph)KryoShimServiceLoader.readClassAndObject(bais)).getStarVertex(); // read the star graph;
}
@Override
public void write(final DataOutput output) throws IOException {
final byte serialized[] = KryoShimServiceLoader.writeClassAndObjectToBytes(this.vertex.graph());
WritableUtils.writeCompressedByteArray(output, serialized);
}
private void writeObject(final ObjectOutputStream outputStream) throws IOException {
this.write(outputStream);
}
private void readObject(final ObjectInputStream inputStream) throws IOException, ClassNotFoundException {
this.readFields(inputStream);
}
@Override
public boolean equals(final Object other) {
return other instanceof VertexWritable && ElementHelper.areEqual(this.vertex, ((VertexWritable) other).get());
}
@Override
public int hashCode() {
return this.vertex.hashCode();
}
@Override
public String toString() {
return this.vertex.toString();
}
}