/*********************************************************************************************************************** * Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu) * * Licensed 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 eu.stratosphere.test.iterative.nephele.customdanglingpagerank.types; import java.io.IOException; import eu.stratosphere.api.common.typeutils.TypeComparator; import eu.stratosphere.core.memory.DataInputView; import eu.stratosphere.core.memory.DataOutputView; import eu.stratosphere.core.memory.MemorySegment; public final class VertexWithAdjacencyListComparator extends TypeComparator<VertexWithAdjacencyList> { private static final long serialVersionUID = 1L; private long reference; @Override public int hash(VertexWithAdjacencyList record) { final long value = record.getVertexID(); return 43 + (int) (value ^ value >>> 32); } @Override public void setReference(VertexWithAdjacencyList toCompare) { this.reference = toCompare.getVertexID(); } @Override public boolean equalToReference(VertexWithAdjacencyList candidate) { return candidate.getVertexID() == this.reference; } @Override public int compareToReference(TypeComparator<VertexWithAdjacencyList> referencedComparator) { VertexWithAdjacencyListComparator comp = (VertexWithAdjacencyListComparator) referencedComparator; final long diff = comp.reference - this.reference; return diff < 0 ? -1 : diff > 0 ? 1 : 0; } @Override public int compare(VertexWithAdjacencyList first, VertexWithAdjacencyList second) { final long diff = first.getVertexID() - second.getVertexID(); return diff < 0 ? -1 : diff > 0 ? 1 : 0; } @Override public int compare(DataInputView source1, DataInputView source2) throws IOException { final long diff = source1.readLong() - source2.readLong(); return diff < 0 ? -1 : diff > 0 ? 1 : 0; } @Override public boolean supportsNormalizedKey() { return true; } @Override public int getNormalizeKeyLen() { return 8; } @Override public boolean isNormalizedKeyPrefixOnly(int keyBytes) { return keyBytes < 8; } @Override public void putNormalizedKey(VertexWithAdjacencyList record, MemorySegment target, int offset, int len) { final long value = record.getVertexID() - Long.MIN_VALUE; // see IntValue for an explanation of the logic if (len == 8) { // default case, full normalized key target.putLongBigEndian(offset, value); } else if (len <= 0) { } else if (len < 8) { for (int i = 0; len > 0; len--, i++) { target.put(offset + i, (byte) ((value >>> ((3-i)<<3)) & 0xff)); } } else { target.putLongBigEndian(offset, value); for (int i = 8; i < len; i++) { target.put(offset + i, (byte) 0); } } } @Override public boolean invertNormalizedKey() { return false; } @Override public boolean supportsSerializationWithKeyNormalization() { return false; } @Override public void writeWithKeyNormalization(VertexWithAdjacencyList record, DataOutputView target) { throw new UnsupportedOperationException(); } @Override public VertexWithAdjacencyList readWithKeyDenormalization(VertexWithAdjacencyList reuse, DataInputView source) { throw new UnsupportedOperationException(); } @Override public VertexWithAdjacencyListComparator duplicate() { return new VertexWithAdjacencyListComparator(); } }