blob: ad2f08b4d83bfb226b560ca9fabc9a63e3fbb842 [file] [log] [blame]
Jian Li23c8be22018-02-13 11:34:15 +09001/*
2 * Copyright 2018-present Open Networking Foundation
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.openstacknode.codec;
17
Jian Lie6312162018-03-21 21:41:00 +090018import com.fasterxml.jackson.databind.JsonNode;
19import com.fasterxml.jackson.databind.node.ArrayNode;
Jian Li23c8be22018-02-13 11:34:15 +090020import com.fasterxml.jackson.databind.node.ObjectNode;
21import org.onlab.packet.IpAddress;
22import org.onosproject.codec.CodecContext;
23import org.onosproject.codec.JsonCodec;
24import org.onosproject.net.DeviceId;
Jian Li789fadb2018-07-10 13:59:47 +090025import org.onosproject.net.behaviour.ControllerInfo;
26import org.onosproject.openstacknode.api.DefaultOpenstackNode;
Daniel Parkd02d7bd2018-08-23 23:04:31 +090027import org.onosproject.openstacknode.api.DpdkConfig;
Jian Li23c8be22018-02-13 11:34:15 +090028import org.onosproject.openstacknode.api.NodeState;
Jian Li27841662018-04-14 01:59:47 +090029import org.onosproject.openstacknode.api.OpenstackAuth;
Jian Li23c8be22018-02-13 11:34:15 +090030import org.onosproject.openstacknode.api.OpenstackNode;
Jian Lie6312162018-03-21 21:41:00 +090031import org.onosproject.openstacknode.api.OpenstackPhyInterface;
Daniel Parkdeefa702018-07-17 17:55:51 +090032import org.onosproject.openstacknode.api.OpenstackSshAuth;
Jian Li23c8be22018-02-13 11:34:15 +090033import org.slf4j.Logger;
34
Jian Lie6312162018-03-21 21:41:00 +090035import java.util.ArrayList;
36import java.util.List;
37import java.util.stream.IntStream;
38
Jian Li23c8be22018-02-13 11:34:15 +090039import static com.google.common.base.Preconditions.checkNotNull;
40import static org.onlab.util.Tools.nullIsIllegal;
Jian Li27841662018-04-14 01:59:47 +090041import static org.onosproject.openstacknode.api.Constants.CONTROLLER;
Jian Li23c8be22018-02-13 11:34:15 +090042import static org.onosproject.openstacknode.api.Constants.DATA_IP;
43import static org.onosproject.openstacknode.api.Constants.GATEWAY;
44import static org.onosproject.openstacknode.api.Constants.HOST_NAME;
45import static org.onosproject.openstacknode.api.Constants.MANAGEMENT_IP;
46import static org.onosproject.openstacknode.api.Constants.UPLINK_PORT;
47import static org.onosproject.openstacknode.api.Constants.VLAN_INTF_NAME;
48import static org.slf4j.LoggerFactory.getLogger;
49
50/**
51 * Openstack node codec used for serializing and de-serializing JSON string.
52 */
53public final class OpenstackNodeCodec extends JsonCodec<OpenstackNode> {
54
55 private final Logger log = getLogger(getClass());
56
57 private static final String TYPE = "type";
58 private static final String INTEGRATION_BRIDGE = "integrationBridge";
Jian Li5ca0be82018-02-27 13:08:04 +090059 private static final String STATE = "state";
Jian Lie6312162018-03-21 21:41:00 +090060 private static final String PHYSICAL_INTERFACES = "phyIntfs";
Jian Li789fadb2018-07-10 13:59:47 +090061 private static final String CONTROLLERS = "controllers";
Jian Li27841662018-04-14 01:59:47 +090062 private static final String AUTHENTICATION = "authentication";
Jian Li6d410362018-08-17 09:41:08 +090063 private static final String END_POINT = "endpoint";
Daniel Parkdeefa702018-07-17 17:55:51 +090064 private static final String SSH_AUTH = "sshAuth";
Daniel Parkd02d7bd2018-08-23 23:04:31 +090065 private static final String DPDK_CONFIG = "dpdkConfig";
Jian Li23c8be22018-02-13 11:34:15 +090066
67 private static final String MISSING_MESSAGE = " is required in OpenstackNode";
68
69 @Override
70 public ObjectNode encode(OpenstackNode node, CodecContext context) {
71 checkNotNull(node, "Openstack node cannot be null");
72
73 ObjectNode result = context.mapper().createObjectNode()
74 .put(HOST_NAME, node.hostname())
75 .put(TYPE, node.type().name())
Jian Li92d42fc2018-05-25 16:23:49 +090076 .put(STATE, node.state().name())
Daniel Parkd02d7bd2018-08-23 23:04:31 +090077 .put(MANAGEMENT_IP, node.managementIp().toString());
Jian Li23c8be22018-02-13 11:34:15 +090078
79 OpenstackNode.NodeType type = node.type();
80
81 if (type == OpenstackNode.NodeType.GATEWAY) {
82 result.put(UPLINK_PORT, node.uplinkPort());
83 }
84
Jian Lie3141542018-08-13 18:05:43 +090085 if (type == OpenstackNode.NodeType.CONTROLLER) {
Jian Li6d410362018-08-17 09:41:08 +090086 result.put(END_POINT, node.endpoint());
Jian Li27841662018-04-14 01:59:47 +090087 }
88
Jian Lie3141542018-08-13 18:05:43 +090089 if (node.intgBridge() != null) {
90 result.put(INTEGRATION_BRIDGE, node.intgBridge().toString());
91 }
92
Jian Li23c8be22018-02-13 11:34:15 +090093 if (node.vlanIntf() != null) {
94 result.put(VLAN_INTF_NAME, node.vlanIntf());
95 }
96
97 if (node.dataIp() != null) {
98 result.put(DATA_IP, node.dataIp().toString());
99 }
100
Jian Li5b402c72018-02-27 14:27:34 +0900101 // TODO: need to find a way to not refer to ServiceDirectory from
102 // DefaultOpenstackNode
Jian Li5ca0be82018-02-27 13:08:04 +0900103
Jian Lie6312162018-03-21 21:41:00 +0900104 ArrayNode phyIntfs = context.mapper().createArrayNode();
105 node.phyIntfs().forEach(phyIntf -> {
106 ObjectNode phyIntfJson = context.codec(OpenstackPhyInterface.class).encode(phyIntf, context);
107 phyIntfs.add(phyIntfJson);
108 });
109 result.set(PHYSICAL_INTERFACES, phyIntfs);
110
Jian Li789fadb2018-07-10 13:59:47 +0900111 ArrayNode controllers = context.mapper().createArrayNode();
112 node.controllers().forEach(controller -> {
113 ObjectNode controllerJson = context.codec(ControllerInfo.class).encode(controller, context);
114 controllers.add(controllerJson);
115 });
116
Jian Li27841662018-04-14 01:59:47 +0900117 if (node.authentication() != null) {
118 ObjectNode authJson = context.codec(OpenstackAuth.class)
119 .encode(node.authentication(), context);
Daniel Parkdeefa702018-07-17 17:55:51 +0900120 result.set(AUTHENTICATION, authJson);
121 }
122
123 if (node.sshAuthInfo() != null) {
124 ObjectNode sshAuthJson = context.codec(OpenstackSshAuth.class)
125 .encode(node.sshAuthInfo(), context);
126 result.set(SSH_AUTH, sshAuthJson);
Jian Li27841662018-04-14 01:59:47 +0900127 }
128
Daniel Parkd02d7bd2018-08-23 23:04:31 +0900129 if (node.dpdkConfig() != null) {
130 ObjectNode dpdkConfigJson = context.codec(DpdkConfig.class)
131 .encode(node.dpdkConfig(), context);
132 result.set(DPDK_CONFIG, dpdkConfigJson);
Daniel Park7e8c4d82018-08-13 23:47:49 +0900133 }
134
Jian Li23c8be22018-02-13 11:34:15 +0900135 return result;
136 }
137
138 @Override
139 public OpenstackNode decode(ObjectNode json, CodecContext context) {
140 if (json == null || !json.isObject()) {
141 return null;
142 }
143
144 String hostname = nullIsIllegal(json.get(HOST_NAME).asText(),
145 HOST_NAME + MISSING_MESSAGE);
146 String type = nullIsIllegal(json.get(TYPE).asText(),
147 TYPE + MISSING_MESSAGE);
Jian Li92d42fc2018-05-25 16:23:49 +0900148 String mIp = nullIsIllegal(json.get(MANAGEMENT_IP).asText(),
149 MANAGEMENT_IP + MISSING_MESSAGE);
Jian Li23c8be22018-02-13 11:34:15 +0900150
151 DefaultOpenstackNode.Builder nodeBuilder = DefaultOpenstackNode.builder()
152 .hostname(hostname)
153 .type(OpenstackNode.NodeType.valueOf(type))
Jian Li92d42fc2018-05-25 16:23:49 +0900154 .state(NodeState.INIT)
155 .managementIp(IpAddress.valueOf(mIp));
Jian Li23c8be22018-02-13 11:34:15 +0900156
157 if (type.equals(GATEWAY)) {
158 nodeBuilder.uplinkPort(nullIsIllegal(json.get(UPLINK_PORT).asText(),
159 UPLINK_PORT + MISSING_MESSAGE));
160 }
Jian Lie3141542018-08-13 18:05:43 +0900161 if (type.equals(CONTROLLER)) {
Jian Li92d42fc2018-05-25 16:23:49 +0900162 String endPoint = nullIsIllegal(json.get(END_POINT).asText(),
163 END_POINT + MISSING_MESSAGE);
Jian Li6d410362018-08-17 09:41:08 +0900164 nodeBuilder.endpoint(endPoint);
Jian Li27841662018-04-14 01:59:47 +0900165 }
Jian Li23c8be22018-02-13 11:34:15 +0900166 if (json.get(VLAN_INTF_NAME) != null) {
167 nodeBuilder.vlanIntf(json.get(VLAN_INTF_NAME).asText());
168 }
169 if (json.get(DATA_IP) != null) {
170 nodeBuilder.dataIp(IpAddress.valueOf(json.get(DATA_IP).asText()));
171 }
172
Jian Lie3141542018-08-13 18:05:43 +0900173 JsonNode intBridgeJson = json.get(INTEGRATION_BRIDGE);
174 if (intBridgeJson != null) {
175 nodeBuilder.intgBridge(DeviceId.deviceId(intBridgeJson.asText()));
176 }
177
Jian Lie6312162018-03-21 21:41:00 +0900178 // parse physical interfaces
179 List<OpenstackPhyInterface> phyIntfs = new ArrayList<>();
180 JsonNode phyIntfsJson = json.get(PHYSICAL_INTERFACES);
181 if (phyIntfsJson != null) {
Jian Li27841662018-04-14 01:59:47 +0900182
183 final JsonCodec<OpenstackPhyInterface>
184 phyIntfCodec = context.codec(OpenstackPhyInterface.class);
185
Jian Lie6312162018-03-21 21:41:00 +0900186 IntStream.range(0, phyIntfsJson.size()).forEach(i -> {
187 ObjectNode intfJson = get(phyIntfsJson, i);
188 phyIntfs.add(phyIntfCodec.decode(intfJson, context));
189 });
190 }
191 nodeBuilder.phyIntfs(phyIntfs);
192
Jian Li789fadb2018-07-10 13:59:47 +0900193 // parse customized controllers
194 List<ControllerInfo> controllers = new ArrayList<>();
195 JsonNode controllersJson = json.get(CONTROLLERS);
196 if (controllersJson != null) {
197
198 final JsonCodec<ControllerInfo>
199 controllerCodec = context.codec(ControllerInfo.class);
200
201 IntStream.range(0, controllersJson.size()).forEach(i -> {
202 ObjectNode controllerJson = get(controllersJson, i);
203 controllers.add(controllerCodec.decode(controllerJson, context));
204 });
205 }
206 nodeBuilder.controllers(controllers);
207
Jian Li27841662018-04-14 01:59:47 +0900208 // parse authentication
209 JsonNode authJson = json.get(AUTHENTICATION);
Daniel Parkd02d7bd2018-08-23 23:04:31 +0900210 if (authJson != null) {
Jian Li27841662018-04-14 01:59:47 +0900211
212 final JsonCodec<OpenstackAuth> authCodec = context.codec(OpenstackAuth.class);
213
214 OpenstackAuth auth = authCodec.decode((ObjectNode) authJson.deepCopy(), context);
215 nodeBuilder.authentication(auth);
216 }
217
Daniel Parkdeefa702018-07-17 17:55:51 +0900218 // parse ssh authentication
219 JsonNode sshAuthJson = json.get(SSH_AUTH);
Daniel Parkd02d7bd2018-08-23 23:04:31 +0900220 if (sshAuthJson != null) {
Daniel Parkdeefa702018-07-17 17:55:51 +0900221 final JsonCodec<OpenstackSshAuth> sshAuthJsonCodec = context.codec(OpenstackSshAuth.class);
222
223 OpenstackSshAuth sshAuth = sshAuthJsonCodec.decode((ObjectNode) sshAuthJson.deepCopy(), context);
224 nodeBuilder.sshAuthInfo(sshAuth);
225 }
226
Daniel Parkd02d7bd2018-08-23 23:04:31 +0900227 JsonNode dpdkConfigJson = json.get(DPDK_CONFIG);
228 if (dpdkConfigJson != null) {
229 final JsonCodec<DpdkConfig> dpdkConfigJsonCodec = context.codec(DpdkConfig.class);
230
231 DpdkConfig dpdkConfig = dpdkConfigJsonCodec.decode((ObjectNode) dpdkConfigJson.deepCopy(), context);
232 nodeBuilder.dpdkConfig(dpdkConfig);
233 }
234
Jian Li23c8be22018-02-13 11:34:15 +0900235 log.trace("node is {}", nodeBuilder.build().toString());
236
237 return nodeBuilder.build();
238 }
239}