blob: eea9faef7bfe3ca59e1ddffee0a3cfe6709a783c [file] [log] [blame]
Ray Milkey4f5de002014-12-17 19:26:11 -08001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 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.DefaultTrafficSelector;
Ray Milkey4f5de002014-12-17 19:26:11 -080023import org.onosproject.net.flow.TrafficSelector;
24import org.onosproject.net.flow.criteria.Criterion;
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 selector codec.
34 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080035public final class TrafficSelectorCodec extends JsonCodec<TrafficSelector> {
Ray Milkeyd43fe452015-05-29 09:35:12 -070036 private static final String CRITERIA = "criteria";
37
Ray Milkey4f5de002014-12-17 19:26:11 -080038 @Override
39 public ObjectNode encode(TrafficSelector selector, CodecContext context) {
40 checkNotNull(selector, "Traffic selector cannot be null");
41
42 final ObjectNode result = context.mapper().createObjectNode();
Ray Milkeyd43fe452015-05-29 09:35:12 -070043 final ArrayNode jsonCriteria = result.putArray(CRITERIA);
Ray Milkey4f5de002014-12-17 19:26:11 -080044
45 if (selector.criteria() != null) {
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080046 final JsonCodec<Criterion> criterionCodec =
47 context.codec(Criterion.class);
48 for (final Criterion criterion : selector.criteria()) {
49 jsonCriteria.add(criterionCodec.encode(criterion, context));
Ray Milkey4f5de002014-12-17 19:26:11 -080050 }
51 }
52
53 return result;
54 }
Ray Milkeyd43fe452015-05-29 09:35:12 -070055
56 @Override
57 public TrafficSelector decode(ObjectNode json, CodecContext context) {
58 final JsonCodec<Criterion> criterionCodec =
59 context.codec(Criterion.class);
60
61 JsonNode criteriaJson = json.get(CRITERIA);
62 TrafficSelector.Builder builder = DefaultTrafficSelector.builder();
63 if (criteriaJson != null) {
64 IntStream.range(0, criteriaJson.size())
65 .forEach(i -> builder.add(
66 criterionCodec.decode((ObjectNode) criteriaJson.get(i),
67 context)));
68 }
69 return builder.build();
70 }
Ray Milkey4f5de002014-12-17 19:26:11 -080071}