blob: 5f8ca9d6a11819803779d49a3c61c06d8a63498c [file] [log] [blame]
Ray Milkey1f95bd32014-12-10 11:11:00 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Ray Milkey1f95bd32014-12-10 11:11:00 -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.onlab.packet.IpAddress;
19import org.onosproject.codec.CodecContext;
20import org.onosproject.codec.JsonCodec;
21import org.onosproject.net.Host;
22import org.onosproject.net.HostLocation;
23
24import com.fasterxml.jackson.databind.node.ArrayNode;
25import com.fasterxml.jackson.databind.node.ObjectNode;
26
27import static com.google.common.base.Preconditions.checkNotNull;
28
29/**
30 * Host JSON codec.
31 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080032public final class HostCodec extends AnnotatedCodec<Host> {
Ray Milkey1f95bd32014-12-10 11:11:00 -080033
34 @Override
35 public ObjectNode encode(Host host, CodecContext context) {
36 checkNotNull(host, "Host cannot be null");
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080037 final JsonCodec<HostLocation> locationCodec =
38 context.codec(HostLocation.class);
Ray Milkey1f95bd32014-12-10 11:11:00 -080039 final ObjectNode result = context.mapper().createObjectNode()
40 .put("id", host.id().toString())
41 .put("mac", host.mac().toString())
sdn5e935452016-08-30 04:12:54 -070042 .put("vlan", host.vlan().toString())
Jonghwan Hyun2c95acf2018-03-14 16:47:34 -070043 .put("innerVlan", host.innerVlan().toString())
44 .put("outerTpid", host.tpid().toString())
sdn5e935452016-08-30 04:12:54 -070045 .put("configured", host.configured());
Ray Milkey1f95bd32014-12-10 11:11:00 -080046
47 final ArrayNode jsonIpAddresses = result.putArray("ipAddresses");
48 for (final IpAddress ipAddress : host.ipAddresses()) {
49 jsonIpAddresses.add(ipAddress.toString());
50 }
51 result.set("ipAddresses", jsonIpAddresses);
Charles Chancd06c692017-04-27 20:46:06 -070052
53 final ArrayNode jsonLocations = result.putArray("locations");
54 for (final HostLocation location : host.locations()) {
55 jsonLocations.add(locationCodec.encode(location, context));
56 }
57 result.set("locations", jsonLocations);
Ray Milkey1f95bd32014-12-10 11:11:00 -080058
59 return annotate(result, host, context);
60 }
61
62}
63