X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=third-party%2Fopenflowj%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fprotocol%2FOFPacketIn.java;fp=third-party%2Fopenflowj%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fprotocol%2FOFPacketIn.java;h=0000000000000000000000000000000000000000;hp=927b7bf7a6078c71c3fd6d2d375644d47d91b8ad;hb=e1c04c5af263a9604a765f1ab98be51dfc51d8cb;hpb=a935ffda7f26be29de879a47b426d0db7a28d588 diff --git a/third-party/openflowj/src/main/java/org/openflow/protocol/OFPacketIn.java b/third-party/openflowj/src/main/java/org/openflow/protocol/OFPacketIn.java deleted file mode 100644 index 927b7bf7a6..0000000000 --- a/third-party/openflowj/src/main/java/org/openflow/protocol/OFPacketIn.java +++ /dev/null @@ -1,187 +0,0 @@ -package org.openflow.protocol; - -import java.nio.ByteBuffer; -import java.util.Arrays; - -import org.openflow.util.U16; -import org.openflow.util.U8; - -/** - * Represents an ofp_packet_in - * - * @author David Erickson (daviderickson@cs.stanford.edu) - Feb 8, 2010 - */ -public class OFPacketIn extends OFMessage { - public static int MINIMUM_LENGTH = 18; - - public enum OFPacketInReason { - NO_MATCH, ACTION - } - - protected int bufferId; - protected short totalLength; - protected short inPort; - protected OFPacketInReason reason; - protected byte[] packetData; - - public OFPacketIn() { - super(); - this.type = OFType.PACKET_IN; - this.length = U16.t(MINIMUM_LENGTH); - } - - /** - * Get buffer_id - * @return - */ - public int getBufferId() { - return this.bufferId; - } - - /** - * Set buffer_id - * @param bufferId - */ - public OFPacketIn setBufferId(int bufferId) { - this.bufferId = bufferId; - return this; - } - - /** - * Returns the packet data - * @return - */ - public byte[] getPacketData() { - return this.packetData; - } - - /** - * Sets the packet data, and updates the length of this message - * @param packetData - */ - public OFPacketIn setPacketData(byte[] packetData) { - this.packetData = packetData; - this.length = U16.t(OFPacketIn.MINIMUM_LENGTH + packetData.length); - return this; - } - - /** - * Get in_port - * @return - */ - public short getInPort() { - return this.inPort; - } - - /** - * Set in_port - * @param inPort - */ - public OFPacketIn setInPort(short inPort) { - this.inPort = inPort; - return this; - } - - /** - * Get reason - * @return - */ - public OFPacketInReason getReason() { - return this.reason; - } - - /** - * Set reason - * @param reason - */ - public OFPacketIn setReason(OFPacketInReason reason) { - this.reason = reason; - return this; - } - - /** - * Get total_len - * @return - */ - public short getTotalLength() { - return this.totalLength; - } - - /** - * Set total_len - * @param totalLength - */ - public OFPacketIn setTotalLength(short totalLength) { - this.totalLength = totalLength; - return this; - } - - @Override - public void readFrom(ByteBuffer data) { - super.readFrom(data); - this.bufferId = data.getInt(); - this.totalLength = data.getShort(); - this.inPort = data.getShort(); - this.reason = OFPacketInReason.values()[U8.f(data.get())]; - data.get(); // pad - this.packetData = new byte[getLengthU() - MINIMUM_LENGTH]; - data.get(this.packetData); - } - - @Override - public void writeTo(ByteBuffer data) { - super.writeTo(data); - data.putInt(bufferId); - data.putShort(totalLength); - data.putShort(inPort); - data.put((byte) reason.ordinal()); - data.put((byte) 0x0); // pad - data.put(this.packetData); - } - - @Override - public int hashCode() { - final int prime = 283; - int result = super.hashCode(); - result = prime * result + bufferId; - result = prime * result + inPort; - result = prime * result + Arrays.hashCode(packetData); - result = prime * result + ((reason == null) ? 0 : reason.hashCode()); - result = prime * result + totalLength; - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) { - return true; - } - if (!super.equals(obj)) { - return false; - } - if (!(obj instanceof OFPacketIn)) { - return false; - } - OFPacketIn other = (OFPacketIn) obj; - if (bufferId != other.bufferId) { - return false; - } - if (inPort != other.inPort) { - return false; - } - if (!Arrays.equals(packetData, other.packetData)) { - return false; - } - if (reason == null) { - if (other.reason != null) { - return false; - } - } else if (!reason.equals(other.reason)) { - return false; - } - if (totalLength != other.totalLength) { - return false; - } - return true; - } -}