blob: 1a8de91cfda956f6019eafb13a0663230eaf3574 [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.ver13;
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.List;
import com.google.common.collect.ImmutableList;
import java.util.Set;
import org.jboss.netty.buffer.ChannelBuffer;
import com.google.common.hash.PrimitiveSink;
import com.google.common.hash.Funnel;
class OFGroupDescStatsEntryVer13 implements OFGroupDescStatsEntry {
private static final Logger logger = LoggerFactory.getLogger(OFGroupDescStatsEntryVer13.class);
// version: 1.3
final static byte WIRE_VERSION = 4;
final static int MINIMUM_LENGTH = 8;
private final static OFGroup DEFAULT_GROUP_ID = OFGroup.ALL;
private final static List<OFBucket> DEFAULT_BUCKETS = ImmutableList.<OFBucket>of();
// OF message fields
private final OFGroupType groupType;
private final OFGroup group;
private final List<OFBucket> buckets;
//
// package private constructor - used by readers, builders, and factory
OFGroupDescStatsEntryVer13(OFGroupType groupType, OFGroup group, List<OFBucket> buckets) {
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<OFBucket> getBuckets() {
return buckets;
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_13;
}
public OFGroupDescStatsEntry.Builder createBuilder() {
return new BuilderWithParent(this);
}
static class BuilderWithParent implements OFGroupDescStatsEntry.Builder {
final OFGroupDescStatsEntryVer13 parentMessage;
// OF message fields
private boolean groupTypeSet;
private OFGroupType groupType;
private boolean groupSet;
private OFGroup group;
private boolean bucketsSet;
private List<OFBucket> buckets;
BuilderWithParent(OFGroupDescStatsEntryVer13 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<OFBucket> getBuckets() {
return buckets;
}
@Override
public OFGroupDescStatsEntry.Builder setBuckets(List<OFBucket> buckets) {
this.buckets = buckets;
this.bucketsSet = true;
return this;
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_13;
}
@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<OFBucket> buckets = this.bucketsSet ? this.buckets : parentMessage.buckets;
if(buckets == null)
throw new NullPointerException("Property buckets must not be null");
//
return new OFGroupDescStatsEntryVer13(
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<OFBucket> 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<OFBucket> getBuckets() {
return buckets;
}
@Override
public OFGroupDescStatsEntry.Builder setBuckets(List<OFBucket> buckets) {
this.buckets = buckets;
this.bucketsSet = true;
return this;
}
@Override
public OFVersion getVersion() {
return OFVersion.OF_13;
}
//
@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<OFBucket> buckets = this.bucketsSet ? this.buckets : DEFAULT_BUCKETS;
if(buckets == null)
throw new NullPointerException("Property buckets must not be null");
return new OFGroupDescStatsEntryVer13(
groupType,
group,
buckets
);
}
}
final static Reader READER = new Reader();
static class Reader implements OFMessageReader<OFGroupDescStatsEntry> {
@Override
public OFGroupDescStatsEntry readFrom(ChannelBuffer 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 = OFGroupTypeSerializerVer13.readFrom(bb);
// pad: 1 bytes
bb.skipBytes(1);
OFGroup group = OFGroup.read4Bytes(bb);
List<OFBucket> buckets = ChannelUtils.readList(bb, length - (bb.readerIndex() - start), OFBucketVer13.READER);
OFGroupDescStatsEntryVer13 groupDescStatsEntryVer13 = new OFGroupDescStatsEntryVer13(
groupType,
group,
buckets
);
if(logger.isTraceEnabled())
logger.trace("readFrom - read={}", groupDescStatsEntryVer13);
return groupDescStatsEntryVer13;
}
}
public void putTo(PrimitiveSink sink) {
FUNNEL.funnel(this, sink);
}
final static OFGroupDescStatsEntryVer13Funnel FUNNEL = new OFGroupDescStatsEntryVer13Funnel();
static class OFGroupDescStatsEntryVer13Funnel implements Funnel<OFGroupDescStatsEntryVer13> {
private static final long serialVersionUID = 1L;
@Override
public void funnel(OFGroupDescStatsEntryVer13 message, PrimitiveSink sink) {
// FIXME: skip funnel of length
OFGroupTypeSerializerVer13.putTo(message.groupType, sink);
// skip pad (1 bytes)
message.group.putTo(sink);
FunnelUtils.putList(message.buckets, sink);
}
}
public void writeTo(ChannelBuffer bb) {
WRITER.write(bb, this);
}
final static Writer WRITER = new Writer();
static class Writer implements OFMessageWriter<OFGroupDescStatsEntryVer13> {
@Override
public void write(ChannelBuffer bb, OFGroupDescStatsEntryVer13 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));
OFGroupTypeSerializerVer13.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;
bb.setShort(lengthIndex, length);
}
}
@Override
public String toString() {
StringBuilder b = new StringBuilder("OFGroupDescStatsEntryVer13(");
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;
OFGroupDescStatsEntryVer13 other = (OFGroupDescStatsEntryVer13) 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;
}
}