blob: 9bb4c2eae3bdddb99ce094ac895b85a974a71f78 [file] [log] [blame]
Ray Milkey1f95bd32014-12-10 11:11:00 -08001/*
2 * Copyright 2014 Open Networking Laboratory
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.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 */
32public class HostCodec extends AnnotatedCodec<Host> {
33
34 @Override
35 public ObjectNode encode(Host host, CodecContext context) {
36 checkNotNull(host, "Host cannot be null");
37 final JsonCodec<HostLocation> locationCodec = new HostLocationCodec();
38 final ObjectNode result = context.mapper().createObjectNode()
39 .put("id", host.id().toString())
40 .put("mac", host.mac().toString())
41 .put("vlan", host.vlan().toString());
42
43 final ArrayNode jsonIpAddresses = result.putArray("ipAddresses");
44 for (final IpAddress ipAddress : host.ipAddresses()) {
45 jsonIpAddresses.add(ipAddress.toString());
46 }
47 result.set("ipAddresses", jsonIpAddresses);
48 result.set("location", locationCodec.encode(host.location(), context));
49
50 return annotate(result, host, context);
51 }
52
53}
54