blob: 7686a55b6c76e8551fec4007021efd82c1608038 [file] [log] [blame]
Ray Milkey2b217142014-12-15 09:24:24 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ray Milkey2b217142014-12-15 09:24:24 -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 org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070020import org.onosproject.core.CoreService;
Ray Milkey2b217142014-12-15 09:24:24 -080021import org.onosproject.net.NetworkResource;
Luca Prete670ac5d2017-02-03 15:55:43 -080022import org.onosproject.net.ResourceGroup;
Chiara Contolia8f69ff2016-07-28 01:06:07 +090023import org.onosproject.net.intent.PointToPointIntent;
Ray Milkey2b217142014-12-15 09:24:24 -080024import org.onosproject.net.intent.Intent;
Ray Milkey1534f8d2015-05-13 15:42:50 -070025import org.onosproject.net.intent.IntentService;
26import org.onosproject.net.intent.IntentState;
Chiara Contolia8f69ff2016-07-28 01:06:07 +090027import org.onosproject.net.intent.HostToHostIntent;
28import org.onosproject.net.intent.SinglePointToMultiPointIntent;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070029import com.fasterxml.jackson.databind.JsonNode;
Ray Milkey2b217142014-12-15 09:24:24 -080030import com.fasterxml.jackson.databind.node.ArrayNode;
31import com.fasterxml.jackson.databind.node.ObjectNode;
Ray Milkeyf7cb4012015-07-20 13:01:07 -070032import com.google.common.net.UrlEscapers;
Ray Milkey2b217142014-12-15 09:24:24 -080033
34import static com.google.common.base.Preconditions.checkNotNull;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070035import static org.onlab.util.Tools.nullIsIllegal;
Jayasree Ghosh44929b72016-10-18 03:10:21 +053036import static org.onlab.util.Tools.nullIsNotFound;
Ray Milkey2b217142014-12-15 09:24:24 -080037
38/**
39 * Intent JSON codec.
40 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080041public final class IntentCodec extends JsonCodec<Intent> {
Ray Milkey2b217142014-12-15 09:24:24 -080042
Ray Milkeyb82c42b2015-06-30 09:42:20 -070043 protected static final String TYPE = "type";
44 protected static final String ID = "id";
45 protected static final String APP_ID = "appId";
Ray Milkeyb82c42b2015-06-30 09:42:20 -070046 protected static final String STATE = "state";
47 protected static final String PRIORITY = "priority";
48 protected static final String RESOURCES = "resources";
Luca Prete670ac5d2017-02-03 15:55:43 -080049 protected static final String RESOURCE_GROUP = "resourceGroup";
Ray Milkeyb82c42b2015-06-30 09:42:20 -070050 protected static final String MISSING_MEMBER_MESSAGE =
51 " member is required in Intent";
Jayasree Ghosh44929b72016-10-18 03:10:21 +053052 private static final String E_APP_ID_NOT_FOUND =
53 "Application ID is not found";
Ray Milkeyb82c42b2015-06-30 09:42:20 -070054
Ray Milkey2b217142014-12-15 09:24:24 -080055 @Override
56 public ObjectNode encode(Intent intent, CodecContext context) {
57 checkNotNull(intent, "Intent cannot be null");
Ray Milkeyf7cb4012015-07-20 13:01:07 -070058
Ray Milkey2b217142014-12-15 09:24:24 -080059 final ObjectNode result = context.mapper().createObjectNode()
Ray Milkeyb82c42b2015-06-30 09:42:20 -070060 .put(TYPE, intent.getClass().getSimpleName())
61 .put(ID, intent.id().toString())
Ray Milkeyf7cb4012015-07-20 13:01:07 -070062 .put(APP_ID, UrlEscapers.urlPathSegmentEscaper()
63 .escape(intent.appId().name()));
Luca Prete670ac5d2017-02-03 15:55:43 -080064 if (intent.resourceGroup() != null) {
65 result.put(RESOURCE_GROUP, intent.resourceGroup().toString());
66 }
Ray Milkey2b217142014-12-15 09:24:24 -080067
Ray Milkeyb82c42b2015-06-30 09:42:20 -070068 final ArrayNode jsonResources = result.putArray(RESOURCES);
Ray Milkey2b217142014-12-15 09:24:24 -080069
Sho SHIMIZUd7d18002015-01-21 14:37:14 -080070 for (final NetworkResource resource : intent.resources()) {
71 jsonResources.add(resource.toString());
Ray Milkey2b217142014-12-15 09:24:24 -080072 }
Ray Milkey1534f8d2015-05-13 15:42:50 -070073
74 IntentService service = context.getService(IntentService.class);
75 IntentState state = service.getIntentState(intent.key());
Ray Milkeyccab22d2015-05-18 13:24:50 -070076 if (state != null) {
Ray Milkeyb82c42b2015-06-30 09:42:20 -070077 result.put(STATE, state.toString());
Ray Milkeyccab22d2015-05-18 13:24:50 -070078 }
Ray Milkey1534f8d2015-05-13 15:42:50 -070079
Ray Milkey2b217142014-12-15 09:24:24 -080080 return result;
81 }
Ray Milkeyb82c42b2015-06-30 09:42:20 -070082
83 @Override
84 public Intent decode(ObjectNode json, CodecContext context) {
85 checkNotNull(json, "JSON cannot be null");
86
87 String type = nullIsIllegal(json.get(TYPE),
88 TYPE + MISSING_MEMBER_MESSAGE).asText();
89
90 if (type.equals(PointToPointIntent.class.getSimpleName())) {
91 return context.codec(PointToPointIntent.class).decode(json, context);
92 } else if (type.equals(HostToHostIntent.class.getSimpleName())) {
93 return context.codec(HostToHostIntent.class).decode(json, context);
Chiara Contolia8f69ff2016-07-28 01:06:07 +090094 } else if (type.equals(SinglePointToMultiPointIntent.class.getSimpleName())) {
95 return context.codec(SinglePointToMultiPointIntent.class).decode(json, context);
Ray Milkeyb82c42b2015-06-30 09:42:20 -070096 }
97
98 throw new IllegalArgumentException("Intent type "
99 + type + " is not supported");
100 }
101
102 /**
103 * Extracts base intent specific attributes from a JSON object
104 * and adds them to a builder.
105 *
106 * @param json root JSON object
107 * @param context code context
108 * @param builder builder to use for storing the attributes
109 */
110 public static void intentAttributes(ObjectNode json, CodecContext context,
111 Intent.Builder builder) {
Ray Milkeyf7cb4012015-07-20 13:01:07 -0700112 String appId = nullIsIllegal(json.get(IntentCodec.APP_ID),
113 IntentCodec.APP_ID + IntentCodec.MISSING_MEMBER_MESSAGE).asText();
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700114 CoreService service = context.getService(CoreService.class);
Jayasree Ghosh44929b72016-10-18 03:10:21 +0530115 builder.appId(nullIsNotFound(service.getAppId(appId), IntentCodec.E_APP_ID_NOT_FOUND));
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700116
117 JsonNode priorityJson = json.get(IntentCodec.PRIORITY);
118 if (priorityJson != null) {
119 builder.priority(priorityJson.asInt());
120 }
Luca Prete670ac5d2017-02-03 15:55:43 -0800121
122 JsonNode resourceGroup = json.get(IntentCodec.RESOURCE_GROUP);
123 if (resourceGroup != null) {
124 String resourceGroupId = resourceGroup.asText();
125 builder.resourceGroup(ResourceGroup.of(
126 Long.parseUnsignedLong(resourceGroupId.substring(2), 16)
127 ));
128 }
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700129 }
Ray Milkey2b217142014-12-15 09:24:24 -0800130}