blob: 52a4bd4778e22e798f579c93e3fc9cfb1baebd7c [file] [log] [blame]
sanghoshin94872a12015-10-16 18:04:34 +09001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
sanghoshin94872a12015-10-16 18:04:34 +09003 *
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 */
sangho93447f12016-02-24 00:33:22 +090016package org.onosproject.openstackinterface.web;
sanghoshin94872a12015-10-16 18:04:34 +090017
18import com.fasterxml.jackson.databind.JsonNode;
19import com.fasterxml.jackson.databind.node.ObjectNode;
20import org.onosproject.codec.CodecContext;
21import org.onosproject.codec.JsonCodec;
sangho93447f12016-02-24 00:33:22 +090022import org.onosproject.openstackinterface.OpenstackNetwork;
sanghoshin94872a12015-10-16 18:04:34 +090023import org.slf4j.Logger;
24import org.slf4j.LoggerFactory;
25
26/**
27 * Implementation of the OpenstackNetwork Codec.
28 *
29 */
30public class OpenstackNetworkCodec extends JsonCodec<OpenstackNetwork> {
31
sangho0c2a3da2016-02-16 13:39:07 +090032 private final Logger log = LoggerFactory.getLogger(getClass());
sanghoshin94872a12015-10-16 18:04:34 +090033
34 private static final String NETWORK = "network";
35 private static final String NAME = "name";
36 private static final String TENANT_ID = "tenant_id";
37 private static final String SEGMENTATION_ID = "provider:segmentation_id";
38 private static final String NETWORK_TYPE = "provider:network_type";
39 private static final String ID = "id";
40
41 @Override
42 public OpenstackNetwork decode(ObjectNode json, CodecContext context) {
43
44 JsonNode networkInfo = json.get(NETWORK);
sanghoshinf25d2e02015-11-11 23:07:17 +090045 if (networkInfo == null) {
46 networkInfo = json;
47 }
sanghoshin94872a12015-10-16 18:04:34 +090048
49 String name = networkInfo.path(NAME).asText();
50 String tenantId = networkInfo.path(TENANT_ID).asText();
51 String id = networkInfo.path(ID).asText();
52
53 OpenstackNetwork.Builder onb = OpenstackNetwork.builder();
54 onb.name(name)
55 .tenantId(tenantId)
56 .id(id);
57
Hyunsun Moonf7895202016-01-12 12:21:48 -080058 if (networkInfo.path(NETWORK_TYPE).isMissingNode()) {
Hyunsun Moon91866132016-02-01 23:30:58 -080059 log.debug("Network {} has no network type, ignore it.", name);
Hyunsun Moonf7895202016-01-12 12:21:48 -080060 return null;
sanghoshin94872a12015-10-16 18:04:34 +090061 }
62
Hyunsun Moonf7895202016-01-12 12:21:48 -080063 String networkType = networkInfo.path(NETWORK_TYPE).asText();
64 try {
65 onb.networkType(OpenstackNetwork.NetworkType.valueOf(networkType.toUpperCase()));
66 } catch (IllegalArgumentException e) {
Hyunsun Moon91866132016-02-01 23:30:58 -080067 log.debug("Network {} has unsupported network type {}, ignore it.",
Hyunsun Moonf7895202016-01-12 12:21:48 -080068 name, networkType);
69 return null;
70 }
71
72 onb.segmentId(networkInfo.path(SEGMENTATION_ID).asText());
73
sanghoshin94872a12015-10-16 18:04:34 +090074 return onb.build();
75 }
sanghoshin94872a12015-10-16 18:04:34 +090076}