blob: c970cdceb88875801435b358ee9c9da5013af040 [file] [log] [blame]
Ray Milkey19ffea32015-01-28 10:03:06 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ray Milkey19ffea32015-01-28 10:03:06 -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.Link;
21import org.onosproject.net.Path;
22
23import com.fasterxml.jackson.databind.node.ArrayNode;
24import com.fasterxml.jackson.databind.node.ObjectNode;
25
26import static com.google.common.base.Preconditions.checkNotNull;
27
28/**
29 * Path JSON codec.
30 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080031public final class PathCodec extends AnnotatedCodec<Path> {
Ray Milkey19ffea32015-01-28 10:03:06 -080032 @Override
33 public ObjectNode encode(Path path, CodecContext context) {
34 checkNotNull(path, "Path cannot be null");
35 JsonCodec<Link> codec = context.codec(Link.class);
36 ObjectNode result = context.mapper()
37 .createObjectNode()
38 .put("cost", path.cost());
39 ArrayNode jsonLinks = result.putArray("links");
40
41 for (Link link : path.links()) {
42 jsonLinks.add(codec.encode(link, context));
43 }
44
45 return annotate(result, path, context);
46 }
47}