blob: 711b089ff870df1f7a246ad5fbd71c7af033747e [file] [log] [blame]
Jonathan Hart41349e92015-02-09 14:14:02 -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 Hart2da1e602015-02-18 19:09:24 -080016package org.onosproject.routing;
Jonathan Hart41349e92015-02-09 14:14:02 -080017
Pingping Line28ae4c2015-03-13 11:37:03 -070018import org.onlab.packet.IpAddress;
Jonathan Hart4cb39882015-08-12 23:50:55 -040019import org.onosproject.routing.config.BgpConfig;
Jonathan Hart6344f572015-12-15 08:26:25 -080020import org.onosproject.routing.config.RouterConfig;
Pingping Line28ae4c2015-03-13 11:37:03 -070021
Jonathan Hart66018992015-07-31 11:19:27 -070022import java.util.Collection;
23
Jonathan Hart41349e92015-02-09 14:14:02 -080024/**
25 * Provides a way of interacting with the RIB management component.
26 */
27public interface RoutingService {
28
Jonathan Hart66018992015-07-31 11:19:27 -070029 String ROUTER_APP_ID = "org.onosproject.router";
30
Jonathan Hart4cb39882015-08-12 23:50:55 -040031 Class<BgpConfig> CONFIG_CLASS = BgpConfig.class;
Jonathan Hart6344f572015-12-15 08:26:25 -080032 Class<RouterConfig> ROUTER_CONFIG_CLASS = RouterConfig.class;
Jonathan Hart4cb39882015-08-12 23:50:55 -040033
Jonathan Hart41349e92015-02-09 14:14:02 -080034 /**
Pingping Line28ae4c2015-03-13 11:37:03 -070035 * Starts the routing service.
36 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070037 void start();
Pingping Line28ae4c2015-03-13 11:37:03 -070038
39 /**
40 * Adds FIB listener.
41 *
42 * @param fibListener listener to send FIB updates to
43 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070044 void addFibListener(FibListener fibListener);
Pingping Line28ae4c2015-03-13 11:37:03 -070045
46 /**
Jonathan Hart41349e92015-02-09 14:14:02 -080047 * Stops the routing service.
48 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070049 void stop();
Jonathan Hart41349e92015-02-09 14:14:02 -080050
51 /**
Jonathan Hartde15e1c2016-02-03 10:51:50 -080052 * Gets all IPv4 routes from the RIB.
Jonathan Hart41349e92015-02-09 14:14:02 -080053 *
Jonathan Hartde15e1c2016-02-03 10:51:50 -080054 * @return the IPv4 routes
Jonathan Hart41349e92015-02-09 14:14:02 -080055 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070056 Collection<RouteEntry> getRoutes4();
Jonathan Hart41349e92015-02-09 14:14:02 -080057
58 /**
Jonathan Hartde15e1c2016-02-03 10:51:50 -080059 * Gets all IPv6 routes from the RIB.
Jonathan Hart41349e92015-02-09 14:14:02 -080060 *
Jonathan Hartde15e1c2016-02-03 10:51:50 -080061 * @return the IPv6 routes
Jonathan Hart41349e92015-02-09 14:14:02 -080062 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070063 Collection<RouteEntry> getRoutes6();
Pingping Line28ae4c2015-03-13 11:37:03 -070064
65 /**
Pingping Line28ae4c2015-03-13 11:37:03 -070066 * Finds out the route entry which has the longest matchable IP prefix.
67 *
68 * @param ipAddress IP address used to find out longest matchable IP prefix
69 * @return a route entry which has the longest matchable IP prefix if
70 * found, otherwise null
71 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -070072 RouteEntry getLongestMatchableRouteEntry(IpAddress ipAddress);
Pingping Line28ae4c2015-03-13 11:37:03 -070073
Jonathan Hart41349e92015-02-09 14:14:02 -080074}