Java Code Examples for org.onosproject.net.link.LinkService#getLinks()

The following examples show how to use org.onosproject.net.link.LinkService#getLinks() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LinksWebResource.java    From onos with Apache License 2.0 6 votes vote down vote up
/**
 * Gets infrastructure links.
 * Returns array of all links, or links for the specified device or port.
 * @onos.rsModel LinksGet
 * @param deviceId  (optional) device identifier
 * @param port      (optional) port number
 * @param direction (optional) direction qualifier
 * @return 200 OK with array of all links, or links for the specified device or port
 */
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getLinks(@QueryParam("device") String deviceId,
                         @QueryParam("port") String port,
                         @QueryParam("direction") String direction) {
    LinkService service = get(LinkService.class);
    Iterable<Link> links;

    if (deviceId != null && port != null) {
        links = getConnectPointLinks(new ConnectPoint(deviceId(deviceId),
                                                      portNumber(port)),
                                     direction, service);
    } else if (deviceId != null) {
        links = getDeviceLinks(deviceId(deviceId), direction, service);
    } else {
        links = service.getLinks();
    }
    return ok(encodeArray(Link.class, "links", links)).build();
}
 
Example 2
Source File: LinksWebResource.java    From onos with Apache License 2.0 5 votes vote down vote up
private Iterable<Link> getConnectPointLinks(ConnectPoint point,
                                            String direction,
                                            LinkService service) {
    Direction dir = direction != null ?
            Direction.valueOf(direction.toUpperCase()) : Direction.ALL;
    switch (dir) {
        case INGRESS:
            return service.getIngressLinks(point);
        case EGRESS:
            return service.getEgressLinks(point);
        default:
            return service.getLinks(point);
    }
}
 
Example 3
Source File: LinksListCommand.java    From onos with Apache License 2.0 5 votes vote down vote up
@Override
protected void doExecute() {
    LinkService service = get(LinkService.class);
    Iterable<Link> links = uri != null ?
            service.getDeviceLinks(deviceId(uri)) : service.getLinks();
    if (outputJson()) {
        print("%s", json(this, links));
    } else {
        Tools.stream(links)
            .sorted(Comparator.comparing(link -> linkKey(link).toString()))
            .forEach(link -> {
            print(linkString(link));
        });
    }
}
 
Example 4
Source File: VirtualNetworkLinkManagerTest.java    From onos with Apache License 2.0 5 votes vote down vote up
/**
 * Tests querying for links using a null connect point.
 */
@Test(expected = NullPointerException.class)
public void testGetLinksByNullId() {
    manager.registerTenantId(TenantId.tenantId(tenantIdValue1));
    VirtualNetwork virtualNetwork = manager.createVirtualNetwork(TenantId.tenantId(tenantIdValue1));
    LinkService linkService = manager.get(virtualNetwork.id(), LinkService.class);

    // test the getLinks() method with a null connect point.
    linkService.getLinks(null);
}