blob: 0f3c125e2ae3d6f02a853e53ee2527a64f92d3be [file] [log] [blame]
Ray Milkeyd43fe452015-05-29 09:35:12 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Ray Milkeyd43fe452015-05-29 09:35:12 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.codec.impl;
17
Jian Lice8c5602016-03-03 21:43:24 -080018import com.fasterxml.jackson.databind.node.ObjectNode;
Jian Lidab72562016-04-12 14:10:32 -070019import org.onlab.osgi.DefaultServiceDirectory;
20import org.onlab.osgi.ServiceDirectory;
Yafit Hadar5796d972015-10-15 13:16:11 +030021import org.onlab.util.HexString;
Ray Milkeyd43fe452015-05-29 09:35:12 -070022import org.onosproject.codec.CodecContext;
Jian Lidab72562016-04-12 14:10:32 -070023import org.onosproject.net.Device;
24import org.onosproject.net.DeviceId;
Ray Milkeyd43fe452015-05-29 09:35:12 -070025import org.onosproject.net.OchSignal;
Yafit Hadar5796d972015-10-15 13:16:11 +030026import org.onosproject.net.OduSignalId;
Jian Lidab72562016-04-12 14:10:32 -070027import org.onosproject.net.device.DeviceService;
Carmelo Casconecb4327a2018-09-11 15:17:23 -070028import org.onosproject.net.flow.ExtensionTreatmentCodec;
Ray Milkeyd43fe452015-05-29 09:35:12 -070029import org.onosproject.net.flow.instructions.Instruction;
30import org.onosproject.net.flow.instructions.Instructions;
31import org.onosproject.net.flow.instructions.L0ModificationInstruction;
Yafit Hadar5796d972015-10-15 13:16:11 +030032import org.onosproject.net.flow.instructions.L1ModificationInstruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070033import org.onosproject.net.flow.instructions.L2ModificationInstruction;
34import org.onosproject.net.flow.instructions.L3ModificationInstruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -070035import org.onosproject.net.flow.instructions.L4ModificationInstruction;
Frank Wang74ce2c12018-04-11 20:26:45 +080036import org.onosproject.net.flow.instructions.PiInstruction;
37import org.onosproject.net.pi.runtime.PiAction;
Frank Wang74ce2c12018-04-11 20:26:45 +080038import org.onosproject.net.pi.runtime.PiActionParam;
Carmelo Casconecb4327a2018-09-11 15:17:23 -070039import org.onosproject.net.pi.runtime.PiActionProfileGroupId;
40import org.onosproject.net.pi.runtime.PiActionProfileMemberId;
Ray Milkeyd43fe452015-05-29 09:35:12 -070041import org.slf4j.Logger;
Jian Lidab72562016-04-12 14:10:32 -070042
Jonathan Hartcc962d82016-08-09 16:52:22 -070043import static org.onlab.util.Tools.toHexWithPrefix;
Jian Lidab72562016-04-12 14:10:32 -070044import static org.slf4j.LoggerFactory.getLogger;
Ray Milkeyd43fe452015-05-29 09:35:12 -070045
Ray Milkeyd43fe452015-05-29 09:35:12 -070046/**
47 * JSON encoding of Instructions.
48 */
Ray Milkey6d7968e2015-07-06 14:30:02 -070049public final class EncodeInstructionCodecHelper {
Ray Milkey9c9cde42018-01-12 14:22:06 -080050 private static final Logger log = getLogger(EncodeInstructionCodecHelper.class);
Ray Milkeyd43fe452015-05-29 09:35:12 -070051 private final Instruction instruction;
52 private final CodecContext context;
53
54 /**
55 * Creates an instruction object encoder.
56 *
57 * @param instruction instruction to encode
Jian Li47b26232016-03-07 09:59:59 -080058 * @param context codec context for the encoding
Ray Milkeyd43fe452015-05-29 09:35:12 -070059 */
Ray Milkey6d7968e2015-07-06 14:30:02 -070060 public EncodeInstructionCodecHelper(Instruction instruction, CodecContext context) {
Ray Milkeyd43fe452015-05-29 09:35:12 -070061 this.instruction = instruction;
62 this.context = context;
63 }
64
65
66 /**
67 * Encode an L0 modification instruction.
68 *
69 * @param result json node that the instruction attributes are added to
70 */
71 private void encodeL0(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -080072 L0ModificationInstruction l0Instruction = (L0ModificationInstruction) instruction;
73 result.put(InstructionCodec.SUBTYPE, l0Instruction.subtype().name());
Ray Milkeyd43fe452015-05-29 09:35:12 -070074
Jian Lie0991662016-03-07 11:22:25 -080075 switch (l0Instruction.subtype()) {
Ray Milkeyd43fe452015-05-29 09:35:12 -070076 case OCH:
77 L0ModificationInstruction.ModOchSignalInstruction ochSignalInstruction =
Jian Lie0991662016-03-07 11:22:25 -080078 (L0ModificationInstruction.ModOchSignalInstruction) l0Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070079 OchSignal ochSignal = ochSignalInstruction.lambda();
80 result.put(InstructionCodec.GRID_TYPE, ochSignal.gridType().name());
81 result.put(InstructionCodec.CHANNEL_SPACING, ochSignal.channelSpacing().name());
82 result.put(InstructionCodec.SPACING_MULTIPLIER, ochSignal.spacingMultiplier());
83 result.put(InstructionCodec.SLOT_GRANULARITY, ochSignal.slotGranularity());
84 break;
85
86 default:
Jian Lie0991662016-03-07 11:22:25 -080087 log.info("Cannot convert L0 subtype of {}", l0Instruction.subtype());
Ray Milkeyd43fe452015-05-29 09:35:12 -070088 }
89 }
90
91 /**
Yafit Hadar5796d972015-10-15 13:16:11 +030092 * Encode an L1 modification instruction.
93 *
94 * @param result json node that the instruction attributes are added to
Yafit Hadar5796d972015-10-15 13:16:11 +030095 */
96 private void encodeL1(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -080097 L1ModificationInstruction l1Instruction = (L1ModificationInstruction) instruction;
98 result.put(InstructionCodec.SUBTYPE, l1Instruction.subtype().name());
Yafit Hadar5796d972015-10-15 13:16:11 +030099
Jian Lie0991662016-03-07 11:22:25 -0800100 switch (l1Instruction.subtype()) {
Jian Li47b26232016-03-07 09:59:59 -0800101 case ODU_SIGID:
102 final L1ModificationInstruction.ModOduSignalIdInstruction oduSignalIdInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800103 (L1ModificationInstruction.ModOduSignalIdInstruction) l1Instruction;
Jian Li47b26232016-03-07 09:59:59 -0800104 OduSignalId oduSignalId = oduSignalIdInstruction.oduSignalId();
Yafit Hadar5796d972015-10-15 13:16:11 +0300105
Jian Li47b26232016-03-07 09:59:59 -0800106 ObjectNode child = result.putObject("oduSignalId");
Yafit Hadar5796d972015-10-15 13:16:11 +0300107
Jian Li47b26232016-03-07 09:59:59 -0800108 child.put(InstructionCodec.TRIBUTARY_PORT_NUMBER, oduSignalId.tributaryPortNumber());
109 child.put(InstructionCodec.TRIBUTARY_SLOT_LEN, oduSignalId.tributarySlotLength());
110 child.put(InstructionCodec.TRIBUTARY_SLOT_BITMAP,
111 HexString.toHexString(oduSignalId.tributarySlotBitmap()));
112 break;
113 default:
Jian Lie0991662016-03-07 11:22:25 -0800114 log.info("Cannot convert L1 subtype of {}", l1Instruction.subtype());
Jian Li47b26232016-03-07 09:59:59 -0800115 break;
Yafit Hadar5796d972015-10-15 13:16:11 +0300116 }
117 }
118
119 /**
Ray Milkeyd43fe452015-05-29 09:35:12 -0700120 * Encode an L2 modification instruction.
121 *
122 * @param result json node that the instruction attributes are added to
123 */
124 private void encodeL2(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -0800125 L2ModificationInstruction l2Instruction = (L2ModificationInstruction) instruction;
126 result.put(InstructionCodec.SUBTYPE, l2Instruction.subtype().name());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700127
Jian Lie0991662016-03-07 11:22:25 -0800128 switch (l2Instruction.subtype()) {
Ray Milkeyd43fe452015-05-29 09:35:12 -0700129 case ETH_SRC:
130 case ETH_DST:
131 final L2ModificationInstruction.ModEtherInstruction modEtherInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800132 (L2ModificationInstruction.ModEtherInstruction) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700133 result.put(InstructionCodec.MAC, modEtherInstruction.mac().toString());
134 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700135 case VLAN_ID:
136 final L2ModificationInstruction.ModVlanIdInstruction modVlanIdInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800137 (L2ModificationInstruction.ModVlanIdInstruction) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700138 result.put(InstructionCodec.VLAN_ID, modVlanIdInstruction.vlanId().toShort());
139 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700140 case VLAN_PCP:
141 final L2ModificationInstruction.ModVlanPcpInstruction modVlanPcpInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800142 (L2ModificationInstruction.ModVlanPcpInstruction) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700143 result.put(InstructionCodec.VLAN_PCP, modVlanPcpInstruction.vlanPcp());
144 break;
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -0500145 case VLAN_PUSH:
146 final L2ModificationInstruction.ModVlanHeaderInstruction pushVlanInstruction =
147 (L2ModificationInstruction.ModVlanHeaderInstruction) l2Instruction;
148 result.put(InstructionCodec.ETHERNET_TYPE, pushVlanInstruction.ethernetType().toString());
149 break;
Jonghwan Hyun360b02f2017-08-11 14:00:07 -0700150 case VLAN_POP:
151 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700152 case MPLS_LABEL:
153 final L2ModificationInstruction.ModMplsLabelInstruction modMplsLabelInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800154 (L2ModificationInstruction.ModMplsLabelInstruction) l2Instruction;
Ray Milkey125572b2016-02-22 16:48:17 -0800155 result.put(InstructionCodec.MPLS_LABEL, modMplsLabelInstruction.label().toInt());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700156 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700157 case MPLS_PUSH:
Jian Li11260a02016-05-19 13:07:22 -0700158 final L2ModificationInstruction.ModMplsHeaderInstruction pushHeaderInstructions =
159 (L2ModificationInstruction.ModMplsHeaderInstruction) l2Instruction;
alshabib7b808c52015-06-26 14:22:24 -0700160 result.put(InstructionCodec.ETHERNET_TYPE,
Jian Li47b26232016-03-07 09:59:59 -0800161 pushHeaderInstructions.ethernetType().toShort());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700162 break;
Hyunsun Moon7080a0d2015-08-14 19:18:48 -0700163 case TUNNEL_ID:
164 final L2ModificationInstruction.ModTunnelIdInstruction modTunnelIdInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800165 (L2ModificationInstruction.ModTunnelIdInstruction) l2Instruction;
Hyunsun Moon7080a0d2015-08-14 19:18:48 -0700166 result.put(InstructionCodec.TUNNEL_ID, modTunnelIdInstruction.tunnelId());
167 break;
Charles Chanfbaabae2016-03-18 10:44:44 -0700168 case MPLS_BOS:
169 final L2ModificationInstruction.ModMplsBosInstruction modMplsBosInstruction =
170 (L2ModificationInstruction.ModMplsBosInstruction) l2Instruction;
171 result.put(InstructionCodec.MPLS_BOS, modMplsBosInstruction.mplsBos());
Jonghwan Hyun360b02f2017-08-11 14:00:07 -0700172 break;
Charles Chanfbaabae2016-03-18 10:44:44 -0700173 case MPLS_POP:
Jonathan Hartcc962d82016-08-09 16:52:22 -0700174 final L2ModificationInstruction.ModMplsHeaderInstruction popHeaderInstruction =
175 (L2ModificationInstruction.ModMplsHeaderInstruction) l2Instruction;
176 result.put(InstructionCodec.ETHERNET_TYPE,
177 toHexWithPrefix(popHeaderInstruction.ethernetType().toShort()));
Jonghwan Hyun360b02f2017-08-11 14:00:07 -0700178 break;
Charles Chanfbaabae2016-03-18 10:44:44 -0700179 case DEC_MPLS_TTL:
180 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700181 default:
Jian Lie0991662016-03-07 11:22:25 -0800182 log.info("Cannot convert L2 subtype of {}", l2Instruction.subtype());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700183 break;
184 }
185 }
186
187 /**
188 * Encode an L3 modification instruction.
189 *
190 * @param result json node that the instruction attributes are added to
191 */
192 private void encodeL3(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -0800193 L3ModificationInstruction l3Instruction = (L3ModificationInstruction) instruction;
194 result.put(InstructionCodec.SUBTYPE, l3Instruction.subtype().name());
195 switch (l3Instruction.subtype()) {
Ray Milkeyd43fe452015-05-29 09:35:12 -0700196 case IPV4_SRC:
197 case IPV4_DST:
198 case IPV6_SRC:
199 case IPV6_DST:
200 final L3ModificationInstruction.ModIPInstruction modIPInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800201 (L3ModificationInstruction.ModIPInstruction) l3Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700202 result.put(InstructionCodec.IP, modIPInstruction.ip().toString());
203 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700204 case IPV6_FLABEL:
205 final L3ModificationInstruction.ModIPv6FlowLabelInstruction
206 modFlowLabelInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800207 (L3ModificationInstruction.ModIPv6FlowLabelInstruction) l3Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700208 result.put(InstructionCodec.FLOW_LABEL, modFlowLabelInstruction.flowLabel());
209 break;
Charles Chanfbaabae2016-03-18 10:44:44 -0700210 case TTL_IN:
211 case TTL_OUT:
212 case DEC_TTL:
Jonathan Hartcc962d82016-08-09 16:52:22 -0700213 // These instructions have no values to be encoded
Charles Chanfbaabae2016-03-18 10:44:44 -0700214 break;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700215 default:
Jian Lie0991662016-03-07 11:22:25 -0800216 log.info("Cannot convert L3 subtype of {}", l3Instruction.subtype());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700217 break;
218 }
219 }
220
221 /**
Hyunsun Moonfab29502015-08-25 13:39:16 -0700222 * Encode a L4 modification instruction.
223 *
224 * @param result json node that the instruction attributes are added to
225 */
226 private void encodeL4(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -0800227 L4ModificationInstruction l4Instruction = (L4ModificationInstruction) instruction;
228 result.put(InstructionCodec.SUBTYPE, l4Instruction.subtype().name());
229 switch (l4Instruction.subtype()) {
Hyunsun Moonfab29502015-08-25 13:39:16 -0700230 case TCP_DST:
231 case TCP_SRC:
232 final L4ModificationInstruction.ModTransportPortInstruction modTcpPortInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800233 (L4ModificationInstruction.ModTransportPortInstruction) l4Instruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -0700234 result.put(InstructionCodec.TCP_PORT, modTcpPortInstruction.port().toInt());
235 break;
Hyunsun Moonfab29502015-08-25 13:39:16 -0700236 case UDP_DST:
237 case UDP_SRC:
238 final L4ModificationInstruction.ModTransportPortInstruction modUdpPortInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800239 (L4ModificationInstruction.ModTransportPortInstruction) l4Instruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -0700240 result.put(InstructionCodec.UDP_PORT, modUdpPortInstruction.port().toInt());
241 break;
Hyunsun Moonfab29502015-08-25 13:39:16 -0700242 default:
Jian Lie0991662016-03-07 11:22:25 -0800243 log.info("Cannot convert L4 subtype of {}", l4Instruction.subtype());
Hyunsun Moonfab29502015-08-25 13:39:16 -0700244 break;
245 }
246 }
247
Frank Wang74ce2c12018-04-11 20:26:45 +0800248 /**
249 * Encode a protocol-independent instruction.
250 *
251 * @param result json node that the instruction attributes are added to
252 */
253 private void encodePi(ObjectNode result) {
254 PiInstruction piInstruction = (PiInstruction) instruction;
255 result.put(InstructionCodec.SUBTYPE, piInstruction.action().type().name());
256 switch (piInstruction.action().type()) {
257 case ACTION:
258 final PiAction piAction = (PiAction) piInstruction.action();
259 result.put(InstructionCodec.PI_ACTION_ID, piAction.id().id());
260 final ObjectNode jsonActionParams = context.mapper().createObjectNode();
261 for (PiActionParam actionParam : piAction.parameters()) {
262 jsonActionParams.put(actionParam.id().id(),
263 HexString.toHexString(actionParam.value().asArray(), null));
264 }
265 result.set(InstructionCodec.PI_ACTION_PARAMS, jsonActionParams);
266 break;
Carmelo Casconecb4327a2018-09-11 15:17:23 -0700267 case ACTION_PROFILE_GROUP_ID:
268 final PiActionProfileGroupId groupId = (PiActionProfileGroupId) piInstruction.action();
269 result.put(InstructionCodec.PI_ACTION_PROFILE_GROUP_ID, groupId.id());
Frank Wang74ce2c12018-04-11 20:26:45 +0800270 break;
Carmelo Casconecb4327a2018-09-11 15:17:23 -0700271 case ACTION_PROFILE_MEMBER_ID:
272 final PiActionProfileMemberId memberId = (PiActionProfileMemberId) piInstruction.action();
273 result.put(InstructionCodec.PI_ACTION_PROFILE_MEMBER_ID, memberId.id());
Frank Wang74ce2c12018-04-11 20:26:45 +0800274 break;
275 default:
276 throw new IllegalArgumentException("Cannot convert protocol-independent subtype of" +
277 piInstruction.action().type().name());
278 }
279 }
Jian Lidab72562016-04-12 14:10:32 -0700280
Hyunsun Moonfab29502015-08-25 13:39:16 -0700281 /**
Jian Lidab72562016-04-12 14:10:32 -0700282 * Encodes a extension instruction.
Charles Chanfbaabae2016-03-18 10:44:44 -0700283 *
284 * @param result json node that the instruction attributes are added to
285 */
286 private void encodeExtension(ObjectNode result) {
Jian Lidab72562016-04-12 14:10:32 -0700287 final Instructions.ExtensionInstructionWrapper extensionInstruction =
288 (Instructions.ExtensionInstructionWrapper) instruction;
289
290 DeviceId deviceId = extensionInstruction.deviceId();
291
292 ServiceDirectory serviceDirectory = new DefaultServiceDirectory();
293 DeviceService deviceService = serviceDirectory.get(DeviceService.class);
294 Device device = deviceService.getDevice(deviceId);
295
Jonathan Harte3bcfc32016-08-16 17:12:49 -0700296 if (device == null) {
297 throw new IllegalArgumentException("Device not found");
298 }
299
Jian Lidab72562016-04-12 14:10:32 -0700300 if (device.is(ExtensionTreatmentCodec.class)) {
301 ExtensionTreatmentCodec treatmentCodec = device.as(ExtensionTreatmentCodec.class);
302 ObjectNode node = treatmentCodec.encode(extensionInstruction.extensionInstruction(), context);
303 result.set(InstructionCodec.EXTENSION, node);
304 } else {
Jonathan Harte3bcfc32016-08-16 17:12:49 -0700305 throw new IllegalArgumentException(
306 "There is no codec to encode extension for device " + deviceId.toString());
Jian Lidab72562016-04-12 14:10:32 -0700307 }
Charles Chanfbaabae2016-03-18 10:44:44 -0700308 }
309
310 /**
Ray Milkeyd43fe452015-05-29 09:35:12 -0700311 * Encodes the given instruction into JSON.
312 *
313 * @return JSON object node representing the instruction
314 */
315 public ObjectNode encode() {
316 final ObjectNode result = context.mapper().createObjectNode()
317 .put(InstructionCodec.TYPE, instruction.type().toString());
318
319 switch (instruction.type()) {
320 case OUTPUT:
321 final Instructions.OutputInstruction outputInstruction =
322 (Instructions.OutputInstruction) instruction;
Andrea Campanella5df35952015-12-08 15:46:49 -0800323 result.put(InstructionCodec.PORT, outputInstruction.port().toString());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700324 break;
325
Brian O'Connor7664e7d2015-10-09 00:57:58 -0700326 case NOACTION:
Ray Milkeyd43fe452015-05-29 09:35:12 -0700327 break;
328
Jian Lice8c5602016-03-03 21:43:24 -0800329 case GROUP:
330 final Instructions.GroupInstruction groupInstruction =
331 (Instructions.GroupInstruction) instruction;
332 result.put(InstructionCodec.GROUP_ID, groupInstruction.groupId().toString());
333 break;
334
Jian Li47b26232016-03-07 09:59:59 -0800335 case METER:
336 final Instructions.MeterInstruction meterInstruction =
337 (Instructions.MeterInstruction) instruction;
338 result.put(InstructionCodec.METER_ID, meterInstruction.meterId().toString());
339 break;
340
Konstantinos Kanonakisc5d93e62016-04-12 18:51:20 -0500341 case TABLE:
342 final Instructions.TableTypeTransition tableTransitionInstruction =
343 (Instructions.TableTypeTransition) instruction;
344 result.put(InstructionCodec.TABLE_ID, tableTransitionInstruction.tableId().toString());
345 break;
346
Jian Li70dffe42016-03-08 22:23:02 -0800347 case QUEUE:
348 final Instructions.SetQueueInstruction setQueueInstruction =
349 (Instructions.SetQueueInstruction) instruction;
350 result.put(InstructionCodec.QUEUE_ID, setQueueInstruction.queueId());
ke han215f2452017-04-28 13:36:05 +0800351 if (setQueueInstruction.port() != null) {
352 result.put(InstructionCodec.PORT, setQueueInstruction.port().toString());
353 }
Jian Li70dffe42016-03-08 22:23:02 -0800354 break;
355
Ray Milkeyd43fe452015-05-29 09:35:12 -0700356 case L0MODIFICATION:
357 encodeL0(result);
358 break;
359
Yafit Hadar5796d972015-10-15 13:16:11 +0300360 case L1MODIFICATION:
361 encodeL1(result);
362 break;
363
Ray Milkeyd43fe452015-05-29 09:35:12 -0700364 case L2MODIFICATION:
365 encodeL2(result);
366 break;
367
368 case L3MODIFICATION:
369 encodeL3(result);
370 break;
371
Hyunsun Moonfab29502015-08-25 13:39:16 -0700372 case L4MODIFICATION:
373 encodeL4(result);
374 break;
375
Frank Wang74ce2c12018-04-11 20:26:45 +0800376 case PROTOCOL_INDEPENDENT:
377 encodePi(result);
378 break;
379
Charles Chanfbaabae2016-03-18 10:44:44 -0700380 case EXTENSION:
381 encodeExtension(result);
382 break;
383
Ray Milkeyd43fe452015-05-29 09:35:12 -0700384 default:
385 log.info("Cannot convert instruction type of {}", instruction.type());
386 break;
387 }
388 return result;
389 }
390
391}