/** * Fortika - Robust Group Communication * Copyright (C) 2002-2006 Sergio Mena de la Cruz (EPFL) (sergio.mena@epfl.ch) * * This program 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 2 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ // Transportable class for Long package framework.libraries.serialization; import uka.transport.Transportable; import framework.Compressable; public class TLong implements Transportable, Comparable, Compressable{ // Value private long value; // Constructor public TLong(long value){ this.value = value; } public long longValue(){ return value; } public int hashCode() { return (int)(value ^ (value >>> 32)); } public boolean equals(Object obj) { if (obj instanceof TLong) { return value == ((TLong)obj).longValue(); } return false; } public int compareTo(Object obj) { long thisVal = this.value; long anotherVal = ((TLong)obj).value; return (thisVal<anotherVal ? -1 : (thisVal==anotherVal ? 0 : 1)); } public String toString(){ return "TLong(" + value + ")"; } /** * Methods defined by the Transportable interface */ // Size of primitive fields protected static final int _SIZE = uka.transport.BasicIO.SIZEOF_long; /** Used by uka.transport.UnmarshalStream to unmarshal the object */ public TLong(uka.transport.UnmarshalStream _stream) throws java.io.IOException, ClassNotFoundException { this(_stream, _SIZE); _stream.accept(_SIZE); } protected TLong(uka.transport.UnmarshalStream _stream, int _size) throws java.io.IOException, ClassNotFoundException { _stream.request(_size); byte[] _buffer = _stream.getBuffer(); int _pos = _stream.getPosition(); value = uka.transport.BasicIO.extractLong(_buffer, _pos); _pos += uka.transport.BasicIO.SIZEOF_long; } /** Method of interface Transportable, it must be declared public. It is called from within UnmarshalStream after creating the object and assigning a stream reference to it. */ public void unmarshalReferences(uka.transport.UnmarshalStream _stream) throws java.io.IOException, ClassNotFoundException { } /** Called directly by uka.transport.MarshalStream */ public void marshal(uka.transport.MarshalStream _stream) throws java.io.IOException { _stream.reserve(_SIZE); byte[] _buffer = _stream.getBuffer(); int _pos = _stream.getPosition(); marshalPrimitives(_buffer, _pos); _stream.deliver(_SIZE); marshalReferences(_stream); } protected void marshalPrimitives(byte[] _buffer, int _pos) throws java.io.IOException { _pos = uka.transport.BasicIO.insert(_buffer, _pos, value); } protected void marshalReferences(uka.transport.MarshalStream _stream) throws java.io.IOException { } public final Object deepClone(uka.transport.DeepClone _helper) throws CloneNotSupportedException { Object _copy = clone(); _helper.add(this, _copy); ((TLong) _copy).deepCloneReferences(_helper); return _copy; } /** Clone all references to other objects. Use the DeepClone to resolve cycles */ protected void deepCloneReferences(uka.transport.DeepClone _helper) throws CloneNotSupportedException { } public int compareToCompressable (Object o){ if(o instanceof TLong){ TLong l = (TLong)o; if(value < l.value) { if( value == (l.value - 1) ){ return Compressable.PREDECESSOR; } else { return Compressable.SMALLER; } } if(value > l.value) { if( value == (l.value + 1) ){ return Compressable.SUCCESSOR; } else { return Compressable.BIGGER; } } return Compressable.EQUAL; } else { return Compressable.NOT_COMPARABLE; } } }