blob: 6e77fb49ae27b49886e9cff6244616257b842e4a [file] [log] [blame]
alshabib86ac11c2014-08-14 16:14:41 -07001// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
2// Copyright (c) 2011, 2012 Open Networking Foundation
3// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
4// This library was generated by the LoxiGen Compiler.
5// See the file LICENSE.txt which should have been included in the source distribution
6
7// Automatically generated by LOXI from template of_class.java
8// Do not modify
9
10package org.projectfloodlight.openflow.protocol.ver11;
11
12import org.projectfloodlight.openflow.protocol.*;
13import org.projectfloodlight.openflow.protocol.action.*;
14import org.projectfloodlight.openflow.protocol.actionid.*;
15import org.projectfloodlight.openflow.protocol.bsntlv.*;
16import org.projectfloodlight.openflow.protocol.errormsg.*;
17import org.projectfloodlight.openflow.protocol.meterband.*;
18import org.projectfloodlight.openflow.protocol.instruction.*;
19import org.projectfloodlight.openflow.protocol.instructionid.*;
20import org.projectfloodlight.openflow.protocol.match.*;
21import org.projectfloodlight.openflow.protocol.oxm.*;
22import org.projectfloodlight.openflow.protocol.queueprop.*;
23import org.projectfloodlight.openflow.types.*;
24import org.projectfloodlight.openflow.util.*;
25import org.projectfloodlight.openflow.exceptions.*;
26import java.util.Set;
27import org.slf4j.Logger;
28import org.slf4j.LoggerFactory;
29import org.jboss.netty.buffer.ChannelBuffer;
30import com.google.common.hash.PrimitiveSink;
31import com.google.common.hash.Funnel;
32
33class OFActionSetMplsLabelVer11 implements OFActionSetMplsLabel {
34 private static final Logger logger = LoggerFactory.getLogger(OFActionSetMplsLabelVer11.class);
35 // version: 1.1
36 final static byte WIRE_VERSION = 2;
37 final static int LENGTH = 8;
38
39 private final static long DEFAULT_MPLS_LABEL = 0x0L;
40
41 // OF message fields
42 private final long mplsLabel;
43//
44 // Immutable default instance
45 final static OFActionSetMplsLabelVer11 DEFAULT = new OFActionSetMplsLabelVer11(
46 DEFAULT_MPLS_LABEL
47 );
48
49 // package private constructor - used by readers, builders, and factory
50 OFActionSetMplsLabelVer11(long mplsLabel) {
51 this.mplsLabel = mplsLabel;
52 }
53
54 // Accessors for OF message fields
55 @Override
56 public OFActionType getType() {
57 return OFActionType.SET_MPLS_LABEL;
58 }
59
60 @Override
61 public long getMplsLabel() {
62 return mplsLabel;
63 }
64
65 @Override
66 public OFVersion getVersion() {
67 return OFVersion.OF_11;
68 }
69
70
71
72 public OFActionSetMplsLabel.Builder createBuilder() {
73 return new BuilderWithParent(this);
74 }
75
76 static class BuilderWithParent implements OFActionSetMplsLabel.Builder {
77 final OFActionSetMplsLabelVer11 parentMessage;
78
79 // OF message fields
80 private boolean mplsLabelSet;
81 private long mplsLabel;
82
83 BuilderWithParent(OFActionSetMplsLabelVer11 parentMessage) {
84 this.parentMessage = parentMessage;
85 }
86
87 @Override
88 public OFActionType getType() {
89 return OFActionType.SET_MPLS_LABEL;
90 }
91
92 @Override
93 public long getMplsLabel() {
94 return mplsLabel;
95 }
96
97 @Override
98 public OFActionSetMplsLabel.Builder setMplsLabel(long mplsLabel) {
99 this.mplsLabel = mplsLabel;
100 this.mplsLabelSet = true;
101 return this;
102 }
103 @Override
104 public OFVersion getVersion() {
105 return OFVersion.OF_11;
106 }
107
108
109
110 @Override
111 public OFActionSetMplsLabel build() {
112 long mplsLabel = this.mplsLabelSet ? this.mplsLabel : parentMessage.mplsLabel;
113
114 //
115 return new OFActionSetMplsLabelVer11(
116 mplsLabel
117 );
118 }
119
120 }
121
122 static class Builder implements OFActionSetMplsLabel.Builder {
123 // OF message fields
124 private boolean mplsLabelSet;
125 private long mplsLabel;
126
127 @Override
128 public OFActionType getType() {
129 return OFActionType.SET_MPLS_LABEL;
130 }
131
132 @Override
133 public long getMplsLabel() {
134 return mplsLabel;
135 }
136
137 @Override
138 public OFActionSetMplsLabel.Builder setMplsLabel(long mplsLabel) {
139 this.mplsLabel = mplsLabel;
140 this.mplsLabelSet = true;
141 return this;
142 }
143 @Override
144 public OFVersion getVersion() {
145 return OFVersion.OF_11;
146 }
147
148//
149 @Override
150 public OFActionSetMplsLabel build() {
151 long mplsLabel = this.mplsLabelSet ? this.mplsLabel : DEFAULT_MPLS_LABEL;
152
153
154 return new OFActionSetMplsLabelVer11(
155 mplsLabel
156 );
157 }
158
159 }
160
161
162 final static Reader READER = new Reader();
163 static class Reader implements OFMessageReader<OFActionSetMplsLabel> {
164 @Override
165 public OFActionSetMplsLabel readFrom(ChannelBuffer bb) throws OFParseError {
166 int start = bb.readerIndex();
167 // fixed value property type == 13
168 short type = bb.readShort();
169 if(type != (short) 0xd)
170 throw new OFParseError("Wrong type: Expected=OFActionType.SET_MPLS_LABEL(13), got="+type);
171 int length = U16.f(bb.readShort());
172 if(length != 8)
173 throw new OFParseError("Wrong length: Expected=8(8), got="+length);
174 if(bb.readableBytes() + (bb.readerIndex() - start) < length) {
175 // Buffer does not have all data yet
176 bb.readerIndex(start);
177 return null;
178 }
179 if(logger.isTraceEnabled())
180 logger.trace("readFrom - length={}", length);
181 long mplsLabel = U32.f(bb.readInt());
182
183 OFActionSetMplsLabelVer11 actionSetMplsLabelVer11 = new OFActionSetMplsLabelVer11(
184 mplsLabel
185 );
186 if(logger.isTraceEnabled())
187 logger.trace("readFrom - read={}", actionSetMplsLabelVer11);
188 return actionSetMplsLabelVer11;
189 }
190 }
191
192 public void putTo(PrimitiveSink sink) {
193 FUNNEL.funnel(this, sink);
194 }
195
196 final static OFActionSetMplsLabelVer11Funnel FUNNEL = new OFActionSetMplsLabelVer11Funnel();
197 static class OFActionSetMplsLabelVer11Funnel implements Funnel<OFActionSetMplsLabelVer11> {
198 private static final long serialVersionUID = 1L;
199 @Override
200 public void funnel(OFActionSetMplsLabelVer11 message, PrimitiveSink sink) {
201 // fixed value property type = 13
202 sink.putShort((short) 0xd);
203 // fixed value property length = 8
204 sink.putShort((short) 0x8);
205 sink.putLong(message.mplsLabel);
206 }
207 }
208
209
210 public void writeTo(ChannelBuffer bb) {
211 WRITER.write(bb, this);
212 }
213
214 final static Writer WRITER = new Writer();
215 static class Writer implements OFMessageWriter<OFActionSetMplsLabelVer11> {
216 @Override
217 public void write(ChannelBuffer bb, OFActionSetMplsLabelVer11 message) {
218 // fixed value property type = 13
219 bb.writeShort((short) 0xd);
220 // fixed value property length = 8
221 bb.writeShort((short) 0x8);
222 bb.writeInt(U32.t(message.mplsLabel));
223
224
225 }
226 }
227
228 @Override
229 public String toString() {
230 StringBuilder b = new StringBuilder("OFActionSetMplsLabelVer11(");
231 b.append("mplsLabel=").append(mplsLabel);
232 b.append(")");
233 return b.toString();
234 }
235
236 @Override
237 public boolean equals(Object obj) {
238 if (this == obj)
239 return true;
240 if (obj == null)
241 return false;
242 if (getClass() != obj.getClass())
243 return false;
244 OFActionSetMplsLabelVer11 other = (OFActionSetMplsLabelVer11) obj;
245
246 if( mplsLabel != other.mplsLabel)
247 return false;
248 return true;
249 }
250
251 @Override
252 public int hashCode() {
253 final int prime = 31;
254 int result = 1;
255
256 result = prime * (int) (mplsLabel ^ (mplsLabel >>> 32));
257 return result;
258 }
259
260}