blob: 1378c3e717e48dba947726e1859182997f5fb5d2 [file] [log] [blame]
Ray Milkey4f5de002014-12-17 19:26:11 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ray Milkey4f5de002014-12-17 19:26:11 -08003 *
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
Ray Milkeyd43fe452015-05-29 09:35:12 -070018import java.util.stream.IntStream;
19
Ray Milkey4f5de002014-12-17 19:26:11 -080020import org.onosproject.codec.CodecContext;
21import org.onosproject.codec.JsonCodec;
Ray Milkeyd43fe452015-05-29 09:35:12 -070022import org.onosproject.net.flow.DefaultTrafficTreatment;
Ray Milkey4f5de002014-12-17 19:26:11 -080023import org.onosproject.net.flow.TrafficTreatment;
24import org.onosproject.net.flow.instructions.Instruction;
25
Ray Milkeyd43fe452015-05-29 09:35:12 -070026import com.fasterxml.jackson.databind.JsonNode;
Ray Milkey4f5de002014-12-17 19:26:11 -080027import com.fasterxml.jackson.databind.node.ArrayNode;
28import com.fasterxml.jackson.databind.node.ObjectNode;
29
30import static com.google.common.base.Preconditions.checkNotNull;
31
32/**
33 * Traffic treatment codec.
34 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080035public final class TrafficTreatmentCodec extends JsonCodec<TrafficTreatment> {
Ray Milkeyd43fe452015-05-29 09:35:12 -070036 private static final String INSTRUCTIONS = "instructions";
Saurav Das1bec2be2017-03-06 13:52:48 -080037 private static final String DEFERRED = "deferred";
Ray Milkeyd43fe452015-05-29 09:35:12 -070038
Ray Milkey4f5de002014-12-17 19:26:11 -080039 @Override
40 public ObjectNode encode(TrafficTreatment treatment, CodecContext context) {
41 checkNotNull(treatment, "Traffic treatment cannot be null");
42
43 final ObjectNode result = context.mapper().createObjectNode();
Ray Milkeyd43fe452015-05-29 09:35:12 -070044 final ArrayNode jsonInstructions = result.putArray(INSTRUCTIONS);
Ray Milkey4f5de002014-12-17 19:26:11 -080045
Ray Milkey42507352015-03-20 15:16:10 -070046 final JsonCodec<Instruction> instructionCodec =
47 context.codec(Instruction.class);
48
49 for (final Instruction instruction : treatment.immediate()) {
50 jsonInstructions.add(instructionCodec.encode(instruction, context));
51 }
52
Konstantinos Kanonakisc5d93e62016-04-12 18:51:20 -050053 if (treatment.metered() != null) {
54 jsonInstructions.add(instructionCodec.encode(treatment.metered(), context));
55 }
56 if (treatment.tableTransition() != null) {
57 jsonInstructions.add(instructionCodec.encode(treatment.tableTransition(), context));
58 }
59
Ray Milkey42507352015-03-20 15:16:10 -070060 final ArrayNode jsonDeferred = result.putArray("deferred");
61
62 for (final Instruction instruction : treatment.deferred()) {
63 jsonDeferred.add(instructionCodec.encode(instruction, context));
Ray Milkey4f5de002014-12-17 19:26:11 -080064 }
65
66 return result;
67 }
Ray Milkeyd43fe452015-05-29 09:35:12 -070068
69 @Override
70 public TrafficTreatment decode(ObjectNode json, CodecContext context) {
71 final JsonCodec<Instruction> instructionsCodec =
72 context.codec(Instruction.class);
73
74 JsonNode instructionsJson = json.get(INSTRUCTIONS);
75 TrafficTreatment.Builder builder = DefaultTrafficTreatment.builder();
76 if (instructionsJson != null) {
77 IntStream.range(0, instructionsJson.size())
78 .forEach(i -> builder.add(
Ray Milkeyb82c42b2015-06-30 09:42:20 -070079 instructionsCodec.decode(get(instructionsJson, i),
Ray Milkeyd43fe452015-05-29 09:35:12 -070080 context)));
81 }
Saurav Das1bec2be2017-03-06 13:52:48 -080082
83 JsonNode deferredJson = json.get(DEFERRED);
84 if (deferredJson != null) {
85 IntStream.range(0, deferredJson.size())
86 .forEach(i -> builder.deferred().add(
87 instructionsCodec.decode(get(deferredJson, i),
88 context)));
89 }
90
Ray Milkeyd43fe452015-05-29 09:35:12 -070091 return builder.build();
92 }
Ray Milkey4f5de002014-12-17 19:26:11 -080093}