blob: 0ca0ae885ba12d9ff2c2daffd163ac5c623dd0b5 [file] [log] [blame]
Ray Milkey82e50312015-01-22 17:01:42 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ray Milkey82e50312015-01-22 17:01:42 -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;
20import org.onosproject.net.topology.Topology;
21
22import com.fasterxml.jackson.databind.node.ObjectNode;
23
24import static com.google.common.base.Preconditions.checkNotNull;
25
26/**
27 * Topology JSON codec.
28 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080029public final class TopologyCodec extends JsonCodec<Topology> {
Ray Milkey82e50312015-01-22 17:01:42 -080030
31 @Override
32 public ObjectNode encode(Topology topology, CodecContext context) {
33 checkNotNull(topology, "Topology cannot be null");
34
35 return context.mapper().createObjectNode()
36 .put("time", topology.time())
37 .put("devices", topology.deviceCount())
38 .put("links", topology.linkCount())
39 .put("clusters", topology.clusterCount());
40 }
41}