blob: b769d7d9798c3d37806267b024ca6fdb9b15439c [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -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.ver12;
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 OFActionSetNwTtlVer12 implements OFActionSetNwTtl {
34 private static final Logger logger = LoggerFactory.getLogger(OFActionSetNwTtlVer12.class);
35 // version: 1.2
36 final static byte WIRE_VERSION = 3;
37 final static int LENGTH = 8;
38
39 private final static short DEFAULT_NW_TTL = (short) 0x0;
40
41 // OF message fields
42 private final short nwTtl;
43//
44 // Immutable default instance
45 final static OFActionSetNwTtlVer12 DEFAULT = new OFActionSetNwTtlVer12(
46 DEFAULT_NW_TTL
47 );
48
49 // package private constructor - used by readers, builders, and factory
50 OFActionSetNwTtlVer12(short nwTtl) {
51 this.nwTtl = nwTtl;
52 }
53
54 // Accessors for OF message fields
55 @Override
56 public OFActionType getType() {
57 return OFActionType.SET_NW_TTL;
58 }
59
60 @Override
61 public short getNwTtl() {
62 return nwTtl;
63 }
64
65 @Override
66 public OFVersion getVersion() {
67 return OFVersion.OF_12;
68 }
69
70
71
72 public OFActionSetNwTtl.Builder createBuilder() {
73 return new BuilderWithParent(this);
74 }
75
76 static class BuilderWithParent implements OFActionSetNwTtl.Builder {
77 final OFActionSetNwTtlVer12 parentMessage;
78
79 // OF message fields
80 private boolean nwTtlSet;
81 private short nwTtl;
82
83 BuilderWithParent(OFActionSetNwTtlVer12 parentMessage) {
84 this.parentMessage = parentMessage;
85 }
86
87 @Override
88 public OFActionType getType() {
89 return OFActionType.SET_NW_TTL;
90 }
91
92 @Override
93 public short getNwTtl() {
94 return nwTtl;
95 }
96
97 @Override
98 public OFActionSetNwTtl.Builder setNwTtl(short nwTtl) {
99 this.nwTtl = nwTtl;
100 this.nwTtlSet = true;
101 return this;
102 }
103 @Override
104 public OFVersion getVersion() {
105 return OFVersion.OF_12;
106 }
107
108
109
110 @Override
111 public OFActionSetNwTtl build() {
112 short nwTtl = this.nwTtlSet ? this.nwTtl : parentMessage.nwTtl;
113
114 //
115 return new OFActionSetNwTtlVer12(
116 nwTtl
117 );
118 }
119
120 }
121
122 static class Builder implements OFActionSetNwTtl.Builder {
123 // OF message fields
124 private boolean nwTtlSet;
125 private short nwTtl;
126
127 @Override
128 public OFActionType getType() {
129 return OFActionType.SET_NW_TTL;
130 }
131
132 @Override
133 public short getNwTtl() {
134 return nwTtl;
135 }
136
137 @Override
138 public OFActionSetNwTtl.Builder setNwTtl(short nwTtl) {
139 this.nwTtl = nwTtl;
140 this.nwTtlSet = true;
141 return this;
142 }
143 @Override
144 public OFVersion getVersion() {
145 return OFVersion.OF_12;
146 }
147
148//
149 @Override
150 public OFActionSetNwTtl build() {
151 short nwTtl = this.nwTtlSet ? this.nwTtl : DEFAULT_NW_TTL;
152
153
154 return new OFActionSetNwTtlVer12(
155 nwTtl
156 );
157 }
158
159 }
160
161
162 final static Reader READER = new Reader();
163 static class Reader implements OFMessageReader<OFActionSetNwTtl> {
164 @Override
165 public OFActionSetNwTtl readFrom(ChannelBuffer bb) throws OFParseError {
166 int start = bb.readerIndex();
167 // fixed value property type == 23
168 short type = bb.readShort();
169 if(type != (short) 0x17)
170 throw new OFParseError("Wrong type: Expected=OFActionType.SET_NW_TTL(23), 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 short nwTtl = U8.f(bb.readByte());
182 // pad: 3 bytes
183 bb.skipBytes(3);
184
185 OFActionSetNwTtlVer12 actionSetNwTtlVer12 = new OFActionSetNwTtlVer12(
186 nwTtl
187 );
188 if(logger.isTraceEnabled())
189 logger.trace("readFrom - read={}", actionSetNwTtlVer12);
190 return actionSetNwTtlVer12;
191 }
192 }
193
194 public void putTo(PrimitiveSink sink) {
195 FUNNEL.funnel(this, sink);
196 }
197
198 final static OFActionSetNwTtlVer12Funnel FUNNEL = new OFActionSetNwTtlVer12Funnel();
199 static class OFActionSetNwTtlVer12Funnel implements Funnel<OFActionSetNwTtlVer12> {
200 private static final long serialVersionUID = 1L;
201 @Override
202 public void funnel(OFActionSetNwTtlVer12 message, PrimitiveSink sink) {
203 // fixed value property type = 23
204 sink.putShort((short) 0x17);
205 // fixed value property length = 8
206 sink.putShort((short) 0x8);
207 sink.putShort(message.nwTtl);
208 // skip pad (3 bytes)
209 }
210 }
211
212
213 public void writeTo(ChannelBuffer bb) {
214 WRITER.write(bb, this);
215 }
216
217 final static Writer WRITER = new Writer();
218 static class Writer implements OFMessageWriter<OFActionSetNwTtlVer12> {
219 @Override
220 public void write(ChannelBuffer bb, OFActionSetNwTtlVer12 message) {
221 // fixed value property type = 23
222 bb.writeShort((short) 0x17);
223 // fixed value property length = 8
224 bb.writeShort((short) 0x8);
225 bb.writeByte(U8.t(message.nwTtl));
226 // pad: 3 bytes
227 bb.writeZero(3);
228
229
230 }
231 }
232
233 @Override
234 public String toString() {
235 StringBuilder b = new StringBuilder("OFActionSetNwTtlVer12(");
236 b.append("nwTtl=").append(nwTtl);
237 b.append(")");
238 return b.toString();
239 }
240
241 @Override
242 public boolean equals(Object obj) {
243 if (this == obj)
244 return true;
245 if (obj == null)
246 return false;
247 if (getClass() != obj.getClass())
248 return false;
249 OFActionSetNwTtlVer12 other = (OFActionSetNwTtlVer12) obj;
250
251 if( nwTtl != other.nwTtl)
252 return false;
253 return true;
254 }
255
256 @Override
257 public int hashCode() {
258 final int prime = 31;
259 int result = 1;
260
261 result = prime * result + nwTtl;
262 return result;
263 }
264
265}