All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bboss.org.jgroups.util.SingletonAddress Maven / Gradle / Ivy

The newest version!
package bboss.org.jgroups.util;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import bboss.org.jgroups.Address;

/**
 * Address with a cluster name. Used by TP.Bundler.
 * @author Bela Ban
 * @version $Id: SingletonAddress.java,v 1.1 2010/04/07 10:36:00 belaban Exp $
 */
public class SingletonAddress implements Address {
    protected final String cluster_name;
    protected final Address addr;
    private static final long serialVersionUID=-7139682546627602986L;

    public SingletonAddress(String cluster_name, Address addr) {
        this.cluster_name=cluster_name;
        this.addr=addr;
        if(cluster_name == null)
            throw new NullPointerException("cluster_name must not be null");
    }

    public SingletonAddress() {
        cluster_name=null;
        addr=null;
    }

    public Address getAddress() {
        return addr;
    }

    public String getClusterName() {
        return cluster_name;
    }

    public boolean isMulticastAddress() {
        return false;
    }

    public int size() {
        return 0;
    }

    public void writeExternal(ObjectOutput out) throws IOException {
        throw new UnsupportedOperationException();
    }

    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
        throw new UnsupportedOperationException();
    }

    public void writeTo(DataOutputStream out) throws IOException {
        throw new UnsupportedOperationException();
    }

    public void readFrom(DataInputStream in) throws IOException, IllegalAccessException, InstantiationException {
        throw new UnsupportedOperationException();
    }

    public int hashCode() {
        int retval=0;
        if(cluster_name != null)
            retval+=cluster_name.hashCode();
        if(addr != null)
            retval+=addr.hashCode();
        return retval;
    }

    public boolean equals(Object obj) {
        if(!(obj instanceof Address))
            throw new IllegalArgumentException("argument is " + obj.getClass());
        return compareTo((Address)obj) == 0;
    }

    public int compareTo(Address o) {
        SingletonAddress other=(SingletonAddress)o;
        if(this == other)
            return 0;
        if(other == null)
            return 1;
        int rc=cluster_name.compareTo(other.cluster_name);
        if(rc != 0)
            return rc;
        if(addr == null && other.addr == null)
            return 0;
        if(addr == null && other.addr != null)
            return -1;
        if(addr != null && other.addr == null)
            return 1;

        assert addr != null; // this is here to make the (incorrect) 'addr' NPE warning below disappear !
        return addr.compareTo(other.addr);
    }

    public String toString() {
        return cluster_name + (addr != null? ":" + addr.toString() : "");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy