blob: a58ad3fbb30e3231cca0685cdf455c68cabd0f17 [file] [log] [blame]
Jian Li8bcef8b2016-01-06 11:35:53 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Jian Li8bcef8b2016-01-06 11:35:53 -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
18import com.fasterxml.jackson.databind.JsonNode;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
21import org.onosproject.codec.CodecContext;
22import org.onosproject.codec.JsonCodec;
Jian Li8bcef8b2016-01-06 11:35:53 -080023import org.onosproject.core.CoreService;
24import org.onosproject.net.flow.TrafficSelector;
25import org.onosproject.net.flow.TrafficTreatment;
26import org.onosproject.net.flowobjective.DefaultNextObjective;
27import org.onosproject.net.flowobjective.NextObjective;
28import org.slf4j.Logger;
29
30import java.util.stream.IntStream;
31
32import static com.google.common.base.Preconditions.checkNotNull;
33import static org.onlab.util.Tools.nullIsIllegal;
34import static org.slf4j.LoggerFactory.getLogger;
35
36/**
37 * Next Objective Codec.
38 */
Jian Lia424a052016-05-30 21:02:33 +090039public final class NextObjectiveCodec extends JsonCodec<NextObjective> {
Jian Li8bcef8b2016-01-06 11:35:53 -080040
41 private final Logger log = getLogger(getClass());
42
43 // JSON field names
44 private static final String ID = "id";
Jian Lia424a052016-05-30 21:02:33 +090045 private static final String APP_ID = "appId";
Jian Li8bcef8b2016-01-06 11:35:53 -080046 private static final String TYPE = "type";
47 private static final String OPERATION = "operation";
48 private static final String TREATMENTS = "treatments";
49 private static final String META = "meta";
50
51 // messages to be printed out
52 private static final String MISSING_MEMBER_MESSAGE =
53 " member is required in NextObjective";
54 private static final String NOT_NULL_MESSAGE =
55 "NextObjective cannot be null";
56 private static final String INVALID_TYPE_MESSAGE =
57 "The requested flag {} is not defined in NextObjective.";
58 private static final String INVALID_OP_MESSAGE =
59 "The requested operation {} is not defined for NextObjective.";
60
61 public static final String REST_APP_ID = "org.onosproject.rest";
62
63 @Override
64 public ObjectNode encode(NextObjective nextObjective, CodecContext context) {
65
66 checkNotNull(nextObjective, NOT_NULL_MESSAGE);
67
68 final JsonCodec<TrafficTreatment> trafficTreatmentCodec = context.codec(TrafficTreatment.class);
69 final JsonCodec<TrafficSelector> trafficSelectorCodec = context.codec(TrafficSelector.class);
70
71 // encode common properties
72 ObjectiveCodecHelper och = new ObjectiveCodecHelper();
73 ObjectNode result = och.encode(nextObjective, context);
74
75 // encode id
76 result.put(ID, nextObjective.id());
77
78 // encode type
79 result.put(TYPE, nextObjective.type().toString());
80
81 // encode operation
82 result.put(OPERATION, nextObjective.op().toString());
83
84 // encode treatments
85 ArrayNode treatments = context.mapper().createArrayNode();
86 nextObjective.next().forEach(t -> {
87 ObjectNode treatmentJson = trafficTreatmentCodec.encode(t, context);
88 treatments.add(treatmentJson);
89 });
90 result.set(TREATMENTS, treatments);
91
92 // encode meta
93 if (nextObjective.meta() != null) {
94 ObjectNode trafficSelectorNode = trafficSelectorCodec.encode(nextObjective.meta(), context);
95 result.set(META, trafficSelectorNode);
96 }
97
98 return result;
99 }
100
101 @Override
102 public NextObjective decode(ObjectNode json, CodecContext context) {
103 if (json == null || !json.isObject()) {
104 return null;
105 }
106
107 CoreService coreService = context.getService(CoreService.class);
108
109 final JsonCodec<TrafficSelector> trafficSelectorCodec = context.codec(TrafficSelector.class);
110 final JsonCodec<TrafficTreatment> trafficTreatmentCodec = context.codec(TrafficTreatment.class);
111
112 ObjectiveCodecHelper och = new ObjectiveCodecHelper();
113
114 DefaultNextObjective.Builder baseBuilder = DefaultNextObjective.builder();
115 final DefaultNextObjective.Builder builder =
116 (DefaultNextObjective.Builder) och.decode(json, baseBuilder, context);
117
118 // decode id
119 JsonNode idJson = json.get(ID);
120 checkNotNull(idJson);
121 builder.withId(idJson.asInt());
122
123 // decode application id
Jian Lia424a052016-05-30 21:02:33 +0900124 JsonNode appIdJson = json.get(APP_ID);
125 String appId = appIdJson != null ? appIdJson.asText() : REST_APP_ID;
126 builder.fromApp(coreService.registerApplication(appId));
Jian Li8bcef8b2016-01-06 11:35:53 -0800127
128 // decode type
129 String typeStr = nullIsIllegal(json.get(TYPE), TYPE + MISSING_MEMBER_MESSAGE).asText();
130
131 switch (typeStr) {
132 case "HASHED":
133 builder.withType(NextObjective.Type.HASHED);
134 break;
135 case "BROADCAST":
136 builder.withType(NextObjective.Type.BROADCAST);
137 break;
138 case "FAILOVER":
139 builder.withType(NextObjective.Type.FAILOVER);
140 break;
141 case "SIMPLE":
142 builder.withType(NextObjective.Type.SIMPLE);
143 break;
144 default:
145 log.warn(INVALID_TYPE_MESSAGE, typeStr);
146 return null;
147 }
148
149 // decode treatments
150 JsonNode treatmentsJson = json.get(TREATMENTS);
151 checkNotNull(treatmentsJson);
152 if (treatmentsJson != null) {
153 IntStream.range(0, treatmentsJson.size()).forEach(i -> {
154 ObjectNode treatmentJson = get(treatmentsJson, i);
155 builder.addTreatment(trafficTreatmentCodec.decode(treatmentJson, context));
156 });
157 }
158
159 // decode meta
160 JsonNode metaJson = json.get(META);
161 if (metaJson != null) {
162 TrafficSelector trafficSelector = trafficSelectorCodec.decode((ObjectNode) metaJson, context);
163 builder.withMeta(trafficSelector);
164 }
165
166 // decode operation
167 String opStr = nullIsIllegal(json.get(OPERATION), OPERATION + MISSING_MEMBER_MESSAGE).asText();
168 NextObjective nextObjective;
169
170 switch (opStr) {
171 case "ADD":
172 nextObjective = builder.add();
173 break;
174 case "REMOVE":
175 nextObjective = builder.remove();
176 break;
177 default:
178 log.warn(INVALID_OP_MESSAGE, opStr);
179 return null;
180 }
181
182 return nextObjective;
183 }
184}