blob: f8ceec0d5f9e2773f99580f140291428ba48caac [file] [log] [blame]
// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
// Copyright (c) 2011, 2012 Open Networking Foundation
// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
// This library was generated by the LoxiGen Compiler.
// See the file LICENSE.txt which should have been included in the source distribution
// Automatically generated by LOXI from template of_class.java
// Do not modify
package org.projectfloodlight.openflow.protocol.ver12;
import org.projectfloodlight.openflow.protocol.*;
import org.projectfloodlight.openflow.protocol.action.*;
import org.projectfloodlight.openflow.protocol.actionid.*;
import org.projectfloodlight.openflow.protocol.bsntlv.*;
import org.projectfloodlight.openflow.protocol.errormsg.*;
import org.projectfloodlight.openflow.protocol.meterband.*;
import org.projectfloodlight.openflow.protocol.instruction.*;
import org.projectfloodlight.openflow.protocol.instructionid.*;
import org.projectfloodlight.openflow.protocol.match.*;
import org.projectfloodlight.openflow.protocol.oxm.*;
import org.projectfloodlight.openflow.protocol.queueprop.*;
import org.projectfloodlight.openflow.types.*;
import org.projectfloodlight.openflow.util.*;
import org.projectfloodlight.openflow.exceptions.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Set;
import org.jboss.netty.buffer.ChannelBuffer;
import com.google.common.hash.PrimitiveSink;
import com.google.common.hash.Funnel;
class OFQueueStatsEntryVer12 implements OFQueueStatsEntry {
private static final Logger logger = LoggerFactory.getLogger(OFQueueStatsEntryVer12.class);
// version: 1.2
final static byte WIRE_VERSION = 3;
final static int LENGTH = 32;
private final static OFPort DEFAULT_PORT_NO = OFPort.ANY;
private final static long DEFAULT_QUEUE_ID = 0x0L;
private final static U64 DEFAULT_TX_BYTES = U64.ZERO;
private final static U64 DEFAULT_TX_PACKETS = U64.ZERO;
private final static U64 DEFAULT_TX_ERRORS = U64.ZERO;
// OF message fields
private final OFPort portNo;
private final long queueId;
private final U64 txBytes;
private final U64 txPackets;
private final U64 txErrors;
//
// Immutable default instance
final static OFQueueStatsEntryVer12 DEFAULT = new OFQueueStatsEntryVer12(
DEFAULT_PORT_NO, DEFAULT_QUEUE_ID, DEFAULT_TX_BYTES, DEFAULT_TX_PACKETS, DEFAULT_TX_ERRORS
);
// package private constructor - used by readers, builders, and factory
OFQueueStatsEntryVer12(OFPort portNo, long queueId, U64 txBytes, U64 txPackets, U64 txErrors) {
this.portNo = portNo;
this.queueId = queueId;
this.txBytes = txBytes;
this.txPackets = txPackets;
this.txErrors = txErrors;
}
// Accessors for OF message fields
@Override
public OFPort getPortNo() {
return portNo;
}
@Override
public long getQueueId() {
return queueId;
}
@Override
public U64 getTxBytes() {
return txBytes;
}
@Override
public U64 getTxPackets() {
return txPackets;
}
@Override
public U64 getTxErrors() {
return txErrors;
}
@Override
public long getDurationSec()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationSec not supported in version 1.2");
}
@Override
public long getDurationNsec()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationNsec not supported in version 1.2");
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_12;
}
public OFQueueStatsEntry.Builder createBuilder() {
return new BuilderWithParent(this);
}
static class BuilderWithParent implements OFQueueStatsEntry.Builder {
final OFQueueStatsEntryVer12 parentMessage;
// OF message fields
private boolean portNoSet;
private OFPort portNo;
private boolean queueIdSet;
private long queueId;
private boolean txBytesSet;
private U64 txBytes;
private boolean txPacketsSet;
private U64 txPackets;
private boolean txErrorsSet;
private U64 txErrors;
BuilderWithParent(OFQueueStatsEntryVer12 parentMessage) {
this.parentMessage = parentMessage;
}
@Override
public OFPort getPortNo() {
return portNo;
}
@Override
public OFQueueStatsEntry.Builder setPortNo(OFPort portNo) {
this.portNo = portNo;
this.portNoSet = true;
return this;
}
@Override
public long getQueueId() {
return queueId;
}
@Override
public OFQueueStatsEntry.Builder setQueueId(long queueId) {
this.queueId = queueId;
this.queueIdSet = true;
return this;
}
@Override
public U64 getTxBytes() {
return txBytes;
}
@Override
public OFQueueStatsEntry.Builder setTxBytes(U64 txBytes) {
this.txBytes = txBytes;
this.txBytesSet = true;
return this;
}
@Override
public U64 getTxPackets() {
return txPackets;
}
@Override
public OFQueueStatsEntry.Builder setTxPackets(U64 txPackets) {
this.txPackets = txPackets;
this.txPacketsSet = true;
return this;
}
@Override
public U64 getTxErrors() {
return txErrors;
}
@Override
public OFQueueStatsEntry.Builder setTxErrors(U64 txErrors) {
this.txErrors = txErrors;
this.txErrorsSet = true;
return this;
}
@Override
public long getDurationSec()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationSec not supported in version 1.2");
}
@Override
public OFQueueStatsEntry.Builder setDurationSec(long durationSec) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationSec not supported in version 1.2");
}
@Override
public long getDurationNsec()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationNsec not supported in version 1.2");
}
@Override
public OFQueueStatsEntry.Builder setDurationNsec(long durationNsec) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationNsec not supported in version 1.2");
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_12;
}
@Override
public OFQueueStatsEntry build() {
OFPort portNo = this.portNoSet ? this.portNo : parentMessage.portNo;
if(portNo == null)
throw new NullPointerException("Property portNo must not be null");
long queueId = this.queueIdSet ? this.queueId : parentMessage.queueId;
U64 txBytes = this.txBytesSet ? this.txBytes : parentMessage.txBytes;
if(txBytes == null)
throw new NullPointerException("Property txBytes must not be null");
U64 txPackets = this.txPacketsSet ? this.txPackets : parentMessage.txPackets;
if(txPackets == null)
throw new NullPointerException("Property txPackets must not be null");
U64 txErrors = this.txErrorsSet ? this.txErrors : parentMessage.txErrors;
if(txErrors == null)
throw new NullPointerException("Property txErrors must not be null");
//
return new OFQueueStatsEntryVer12(
portNo,
queueId,
txBytes,
txPackets,
txErrors
);
}
}
static class Builder implements OFQueueStatsEntry.Builder {
// OF message fields
private boolean portNoSet;
private OFPort portNo;
private boolean queueIdSet;
private long queueId;
private boolean txBytesSet;
private U64 txBytes;
private boolean txPacketsSet;
private U64 txPackets;
private boolean txErrorsSet;
private U64 txErrors;
@Override
public OFPort getPortNo() {
return portNo;
}
@Override
public OFQueueStatsEntry.Builder setPortNo(OFPort portNo) {
this.portNo = portNo;
this.portNoSet = true;
return this;
}
@Override
public long getQueueId() {
return queueId;
}
@Override
public OFQueueStatsEntry.Builder setQueueId(long queueId) {
this.queueId = queueId;
this.queueIdSet = true;
return this;
}
@Override
public U64 getTxBytes() {
return txBytes;
}
@Override
public OFQueueStatsEntry.Builder setTxBytes(U64 txBytes) {
this.txBytes = txBytes;
this.txBytesSet = true;
return this;
}
@Override
public U64 getTxPackets() {
return txPackets;
}
@Override
public OFQueueStatsEntry.Builder setTxPackets(U64 txPackets) {
this.txPackets = txPackets;
this.txPacketsSet = true;
return this;
}
@Override
public U64 getTxErrors() {
return txErrors;
}
@Override
public OFQueueStatsEntry.Builder setTxErrors(U64 txErrors) {
this.txErrors = txErrors;
this.txErrorsSet = true;
return this;
}
@Override
public long getDurationSec()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationSec not supported in version 1.2");
}
@Override
public OFQueueStatsEntry.Builder setDurationSec(long durationSec) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationSec not supported in version 1.2");
}
@Override
public long getDurationNsec()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationNsec not supported in version 1.2");
}
@Override
public OFQueueStatsEntry.Builder setDurationNsec(long durationNsec) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property durationNsec not supported in version 1.2");
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_12;
}
//
@Override
public OFQueueStatsEntry build() {
OFPort portNo = this.portNoSet ? this.portNo : DEFAULT_PORT_NO;
if(portNo == null)
throw new NullPointerException("Property portNo must not be null");
long queueId = this.queueIdSet ? this.queueId : DEFAULT_QUEUE_ID;
U64 txBytes = this.txBytesSet ? this.txBytes : DEFAULT_TX_BYTES;
if(txBytes == null)
throw new NullPointerException("Property txBytes must not be null");
U64 txPackets = this.txPacketsSet ? this.txPackets : DEFAULT_TX_PACKETS;
if(txPackets == null)
throw new NullPointerException("Property txPackets must not be null");
U64 txErrors = this.txErrorsSet ? this.txErrors : DEFAULT_TX_ERRORS;
if(txErrors == null)
throw new NullPointerException("Property txErrors must not be null");
return new OFQueueStatsEntryVer12(
portNo,
queueId,
txBytes,
txPackets,
txErrors
);
}
}
final static Reader READER = new Reader();
static class Reader implements OFMessageReader<OFQueueStatsEntry> {
@Override
public OFQueueStatsEntry readFrom(ChannelBuffer bb) throws OFParseError {
OFPort portNo = OFPort.read4Bytes(bb);
long queueId = U32.f(bb.readInt());
U64 txBytes = U64.ofRaw(bb.readLong());
U64 txPackets = U64.ofRaw(bb.readLong());
U64 txErrors = U64.ofRaw(bb.readLong());
OFQueueStatsEntryVer12 queueStatsEntryVer12 = new OFQueueStatsEntryVer12(
portNo,
queueId,
txBytes,
txPackets,
txErrors
);
if(logger.isTraceEnabled())
logger.trace("readFrom - read={}", queueStatsEntryVer12);
return queueStatsEntryVer12;
}
}
public void putTo(PrimitiveSink sink) {
FUNNEL.funnel(this, sink);
}
final static OFQueueStatsEntryVer12Funnel FUNNEL = new OFQueueStatsEntryVer12Funnel();
static class OFQueueStatsEntryVer12Funnel implements Funnel<OFQueueStatsEntryVer12> {
private static final long serialVersionUID = 1L;
@Override
public void funnel(OFQueueStatsEntryVer12 message, PrimitiveSink sink) {
message.portNo.putTo(sink);
sink.putLong(message.queueId);
message.txBytes.putTo(sink);
message.txPackets.putTo(sink);
message.txErrors.putTo(sink);
}
}
public void writeTo(ChannelBuffer bb) {
WRITER.write(bb, this);
}
final static Writer WRITER = new Writer();
static class Writer implements OFMessageWriter<OFQueueStatsEntryVer12> {
@Override
public void write(ChannelBuffer bb, OFQueueStatsEntryVer12 message) {
message.portNo.write4Bytes(bb);
bb.writeInt(U32.t(message.queueId));
bb.writeLong(message.txBytes.getValue());
bb.writeLong(message.txPackets.getValue());
bb.writeLong(message.txErrors.getValue());
}
}
@Override
public String toString() {
StringBuilder b = new StringBuilder("OFQueueStatsEntryVer12(");
b.append("portNo=").append(portNo);
b.append(", ");
b.append("queueId=").append(queueId);
b.append(", ");
b.append("txBytes=").append(txBytes);
b.append(", ");
b.append("txPackets=").append(txPackets);
b.append(", ");
b.append("txErrors=").append(txErrors);
b.append(")");
return b.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
OFQueueStatsEntryVer12 other = (OFQueueStatsEntryVer12) obj;
if (portNo == null) {
if (other.portNo != null)
return false;
} else if (!portNo.equals(other.portNo))
return false;
if( queueId != other.queueId)
return false;
if (txBytes == null) {
if (other.txBytes != null)
return false;
} else if (!txBytes.equals(other.txBytes))
return false;
if (txPackets == null) {
if (other.txPackets != null)
return false;
} else if (!txPackets.equals(other.txPackets))
return false;
if (txErrors == null) {
if (other.txErrors != null)
return false;
} else if (!txErrors.equals(other.txErrors))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((portNo == null) ? 0 : portNo.hashCode());
result = prime * (int) (queueId ^ (queueId >>> 32));
result = prime * result + ((txBytes == null) ? 0 : txBytes.hashCode());
result = prime * result + ((txPackets == null) ? 0 : txPackets.hashCode());
result = prime * result + ((txErrors == null) ? 0 : txErrors.hashCode());
return result;
}
}