blob: a97a9335078766bef3dc2ca1e670793874cea406 [file] [log] [blame]
Ray Milkey19ffea32015-01-28 10:03:06 -08001/*
2 * Copyright 2015 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 */
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070016package org.onosproject.rest.resources;
Ray Milkey19ffea32015-01-28 10:03:06 -080017
18import java.util.Set;
19
20import javax.ws.rs.GET;
21import javax.ws.rs.Path;
22import javax.ws.rs.PathParam;
23import javax.ws.rs.Produces;
24import javax.ws.rs.core.MediaType;
25import javax.ws.rs.core.Response;
26
27import org.onosproject.net.DeviceId;
28import org.onosproject.net.ElementId;
29import org.onosproject.net.HostId;
30import org.onosproject.net.topology.PathService;
31
32import com.fasterxml.jackson.databind.node.ObjectNode;
Jonathan Hart9bb32ab2015-05-05 18:17:31 -070033import org.onosproject.rest.AbstractWebResource;
Ray Milkey19ffea32015-01-28 10:03:06 -080034
35/**
36 * REST resource for interacting with path calculations.
37 */
38@Path("paths")
39public class PathsWebResource extends AbstractWebResource {
40
41 // Host id format is 00:00:00:00:00:01/-1
42 private static final int VLAN_SEPARATOR_OFFSET = 17;
43 private static final int FIRST_MAC_ADDRESS_SEPARATOR_OFFSET = 2;
44 private static final int SECOND_MAC_ADDRESS_SEPARATOR_OFFSET = 5;
45 private static final int THIRD_MAC_ADDRESS_SEPARATOR_OFFSET = 8;
46
47 /**
48 * Determines if the id appears to be the id of a host.
49 *
50 * @param id id string
51 * @return HostId if the id is valid, null otherwise
52 */
53 private HostId isHostId(String id) {
54
55 if (id.length() < VLAN_SEPARATOR_OFFSET + 1 ||
56 id.charAt(FIRST_MAC_ADDRESS_SEPARATOR_OFFSET) != ':' ||
57 id.charAt(SECOND_MAC_ADDRESS_SEPARATOR_OFFSET) != ':' ||
58 id.charAt(THIRD_MAC_ADDRESS_SEPARATOR_OFFSET) != ':' ||
59 id.charAt(VLAN_SEPARATOR_OFFSET) != '/') {
60 return null;
61 }
62
63 return HostId.hostId(id);
64 }
65
66 /**
67 * Gets the paths between two elements.
68 *
69 * @param src source
70 * @param dst destination
71 * @return path data
72 */
73 @GET
74 @Produces(MediaType.APPLICATION_JSON)
75 @Path("{src}/{dst}")
76 public Response getPath(@PathParam("src") String src,
77 @PathParam("dst") String dst) {
78 PathService pathService = get(PathService.class);
79
80 ElementId srcElement = isHostId(src);
81 ElementId dstElement = isHostId(dst);
82
83 if (srcElement == null) {
84 // Doesn't look like a host, assume it is a device
85 srcElement = DeviceId.deviceId(src);
86 }
87
88 if (dstElement == null) {
89 // Doesn't look like a host, assume it is a device
90 dstElement = DeviceId.deviceId(dst);
91 }
92
93 Set<org.onosproject.net.Path> paths =
94 pathService.getPaths(srcElement, dstElement);
95 ObjectNode root =
96 encodeArray(org.onosproject.net.Path.class, "paths", paths);
97 return ok(root).build();
98 }
99
100}