blob: baa1b1e695b0bb7dc729ac6dcbfd58ec2444c6f9 [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/**
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070036 * Compute paths in the network graph.
Ray Milkey19ffea32015-01-28 10:03:06 -080037 */
38@Path("paths")
39public class PathsWebResource extends AbstractWebResource {
40
Ray Milkey19ffea32015-01-28 10:03:06 -080041 /**
42 * Determines if the id appears to be the id of a host.
Ray Milkey5d915f42015-08-13 10:27:53 -070043 * Host id format is 00:00:00:00:00:01/-1
Ray Milkey19ffea32015-01-28 10:03:06 -080044 *
45 * @param id id string
46 * @return HostId if the id is valid, null otherwise
47 */
48 private HostId isHostId(String id) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070049 return id.matches("..:..:..:..:..:../.*") ? HostId.hostId(id) : null;
Ray Milkey19ffea32015-01-28 10:03:06 -080050 }
51
52 /**
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070053 * Get all shortest paths between any two hosts or devices.
54 * Returns array of all shortest paths between any two elements.
Ray Milkey19ffea32015-01-28 10:03:06 -080055 *
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070056 * @param src source identifier
57 * @param dst destination identifier
Ray Milkey19ffea32015-01-28 10:03:06 -080058 * @return path data
59 */
60 @GET
61 @Produces(MediaType.APPLICATION_JSON)
62 @Path("{src}/{dst}")
63 public Response getPath(@PathParam("src") String src,
64 @PathParam("dst") String dst) {
65 PathService pathService = get(PathService.class);
66
67 ElementId srcElement = isHostId(src);
68 ElementId dstElement = isHostId(dst);
69
70 if (srcElement == null) {
71 // Doesn't look like a host, assume it is a device
72 srcElement = DeviceId.deviceId(src);
73 }
74
75 if (dstElement == null) {
76 // Doesn't look like a host, assume it is a device
77 dstElement = DeviceId.deviceId(dst);
78 }
79
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070080 Set<org.onosproject.net.Path> paths = pathService.getPaths(srcElement, dstElement);
81 ObjectNode root = encodeArray(org.onosproject.net.Path.class, "paths", paths);
Ray Milkey19ffea32015-01-28 10:03:06 -080082 return ok(root).build();
83 }
84
85}