blob: e025475b30916f7ee55d0567a47228f58818dfec [file] [log] [blame]
Ray Milkeyd43fe452015-05-29 09:35:12 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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;
Yafit Hadar5796d972015-10-15 13:16:11 +030019import org.onlab.util.HexString;
Ray Milkeyd43fe452015-05-29 09:35:12 -070020import org.onosproject.codec.CodecContext;
21import org.onosproject.net.OchSignal;
Yafit Hadar5796d972015-10-15 13:16:11 +030022import org.onosproject.net.OduSignalId;
Ray Milkeyd43fe452015-05-29 09:35:12 -070023import org.onosproject.net.flow.instructions.Instruction;
24import org.onosproject.net.flow.instructions.Instructions;
25import org.onosproject.net.flow.instructions.L0ModificationInstruction;
Yafit Hadar5796d972015-10-15 13:16:11 +030026import org.onosproject.net.flow.instructions.L1ModificationInstruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070027import org.onosproject.net.flow.instructions.L2ModificationInstruction;
28import org.onosproject.net.flow.instructions.L3ModificationInstruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -070029import org.onosproject.net.flow.instructions.L4ModificationInstruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070030import org.slf4j.Logger;
31import org.slf4j.LoggerFactory;
32
Ray Milkeyd43fe452015-05-29 09:35:12 -070033/**
34 * JSON encoding of Instructions.
35 */
Ray Milkey6d7968e2015-07-06 14:30:02 -070036public final class EncodeInstructionCodecHelper {
37 protected static final Logger log = LoggerFactory.getLogger(EncodeInstructionCodecHelper.class);
Ray Milkeyd43fe452015-05-29 09:35:12 -070038 private final Instruction instruction;
39 private final CodecContext context;
40
41 /**
42 * Creates an instruction object encoder.
43 *
44 * @param instruction instruction to encode
Jian Li47b26232016-03-07 09:59:59 -080045 * @param context codec context for the encoding
Ray Milkeyd43fe452015-05-29 09:35:12 -070046 */
Ray Milkey6d7968e2015-07-06 14:30:02 -070047 public EncodeInstructionCodecHelper(Instruction instruction, CodecContext context) {
Ray Milkeyd43fe452015-05-29 09:35:12 -070048 this.instruction = instruction;
49 this.context = context;
50 }
51
52
53 /**
54 * Encode an L0 modification instruction.
55 *
56 * @param result json node that the instruction attributes are added to
57 */
58 private void encodeL0(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -080059 L0ModificationInstruction l0Instruction = (L0ModificationInstruction) instruction;
60 result.put(InstructionCodec.SUBTYPE, l0Instruction.subtype().name());
Ray Milkeyd43fe452015-05-29 09:35:12 -070061
Jian Lie0991662016-03-07 11:22:25 -080062 switch (l0Instruction.subtype()) {
Ray Milkeyd43fe452015-05-29 09:35:12 -070063 case LAMBDA:
64 final L0ModificationInstruction.ModLambdaInstruction modLambdaInstruction =
Jian Lie0991662016-03-07 11:22:25 -080065 (L0ModificationInstruction.ModLambdaInstruction) l0Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070066 result.put(InstructionCodec.LAMBDA, modLambdaInstruction.lambda());
67 break;
68
69 case OCH:
70 L0ModificationInstruction.ModOchSignalInstruction ochSignalInstruction =
Jian Lie0991662016-03-07 11:22:25 -080071 (L0ModificationInstruction.ModOchSignalInstruction) l0Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070072 OchSignal ochSignal = ochSignalInstruction.lambda();
73 result.put(InstructionCodec.GRID_TYPE, ochSignal.gridType().name());
74 result.put(InstructionCodec.CHANNEL_SPACING, ochSignal.channelSpacing().name());
75 result.put(InstructionCodec.SPACING_MULTIPLIER, ochSignal.spacingMultiplier());
76 result.put(InstructionCodec.SLOT_GRANULARITY, ochSignal.slotGranularity());
77 break;
78
79 default:
Jian Lie0991662016-03-07 11:22:25 -080080 log.info("Cannot convert L0 subtype of {}", l0Instruction.subtype());
Ray Milkeyd43fe452015-05-29 09:35:12 -070081 }
82 }
83
84 /**
Yafit Hadar5796d972015-10-15 13:16:11 +030085 * Encode an L1 modification instruction.
86 *
87 * @param result json node that the instruction attributes are added to
Yafit Hadar5796d972015-10-15 13:16:11 +030088 */
89 private void encodeL1(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -080090 L1ModificationInstruction l1Instruction = (L1ModificationInstruction) instruction;
91 result.put(InstructionCodec.SUBTYPE, l1Instruction.subtype().name());
Yafit Hadar5796d972015-10-15 13:16:11 +030092
Jian Lie0991662016-03-07 11:22:25 -080093 switch (l1Instruction.subtype()) {
Jian Li47b26232016-03-07 09:59:59 -080094 case ODU_SIGID:
95 final L1ModificationInstruction.ModOduSignalIdInstruction oduSignalIdInstruction =
Jian Lie0991662016-03-07 11:22:25 -080096 (L1ModificationInstruction.ModOduSignalIdInstruction) l1Instruction;
Jian Li47b26232016-03-07 09:59:59 -080097 OduSignalId oduSignalId = oduSignalIdInstruction.oduSignalId();
Yafit Hadar5796d972015-10-15 13:16:11 +030098
Jian Li47b26232016-03-07 09:59:59 -080099 ObjectNode child = result.putObject("oduSignalId");
Yafit Hadar5796d972015-10-15 13:16:11 +0300100
Jian Li47b26232016-03-07 09:59:59 -0800101 child.put(InstructionCodec.TRIBUTARY_PORT_NUMBER, oduSignalId.tributaryPortNumber());
102 child.put(InstructionCodec.TRIBUTARY_SLOT_LEN, oduSignalId.tributarySlotLength());
103 child.put(InstructionCodec.TRIBUTARY_SLOT_BITMAP,
104 HexString.toHexString(oduSignalId.tributarySlotBitmap()));
105 break;
106 default:
Jian Lie0991662016-03-07 11:22:25 -0800107 log.info("Cannot convert L1 subtype of {}", l1Instruction.subtype());
Jian Li47b26232016-03-07 09:59:59 -0800108 break;
Yafit Hadar5796d972015-10-15 13:16:11 +0300109 }
110 }
111
112 /**
Ray Milkeyd43fe452015-05-29 09:35:12 -0700113 * Encode an L2 modification instruction.
114 *
115 * @param result json node that the instruction attributes are added to
116 */
117 private void encodeL2(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -0800118 L2ModificationInstruction l2Instruction = (L2ModificationInstruction) instruction;
119 result.put(InstructionCodec.SUBTYPE, l2Instruction.subtype().name());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700120
Jian Lie0991662016-03-07 11:22:25 -0800121 switch (l2Instruction.subtype()) {
Ray Milkeyd43fe452015-05-29 09:35:12 -0700122 case ETH_SRC:
123 case ETH_DST:
124 final L2ModificationInstruction.ModEtherInstruction modEtherInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800125 (L2ModificationInstruction.ModEtherInstruction) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700126 result.put(InstructionCodec.MAC, modEtherInstruction.mac().toString());
127 break;
128
129 case VLAN_ID:
130 final L2ModificationInstruction.ModVlanIdInstruction modVlanIdInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800131 (L2ModificationInstruction.ModVlanIdInstruction) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700132 result.put(InstructionCodec.VLAN_ID, modVlanIdInstruction.vlanId().toShort());
133 break;
134
135 case VLAN_PCP:
136 final L2ModificationInstruction.ModVlanPcpInstruction modVlanPcpInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800137 (L2ModificationInstruction.ModVlanPcpInstruction) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700138 result.put(InstructionCodec.VLAN_PCP, modVlanPcpInstruction.vlanPcp());
139 break;
140
141 case MPLS_LABEL:
142 final L2ModificationInstruction.ModMplsLabelInstruction modMplsLabelInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800143 (L2ModificationInstruction.ModMplsLabelInstruction) l2Instruction;
Ray Milkey125572b2016-02-22 16:48:17 -0800144 result.put(InstructionCodec.MPLS_LABEL, modMplsLabelInstruction.label().toInt());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700145 break;
146
147 case MPLS_PUSH:
148 final L2ModificationInstruction.PushHeaderInstructions pushHeaderInstructions =
Jian Lie0991662016-03-07 11:22:25 -0800149 (L2ModificationInstruction.PushHeaderInstructions) l2Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700150
alshabib7b808c52015-06-26 14:22:24 -0700151 result.put(InstructionCodec.ETHERNET_TYPE,
Jian Li47b26232016-03-07 09:59:59 -0800152 pushHeaderInstructions.ethernetType().toShort());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700153 break;
154
Hyunsun Moon7080a0d2015-08-14 19:18:48 -0700155 case TUNNEL_ID:
156 final L2ModificationInstruction.ModTunnelIdInstruction modTunnelIdInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800157 (L2ModificationInstruction.ModTunnelIdInstruction) l2Instruction;
Hyunsun Moon7080a0d2015-08-14 19:18:48 -0700158 result.put(InstructionCodec.TUNNEL_ID, modTunnelIdInstruction.tunnelId());
159 break;
160
Ray Milkeyd43fe452015-05-29 09:35:12 -0700161 default:
Jian Lie0991662016-03-07 11:22:25 -0800162 log.info("Cannot convert L2 subtype of {}", l2Instruction.subtype());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700163 break;
164 }
165 }
166
167 /**
168 * Encode an L3 modification instruction.
169 *
170 * @param result json node that the instruction attributes are added to
171 */
172 private void encodeL3(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -0800173 L3ModificationInstruction l3Instruction = (L3ModificationInstruction) instruction;
174 result.put(InstructionCodec.SUBTYPE, l3Instruction.subtype().name());
175 switch (l3Instruction.subtype()) {
Ray Milkeyd43fe452015-05-29 09:35:12 -0700176 case IPV4_SRC:
177 case IPV4_DST:
178 case IPV6_SRC:
179 case IPV6_DST:
180 final L3ModificationInstruction.ModIPInstruction modIPInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800181 (L3ModificationInstruction.ModIPInstruction) l3Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700182 result.put(InstructionCodec.IP, modIPInstruction.ip().toString());
183 break;
184
185 case IPV6_FLABEL:
186 final L3ModificationInstruction.ModIPv6FlowLabelInstruction
187 modFlowLabelInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800188 (L3ModificationInstruction.ModIPv6FlowLabelInstruction) l3Instruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -0700189 result.put(InstructionCodec.FLOW_LABEL, modFlowLabelInstruction.flowLabel());
190 break;
191
192 default:
Jian Lie0991662016-03-07 11:22:25 -0800193 log.info("Cannot convert L3 subtype of {}", l3Instruction.subtype());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700194 break;
195 }
196 }
197
198 /**
Hyunsun Moonfab29502015-08-25 13:39:16 -0700199 * Encode a L4 modification instruction.
200 *
201 * @param result json node that the instruction attributes are added to
202 */
203 private void encodeL4(ObjectNode result) {
Jian Lie0991662016-03-07 11:22:25 -0800204 L4ModificationInstruction l4Instruction = (L4ModificationInstruction) instruction;
205 result.put(InstructionCodec.SUBTYPE, l4Instruction.subtype().name());
206 switch (l4Instruction.subtype()) {
Hyunsun Moonfab29502015-08-25 13:39:16 -0700207 case TCP_DST:
208 case TCP_SRC:
209 final L4ModificationInstruction.ModTransportPortInstruction modTcpPortInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800210 (L4ModificationInstruction.ModTransportPortInstruction) l4Instruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -0700211 result.put(InstructionCodec.TCP_PORT, modTcpPortInstruction.port().toInt());
212 break;
213
214 case UDP_DST:
215 case UDP_SRC:
216 final L4ModificationInstruction.ModTransportPortInstruction modUdpPortInstruction =
Jian Lie0991662016-03-07 11:22:25 -0800217 (L4ModificationInstruction.ModTransportPortInstruction) l4Instruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -0700218 result.put(InstructionCodec.UDP_PORT, modUdpPortInstruction.port().toInt());
219 break;
220
221 default:
Jian Lie0991662016-03-07 11:22:25 -0800222 log.info("Cannot convert L4 subtype of {}", l4Instruction.subtype());
Hyunsun Moonfab29502015-08-25 13:39:16 -0700223 break;
224 }
225 }
226
227 /**
Ray Milkeyd43fe452015-05-29 09:35:12 -0700228 * Encodes the given instruction into JSON.
229 *
230 * @return JSON object node representing the instruction
231 */
232 public ObjectNode encode() {
233 final ObjectNode result = context.mapper().createObjectNode()
234 .put(InstructionCodec.TYPE, instruction.type().toString());
235
236 switch (instruction.type()) {
237 case OUTPUT:
238 final Instructions.OutputInstruction outputInstruction =
239 (Instructions.OutputInstruction) instruction;
Andrea Campanella5df35952015-12-08 15:46:49 -0800240 result.put(InstructionCodec.PORT, outputInstruction.port().toString());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700241 break;
242
243 case DROP:
Brian O'Connor7664e7d2015-10-09 00:57:58 -0700244 case NOACTION:
Ray Milkeyd43fe452015-05-29 09:35:12 -0700245 break;
246
Jian Lice8c5602016-03-03 21:43:24 -0800247 case GROUP:
248 final Instructions.GroupInstruction groupInstruction =
249 (Instructions.GroupInstruction) instruction;
250 result.put(InstructionCodec.GROUP_ID, groupInstruction.groupId().toString());
251 break;
252
Jian Li47b26232016-03-07 09:59:59 -0800253 case METER:
254 final Instructions.MeterInstruction meterInstruction =
255 (Instructions.MeterInstruction) instruction;
256 result.put(InstructionCodec.METER_ID, meterInstruction.meterId().toString());
257 break;
258
Jian Li70dffe42016-03-08 22:23:02 -0800259 case QUEUE:
260 final Instructions.SetQueueInstruction setQueueInstruction =
261 (Instructions.SetQueueInstruction) instruction;
262 result.put(InstructionCodec.QUEUE_ID, setQueueInstruction.queueId());
263 result.put(InstructionCodec.PORT, setQueueInstruction.port().toString());
264 break;
265
Ray Milkeyd43fe452015-05-29 09:35:12 -0700266 case L0MODIFICATION:
267 encodeL0(result);
268 break;
269
Yafit Hadar5796d972015-10-15 13:16:11 +0300270 case L1MODIFICATION:
271 encodeL1(result);
272 break;
273
Ray Milkeyd43fe452015-05-29 09:35:12 -0700274 case L2MODIFICATION:
275 encodeL2(result);
276 break;
277
278 case L3MODIFICATION:
279 encodeL3(result);
280 break;
281
Hyunsun Moonfab29502015-08-25 13:39:16 -0700282 case L4MODIFICATION:
283 encodeL4(result);
284 break;
285
Ray Milkeyd43fe452015-05-29 09:35:12 -0700286 default:
287 log.info("Cannot convert instruction type of {}", instruction.type());
288 break;
289 }
290 return result;
291 }
292
293}