blob: da741218715a050b0182db0e917d25d840c99cb7 [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
52 final ArrayNode jsonDeferred = result.putArray("deferred");
53
54 for (final Instruction instruction : treatment.deferred()) {
55 jsonDeferred.add(instructionCodec.encode(instruction, context));
Ray Milkey4f5de002014-12-17 19:26:11 -080056 }
57
58 return result;
59 }
Ray Milkeyd43fe452015-05-29 09:35:12 -070060
61 @Override
62 public TrafficTreatment decode(ObjectNode json, CodecContext context) {
63 final JsonCodec<Instruction> instructionsCodec =
64 context.codec(Instruction.class);
65
66 JsonNode instructionsJson = json.get(INSTRUCTIONS);
67 TrafficTreatment.Builder builder = DefaultTrafficTreatment.builder();
68 if (instructionsJson != null) {
69 IntStream.range(0, instructionsJson.size())
70 .forEach(i -> builder.add(
Ray Milkeyb82c42b2015-06-30 09:42:20 -070071 instructionsCodec.decode(get(instructionsJson, i),
Ray Milkeyd43fe452015-05-29 09:35:12 -070072 context)));
73 }
74 return builder.build();
75 }
Ray Milkey4f5de002014-12-17 19:26:11 -080076}