|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.Node
public final class Node
Stores and manipulates host:port information.
Field Summary | |
---|---|
private java.lang.String |
cacheToString
cached toString() of this object. |
private int |
hashCode
hash of this object. |
private java.net.InetAddress |
host
Internet address of node. |
private static java.net.InetAddress |
localhost
Internet address of local host. |
private static java.lang.String |
loopback
Local host (loopback) Internet address string. |
private short |
port
Port of jist node. |
Constructor Summary | |
---|---|
Node(byte[] node,
int offset)
Instantiate node object from serialized information in byte array at given offset. |
|
Node(byte[] addr,
short port)
Instantiate node object with given host and port. |
|
Node(java.net.InetAddress host,
int port)
Instantiate node object with given host and port. |
|
Node(java.net.InetAddress host,
short port)
Instantiate node object with given host and port. |
|
Node(int port)
Instantiate node object with given port on local host. |
|
Node(short port)
Instantiate node object with given port on the local host. |
|
Node(java.lang.String host,
int port)
Instantiate node object with host string and port. |
|
Node(java.lang.String host,
short port)
Instantiate node object with given host and port. |
Method Summary | |
---|---|
private void |
calcHashCode()
Compute and cache node hash code. |
boolean |
equals(java.lang.Object o)
Determine whether this node is the same as another. |
java.net.InetAddress |
getHost()
Return host Internet address of current node. |
java.lang.String |
getHostString()
Return host string of current node. |
private static java.net.InetAddress |
getLocalHost()
Find local host Internet address. |
private static java.net.InetAddress |
getLocalHostJava()
Find local host Internet address using (portable) Java mechanisms. |
static java.net.InetAddress |
getLocalHostLinux(java.lang.String iface)
Find local host Internet address using Unix mechanisms. |
short |
getPort()
Return port of current node. |
int |
hashCode()
Return node hash code. |
static Node |
parse(java.lang.String s)
Parse String (host:port) into a Node. |
static Node |
parse(java.lang.String s,
int defaultPort)
Parse string (host:port) into a Node, using the default port if the string does not contain a port. |
byte[] |
toByteArray()
Serialize node instance into byte array. |
void |
toByteArray(byte[] b,
int offset)
Serialize node instance into byte array. |
java.lang.String |
toString()
Return string representation of node in format host:port. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private java.net.InetAddress host
private short port
private int hashCode
private java.lang.String cacheToString
private static java.net.InetAddress localhost
private static final java.lang.String loopback
Constructor Detail |
---|
public Node(java.net.InetAddress host, short port)
host
- Internet address of node instanceport
- port of node instancepublic Node(java.lang.String host, short port) throws java.net.UnknownHostException
host
- Internet address or name of node instanceport
- port of node instance
java.net.UnknownHostException
- thrown if named host can not be resolvedpublic Node(byte[] addr, short port) throws java.net.UnknownHostException
addr
- Internet address of node instance as quad-byte arrayport
- port of node instance
java.net.UnknownHostException
- neverpublic Node(short port)
port
- port of node instancepublic Node(java.net.InetAddress host, int port)
host
- Internet address of node instanceport
- port of node instancepublic Node(java.lang.String host, int port) throws java.net.UnknownHostException
host
- Internet address string of node instanceport
- port of node instance
java.net.UnknownHostException
- invalid host name or IP addresspublic Node(int port)
port
- port of node instancepublic Node(byte[] node, int offset)
node
- byte array with node informationoffset
- location of information within byte arrayMethod Detail |
---|
public byte[] toByteArray()
public void toByteArray(byte[] b, int offset)
b
- byte array to place node information intooffset
- starting location within byte array.public static Node parse(java.lang.String s) throws java.net.UnknownHostException
s
- serialized node string in format host:port
java.net.UnknownHostException
- thrown if host name within
string can not be resolvedpublic static Node parse(java.lang.String s, int defaultPort) throws java.net.UnknownHostException
s
- serialized node string in format host[:port]defaultPort
- default port to use if port omitted
java.net.UnknownHostException
- thrown if host name within string
can not be resolved.public java.net.InetAddress getHost()
public java.lang.String getHostString()
public short getPort()
public java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
o
- object to test equality
private void calcHashCode()
public int hashCode()
hashCode
in class java.lang.Object
private static java.net.InetAddress getLocalHost()
private static java.net.InetAddress getLocalHostJava()
public static java.net.InetAddress getLocalHostLinux(java.lang.String iface)
iface
- network interface to query 'ifconfig'
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |