blob: 37a7c545ef02b2bc144f073e3e0d03df4bfd6d5e [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.flow;
tom8bb16062014-09-12 14:47:46 -070017
Sangsik Yoonb1b823f2016-05-16 18:55:39 +090018import com.google.common.collect.Iterables;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.core.ApplicationId;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070020import org.onosproject.event.ListenerService;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.net.DeviceId;
tom8bb16062014-09-12 14:47:46 -070022
23/**
24 * Service for injecting flow rules into the environment and for obtaining
tom4d0c6632014-09-15 23:27:01 -070025 * information about flow rules already in the environment. This implements
26 * semantics of a distributed authoritative flow table where the master copy
27 * of the flow rules lies with the controller and the devices hold only the
28 * 'cached' copy.
tom8bb16062014-09-12 14:47:46 -070029 */
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070030public interface FlowRuleService
31 extends ListenerService<FlowRuleEvent, FlowRuleListener> {
tom8bb16062014-09-12 14:47:46 -070032
33 /**
Brian O'Connor72cb19a2015-01-16 16:14:41 -080034 * The topic used for obtaining globally unique ids.
35 */
Sho SHIMIZUe2952e42015-09-11 17:11:21 -070036 String FLOW_OP_TOPIC = "flow-ops-ids";
Brian O'Connor72cb19a2015-01-16 16:14:41 -080037
38 /**
tom9b4030d2014-10-06 10:39:03 -070039 * Returns the number of flow rules in the system.
40 *
41 * @return flow rule count
42 */
43 int getFlowRuleCount();
44
45 /**
tom8bb16062014-09-12 14:47:46 -070046 * Returns the collection of flow entries applied on the specified device.
tom4d0c6632014-09-15 23:27:01 -070047 * This will include flow rules which may not yet have been applied to
48 * the device.
tom8bb16062014-09-12 14:47:46 -070049 *
50 * @param deviceId device identifier
51 * @return collection of flow rules
52 */
alshabib1c319ff2014-10-04 20:29:09 -070053 Iterable<FlowEntry> getFlowEntries(DeviceId deviceId);
tom8bb16062014-09-12 14:47:46 -070054
55 /**
Sangsik Yoonb1b823f2016-05-16 18:55:39 +090056 * Returns a list of rules filtered by device id and flow live type.
57 *
58 * @param deviceId the device id to lookup
59 * @param liveType the flow live type to lookup
60 * @return collection of flow entries
61 */
62 default Iterable<FlowEntry> getFlowEntriesByLiveType(DeviceId deviceId,
63 FlowEntry.FlowLiveType liveType) {
64 return Iterables.filter(getFlowEntries(deviceId), fe -> fe.liveType() == liveType);
65 }
66
67 // TODO: add createFlowRule factory method and execute operations method
68
69 /**
tom4d0c6632014-09-15 23:27:01 -070070 * Applies the specified flow rules onto their respective devices. These
71 * flow rules will be retained by the system and re-applied anytime the
72 * device reconnects to the controller.
tom8bb16062014-09-12 14:47:46 -070073 *
74 * @param flowRules one or more flow rules
tom8bb16062014-09-12 14:47:46 -070075 */
alshabib219ebaa2014-09-22 15:41:24 -070076 void applyFlowRules(FlowRule... flowRules);
tom8bb16062014-09-12 14:47:46 -070077
78 /**
Kavitha Alagesanc69c66a2016-06-15 14:26:04 +053079 * Purges all the flow rules on the specified device.
80 * @param deviceId device identifier
81 */
82 void purgeFlowRules(DeviceId deviceId);
83
84 /**
tom4d0c6632014-09-15 23:27:01 -070085 * Removes the specified flow rules from their respective devices. If the
86 * device is not presently connected to the controller, these flow will
87 * be removed once the device reconnects.
alshabib369d2942014-09-12 17:59:35 -070088 *
89 * @param flowRules one or more flow rules
alshabib369d2942014-09-12 17:59:35 -070090 */
91 void removeFlowRules(FlowRule... flowRules);
92
alshabiba68eb962014-09-24 20:34:13 -070093 /**
Jonathan Hart3fc7e832016-05-23 15:41:11 -070094 * Removes all rules submitted by a particular application.
alshabiba68eb962014-09-24 20:34:13 -070095 *
Jonathan Hart3fc7e832016-05-23 15:41:11 -070096 * @param appId ID of application whose flows will be removed
alshabiba68eb962014-09-24 20:34:13 -070097 */
98 void removeFlowRulesById(ApplicationId appId);
99
100 /**
Jonathan Hart3fc7e832016-05-23 15:41:11 -0700101 * Returns a list of rules with this application ID.
alshabiba68eb962014-09-24 20:34:13 -0700102 *
Jonathan Hart3fc7e832016-05-23 15:41:11 -0700103 * @param id the application ID to look up
alshabiba68eb962014-09-24 20:34:13 -0700104 * @return collection of flow rules
105 */
Bharath Thiruveedula99849dc2016-11-17 22:04:38 +0530106 @Deprecated
alshabiba68eb962014-09-24 20:34:13 -0700107 Iterable<FlowRule> getFlowRulesById(ApplicationId id);
tom4d0c6632014-09-15 23:27:01 -0700108
alshabib902d41b2014-10-07 16:52:05 -0700109 /**
Bharath Thiruveedula99849dc2016-11-17 22:04:38 +0530110 * Returns a list of rules with this application ID.
111 *
112 * @param id the application ID to look up
113 * @return collection of flow rules
114 */
115 Iterable<FlowEntry> getFlowEntriesById(ApplicationId id);
116
117 /**
Jonathan Hart5acc88a2016-05-23 10:50:20 -0700118 * Returns a list of rules filtered by application and group id.
119 * <p>
120 * Note that the group concept here is simply a logical grouping of flows.
121 * This is not the same as a group in the
122 * {@link org.onosproject.net.group.GroupService}, and this method will not
123 * return flows that are mapped to a particular {@link org.onosproject.net.group.Group}.
124 * </p>
alshabibaa7e7de2014-11-12 19:20:44 -0800125 *
Jonathan Hart5acc88a2016-05-23 10:50:20 -0700126 * @param appId the application ID to look up
127 * @param groupId the group ID to look up
alshabibaa7e7de2014-11-12 19:20:44 -0800128 * @return collection of flow rules
129 */
130 Iterable<FlowRule> getFlowRulesByGroupId(ApplicationId appId, short groupId);
131
132 /**
alshabib902d41b2014-10-07 16:52:05 -0700133 * Applies a batch operation of FlowRules.
134 *
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800135 * @param ops batch operation to apply
136 */
137 void apply(FlowRuleOperations ops);
138
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700139 /**
140 * Returns the collection of flow table statistics of the specified device.
141 *
142 * @param deviceId device identifier
143 * @return collection of flow table statistics
144 */
145 Iterable<TableStatisticsEntry> getFlowTableStatistics(DeviceId deviceId);
tom8bb16062014-09-12 14:47:46 -0700146}