blob: 23dae38d98aac83956325423269a5915d3507df1 [file] [log] [blame]
Ray Milkey4f5de002014-12-17 19:26:11 -08001/*
2 * Copyright 2014 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
18import org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
20import org.onosproject.net.flow.TrafficTreatment;
21import org.onosproject.net.flow.instructions.Instruction;
22
23import com.fasterxml.jackson.databind.node.ArrayNode;
24import com.fasterxml.jackson.databind.node.ObjectNode;
25
26import static com.google.common.base.Preconditions.checkNotNull;
27
28/**
29 * Traffic treatment codec.
30 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080031public final class TrafficTreatmentCodec extends JsonCodec<TrafficTreatment> {
Ray Milkey4f5de002014-12-17 19:26:11 -080032 @Override
33 public ObjectNode encode(TrafficTreatment treatment, CodecContext context) {
34 checkNotNull(treatment, "Traffic treatment cannot be null");
35
36 final ObjectNode result = context.mapper().createObjectNode();
37 final ArrayNode jsonInstructions = result.putArray("instructions");
38
Ray Milkey42507352015-03-20 15:16:10 -070039 final JsonCodec<Instruction> instructionCodec =
40 context.codec(Instruction.class);
41
42 for (final Instruction instruction : treatment.immediate()) {
43 jsonInstructions.add(instructionCodec.encode(instruction, context));
44 }
45
46 final ArrayNode jsonDeferred = result.putArray("deferred");
47
48 for (final Instruction instruction : treatment.deferred()) {
49 jsonDeferred.add(instructionCodec.encode(instruction, context));
Ray Milkey4f5de002014-12-17 19:26:11 -080050 }
51
52 return result;
53 }
54}