blob: d8f71a3b7d899a27bbbfbeb293d411ece725ff07 [file] [log] [blame]
package org.openflow.types;
import org.jboss.netty.buffer.ChannelBuffer;
import org.openflow.exceptions.OFParseError;
/**
* A wrapper around the OpenFlow physical port description. The interfaces to
* this object are version agnostic.
*
* @author capveg
*/
public class OFPhysicalPort implements OFValueType {
static final int LENGTH = 4;
private final int port;
private OFPhysicalPort(int port) {
this.port = port;
}
public static OFPhysicalPort of(int port) {
return new OFPhysicalPort(port);
}
@Override
public int getLength() {
return LENGTH;
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof OFPhysicalPort))
return false;
OFPhysicalPort other = (OFPhysicalPort)obj;
if (other.port != this.port)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 59;
int result = 1;
result = prime * result + port;
return result;
}
@Override
public String toString() {
return Integer.toHexString(port);
}
public void write4Bytes(ChannelBuffer c) {
c.writeInt(this.port);
}
public static OFPhysicalPort read4Bytes(ChannelBuffer c) throws OFParseError {
return OFPhysicalPort.of((int)(c.readUnsignedInt() & 0xFFFFFFFF));
}
}