blob: 6ec5a67ca55fdcd26d75db2c63428c14b61c04ef [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";
37
Ray Milkey4f5de002014-12-17 19:26:11 -080038 @Override
39 public ObjectNode encode(TrafficTreatment treatment, CodecContext context) {
40 checkNotNull(treatment, "Traffic treatment cannot be null");
41
42 final ObjectNode result = context.mapper().createObjectNode();
Ray Milkeyd43fe452015-05-29 09:35:12 -070043 final ArrayNode jsonInstructions = result.putArray(INSTRUCTIONS);
Ray Milkey4f5de002014-12-17 19:26:11 -080044
Ray Milkey42507352015-03-20 15:16:10 -070045 final JsonCodec<Instruction> instructionCodec =
46 context.codec(Instruction.class);
47
48 for (final Instruction instruction : treatment.immediate()) {
49 jsonInstructions.add(instructionCodec.encode(instruction, context));
50 }
51
Konstantinos Kanonakisc5d93e62016-04-12 18:51:20 -050052 if (treatment.metered() != null) {
53 jsonInstructions.add(instructionCodec.encode(treatment.metered(), context));
54 }
55 if (treatment.tableTransition() != null) {
56 jsonInstructions.add(instructionCodec.encode(treatment.tableTransition(), context));
57 }
58
Ray Milkey42507352015-03-20 15:16:10 -070059 final ArrayNode jsonDeferred = result.putArray("deferred");
60
61 for (final Instruction instruction : treatment.deferred()) {
62 jsonDeferred.add(instructionCodec.encode(instruction, context));
Ray Milkey4f5de002014-12-17 19:26:11 -080063 }
64
65 return result;
66 }
Ray Milkeyd43fe452015-05-29 09:35:12 -070067
68 @Override
69 public TrafficTreatment decode(ObjectNode json, CodecContext context) {
70 final JsonCodec<Instruction> instructionsCodec =
71 context.codec(Instruction.class);
72
73 JsonNode instructionsJson = json.get(INSTRUCTIONS);
74 TrafficTreatment.Builder builder = DefaultTrafficTreatment.builder();
75 if (instructionsJson != null) {
76 IntStream.range(0, instructionsJson.size())
77 .forEach(i -> builder.add(
Ray Milkeyb82c42b2015-06-30 09:42:20 -070078 instructionsCodec.decode(get(instructionsJson, i),
Ray Milkeyd43fe452015-05-29 09:35:12 -070079 context)));
80 }
81 return builder.build();
82 }
Ray Milkey4f5de002014-12-17 19:26:11 -080083}