org.projectfloodlight.openflow.protocol.ver12.OFGroupDescStatsEntryVer12 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openflowj Show documentation
Show all versions of openflowj Show documentation
OpenFlowJ API supporting OpenFlow versions 1.0 through 1.5.1, generated by LoxiGen
The newest version!
// 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.stat.*;
import org.projectfloodlight.openflow.protocol.oxm.*;
import org.projectfloodlight.openflow.protocol.oxs.*;
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.List;
import com.google.common.collect.ImmutableList;
import java.util.Set;
import io.netty.buffer.ByteBuf;
import com.google.common.hash.PrimitiveSink;
import com.google.common.hash.Funnel;
class OFGroupDescStatsEntryVer12 implements OFGroupDescStatsEntry {
private static final Logger logger = LoggerFactory.getLogger(OFGroupDescStatsEntryVer12.class);
// version: 1.2
final static byte WIRE_VERSION = 3;
final static int MINIMUM_LENGTH = 8;
// maximum OF message length: 16 bit, unsigned
final static int MAXIMUM_LENGTH = 0xFFFF;
private final static OFGroup DEFAULT_GROUP_ID = OFGroup.ALL;
private final static List DEFAULT_BUCKETS = ImmutableList.of();
// OF message fields
private final OFGroupType groupType;
private final OFGroup group;
private final List buckets;
//
// package private constructor - used by readers, builders, and factory
OFGroupDescStatsEntryVer12(OFGroupType groupType, OFGroup group, List buckets) {
if(groupType == null) {
throw new NullPointerException("OFGroupDescStatsEntryVer12: property groupType cannot be null");
}
if(group == null) {
throw new NullPointerException("OFGroupDescStatsEntryVer12: property group cannot be null");
}
if(buckets == null) {
throw new NullPointerException("OFGroupDescStatsEntryVer12: property buckets cannot be null");
}
this.groupType = groupType;
this.group = group;
this.buckets = buckets;
}
// Accessors for OF message fields
@Override
public OFGroupType getGroupType() {
return groupType;
}
@Override
public OFGroup getGroup() {
return group;
}
@Override
public List getBuckets() {
return buckets;
}
@Override
public List getProperties()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property properties not supported in version 1.2");
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_12;
}
public OFGroupDescStatsEntry.Builder createBuilder() {
return new BuilderWithParent(this);
}
static class BuilderWithParent implements OFGroupDescStatsEntry.Builder {
final OFGroupDescStatsEntryVer12 parentMessage;
// OF message fields
private boolean groupTypeSet;
private OFGroupType groupType;
private boolean groupSet;
private OFGroup group;
private boolean bucketsSet;
private List buckets;
BuilderWithParent(OFGroupDescStatsEntryVer12 parentMessage) {
this.parentMessage = parentMessage;
}
@Override
public OFGroupType getGroupType() {
return groupType;
}
@Override
public OFGroupDescStatsEntry.Builder setGroupType(OFGroupType groupType) {
this.groupType = groupType;
this.groupTypeSet = true;
return this;
}
@Override
public OFGroup getGroup() {
return group;
}
@Override
public OFGroupDescStatsEntry.Builder setGroup(OFGroup group) {
this.group = group;
this.groupSet = true;
return this;
}
@Override
public List getBuckets() {
return buckets;
}
@Override
public OFGroupDescStatsEntry.Builder setBuckets(List buckets) {
this.buckets = buckets;
this.bucketsSet = true;
return this;
}
@Override
public List getProperties()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property properties not supported in version 1.2");
}
@Override
public OFGroupDescStatsEntry.Builder setProperties(List properties) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property properties not supported in version 1.2");
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_12;
}
@Override
public OFGroupDescStatsEntry build() {
OFGroupType groupType = this.groupTypeSet ? this.groupType : parentMessage.groupType;
if(groupType == null)
throw new NullPointerException("Property groupType must not be null");
OFGroup group = this.groupSet ? this.group : parentMessage.group;
if(group == null)
throw new NullPointerException("Property group must not be null");
List buckets = this.bucketsSet ? this.buckets : parentMessage.buckets;
if(buckets == null)
throw new NullPointerException("Property buckets must not be null");
//
return new OFGroupDescStatsEntryVer12(
groupType,
group,
buckets
);
}
}
static class Builder implements OFGroupDescStatsEntry.Builder {
// OF message fields
private boolean groupTypeSet;
private OFGroupType groupType;
private boolean groupSet;
private OFGroup group;
private boolean bucketsSet;
private List buckets;
@Override
public OFGroupType getGroupType() {
return groupType;
}
@Override
public OFGroupDescStatsEntry.Builder setGroupType(OFGroupType groupType) {
this.groupType = groupType;
this.groupTypeSet = true;
return this;
}
@Override
public OFGroup getGroup() {
return group;
}
@Override
public OFGroupDescStatsEntry.Builder setGroup(OFGroup group) {
this.group = group;
this.groupSet = true;
return this;
}
@Override
public List getBuckets() {
return buckets;
}
@Override
public OFGroupDescStatsEntry.Builder setBuckets(List buckets) {
this.buckets = buckets;
this.bucketsSet = true;
return this;
}
@Override
public List getProperties()throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property properties not supported in version 1.2");
}
@Override
public OFGroupDescStatsEntry.Builder setProperties(List properties) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Property properties not supported in version 1.2");
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_12;
}
//
@Override
public OFGroupDescStatsEntry build() {
if(!this.groupTypeSet)
throw new IllegalStateException("Property groupType doesn't have default value -- must be set");
if(groupType == null)
throw new NullPointerException("Property groupType must not be null");
OFGroup group = this.groupSet ? this.group : DEFAULT_GROUP_ID;
if(group == null)
throw new NullPointerException("Property group must not be null");
List buckets = this.bucketsSet ? this.buckets : DEFAULT_BUCKETS;
if(buckets == null)
throw new NullPointerException("Property buckets must not be null");
return new OFGroupDescStatsEntryVer12(
groupType,
group,
buckets
);
}
}
final static Reader READER = new Reader();
static class Reader implements OFMessageReader {
@Override
public OFGroupDescStatsEntry readFrom(ByteBuf bb) throws OFParseError {
int start = bb.readerIndex();
int length = U16.f(bb.readShort());
if(length < MINIMUM_LENGTH)
throw new OFParseError("Wrong length: Expected to be >= " + MINIMUM_LENGTH + ", was: " + length);
if(bb.readableBytes() + (bb.readerIndex() - start) < length) {
// Buffer does not have all data yet
bb.readerIndex(start);
return null;
}
if(logger.isTraceEnabled())
logger.trace("readFrom - length={}", length);
OFGroupType groupType = OFGroupTypeSerializerVer12.readFrom(bb);
// pad: 1 bytes
bb.skipBytes(1);
OFGroup group = OFGroup.read4Bytes(bb);
List buckets = ChannelUtils.readList(bb, length - (bb.readerIndex() - start), OFBucketVer12.READER);
OFGroupDescStatsEntryVer12 groupDescStatsEntryVer12 = new OFGroupDescStatsEntryVer12(
groupType,
group,
buckets
);
if(logger.isTraceEnabled())
logger.trace("readFrom - read={}", groupDescStatsEntryVer12);
return groupDescStatsEntryVer12;
}
}
public void putTo(PrimitiveSink sink) {
FUNNEL.funnel(this, sink);
}
final static OFGroupDescStatsEntryVer12Funnel FUNNEL = new OFGroupDescStatsEntryVer12Funnel();
static class OFGroupDescStatsEntryVer12Funnel implements Funnel {
private static final long serialVersionUID = 1L;
@Override
public void funnel(OFGroupDescStatsEntryVer12 message, PrimitiveSink sink) {
// FIXME: skip funnel of length
OFGroupTypeSerializerVer12.putTo(message.groupType, sink);
// skip pad (1 bytes)
message.group.putTo(sink);
FunnelUtils.putList(message.buckets, sink);
}
}
public void writeTo(ByteBuf bb) {
WRITER.write(bb, this);
}
final static Writer WRITER = new Writer();
static class Writer implements OFMessageWriter {
@Override
public void write(ByteBuf bb, OFGroupDescStatsEntryVer12 message) {
int startIndex = bb.writerIndex();
// length is length of variable message, will be updated at the end
int lengthIndex = bb.writerIndex();
bb.writeShort(U16.t(0));
OFGroupTypeSerializerVer12.writeTo(bb, message.groupType);
// pad: 1 bytes
bb.writeZero(1);
message.group.write4Bytes(bb);
ChannelUtils.writeList(bb, message.buckets);
// update length field
int length = bb.writerIndex() - startIndex;
if (length > MAXIMUM_LENGTH) {
throw new IllegalArgumentException("OFGroupDescStatsEntryVer12: message length (" + length + ") exceeds maximum (0xFFFF)");
}
bb.setShort(lengthIndex, length);
}
}
@Override
public String toString() {
StringBuilder b = new StringBuilder("OFGroupDescStatsEntryVer12(");
b.append("groupType=").append(groupType);
b.append(", ");
b.append("group=").append(group);
b.append(", ");
b.append("buckets=").append(buckets);
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;
OFGroupDescStatsEntryVer12 other = (OFGroupDescStatsEntryVer12) obj;
if (groupType == null) {
if (other.groupType != null)
return false;
} else if (!groupType.equals(other.groupType))
return false;
if (group == null) {
if (other.group != null)
return false;
} else if (!group.equals(other.group))
return false;
if (buckets == null) {
if (other.buckets != null)
return false;
} else if (!buckets.equals(other.buckets))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((groupType == null) ? 0 : groupType.hashCode());
result = prime * result + ((group == null) ? 0 : group.hashCode());
result = prime * result + ((buckets == null) ? 0 : buckets.hashCode());
return result;
}
}