blob: 1d9e60e434d3118ae3d9b5dae910d9c9868a0d39 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
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;
tombe988312014-09-19 18:38:47 -070017
Daniele Moro43ac2892021-07-15 17:02:59 +020018import org.onosproject.core.ApplicationId;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.net.DeviceId;
Ray Milkey7bf273c2017-09-27 16:15:15 -070020import org.onosproject.net.flow.oldbatch.FlowRuleBatchEvent;
21import org.onosproject.net.flow.oldbatch.FlowRuleBatchOperation;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.store.Store;
tombe988312014-09-19 18:38:47 -070023
Thomas Vachuskaa8e74772018-02-26 11:33:35 -080024import java.util.List;
25
tombe988312014-09-19 18:38:47 -070026/**
tome4729872014-09-23 00:37:37 -070027 * Manages inventory of flow rules; not intended for direct use.
tombe988312014-09-19 18:38:47 -070028 */
Madan Jampani117aaae2014-10-23 10:04:05 -070029public interface FlowRuleStore extends Store<FlowRuleBatchEvent, FlowRuleStoreDelegate> {
tombe988312014-09-19 18:38:47 -070030
31 /**
Thomas Vachuskaa8e74772018-02-26 11:33:35 -080032 * Returns the number of flow rules in the store.
tom9b4030d2014-10-06 10:39:03 -070033 *
34 * @return number of flow rules
35 */
36 int getFlowRuleCount();
37
38 /**
Thomas Vachuskaa8e74772018-02-26 11:33:35 -080039 * Returns the number of flow rules for the given device in the store.
40 *
41 * @param deviceId device identifier
42 * @return number of flow rules for the given device
43 */
44 default int getFlowRuleCount(DeviceId deviceId) {
45 return 0;
46 }
47
48 /**
Jordan Haltermanb81fdc12019-03-04 18:12:20 -080049 * Returns the number of flow rules in the given state for the given device.
50 *
51 * @param deviceId the device identifier
52 * @param state the state for which to count flow rules
53 * @return number of flow rules in the given state for the given device
54 */
55 default int getFlowRuleCount(DeviceId deviceId, FlowEntry.FlowEntryState state) {
56 return 0;
57 }
58
59 /**
alshabiba68eb962014-09-24 20:34:13 -070060 * Returns the stored flow.
tom9b4030d2014-10-06 10:39:03 -070061 *
alshabiba68eb962014-09-24 20:34:13 -070062 * @param rule the rule to look for
63 * @return a flow rule
64 */
alshabib1c319ff2014-10-04 20:29:09 -070065 FlowEntry getFlowEntry(FlowRule rule);
alshabiba68eb962014-09-24 20:34:13 -070066
67 /**
tombe988312014-09-19 18:38:47 -070068 * Returns the flow entries associated with a device.
69 *
70 * @param deviceId the device ID
71 * @return the flow entries
72 */
alshabib1c319ff2014-10-04 20:29:09 -070073 Iterable<FlowEntry> getFlowEntries(DeviceId deviceId);
tombe988312014-09-19 18:38:47 -070074
75 /**
Thomas Vachuska4b420772014-10-30 16:46:17 -070076 * // TODO: Better description of method behavior.
alshabib219ebaa2014-09-22 15:41:24 -070077 * Stores a new flow rule without generating events.
tombe988312014-09-19 18:38:47 -070078 *
79 * @param rule the flow rule to add
Sho SHIMIZUbe63b232015-06-30 10:57:58 -070080 * @deprecated in Cardinal Release
tombe988312014-09-19 18:38:47 -070081 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -080082 @Deprecated
Madan Jampani117aaae2014-10-23 10:04:05 -070083 void storeFlowRule(FlowRule rule);
84
85 /**
86 * Stores a batch of flow rules.
Thomas Vachuska4b420772014-10-30 16:46:17 -070087 *
Madan Jampani117aaae2014-10-23 10:04:05 -070088 * @param batchOperation batch of flow rules.
Yuta HIGUCHI885868f2014-11-13 19:12:07 -080089 * A batch can contain flow rules for a single device only.
Brian O'Connor72cb19a2015-01-16 16:14:41 -080090 *
Madan Jampani117aaae2014-10-23 10:04:05 -070091 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -080092 void storeBatch(FlowRuleBatchOperation batchOperation);
Madan Jampani117aaae2014-10-23 10:04:05 -070093
94 /**
95 * Invoked on the completion of a storeBatch operation.
Thomas Vachuska4b420772014-10-30 16:46:17 -070096 *
97 * @param event flow rule batch event
Madan Jampani117aaae2014-10-23 10:04:05 -070098 */
99 void batchOperationComplete(FlowRuleBatchEvent event);
alshabib219ebaa2014-09-22 15:41:24 -0700100
101 /**
alshabib1c319ff2014-10-04 20:29:09 -0700102 * Marks a flow rule for deletion. Actual deletion will occur
103 * when the provider indicates that the flow has been removed.
alshabib219ebaa2014-09-22 15:41:24 -0700104 *
105 * @param rule the flow rule to delete
106 */
Madan Jampani117aaae2014-10-23 10:04:05 -0700107 void deleteFlowRule(FlowRule rule);
tombe988312014-09-19 18:38:47 -0700108
109 /**
110 * Stores a new flow rule, or updates an existing entry.
111 *
112 * @param rule the flow rule to add or update
113 * @return flow_added event, or null if just an update
114 */
alshabib1c319ff2014-10-04 20:29:09 -0700115 FlowRuleEvent addOrUpdateFlowRule(FlowEntry rule);
tombe988312014-09-19 18:38:47 -0700116
117 /**
alshabib1c319ff2014-10-04 20:29:09 -0700118 * @param rule the flow entry to remove
tombe988312014-09-19 18:38:47 -0700119 * @return flow_removed event, or null if nothing removed
120 */
alshabib1c319ff2014-10-04 20:29:09 -0700121 FlowRuleEvent removeFlowRule(FlowEntry rule);
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700122
123 /**
Charles Chan93fa7272016-01-26 22:27:02 -0800124 * Marks a flow rule as PENDING_ADD during retry.
125 *
126 * Emits flow_update event if the state is changed
127 *
128 * @param rule the flow rule that is retrying
129 * @return flow_updated event, or null if nothing updated
130 */
131 FlowRuleEvent pendingFlowRule(FlowEntry rule);
132
133 /**
Charles Chan0c7c43b2016-01-14 17:39:20 -0800134 * Removes all flow entries of given device from store.
135 *
136 * @param deviceId device id
137 */
Victor Silva139bca42016-08-18 11:46:35 -0300138 default void purgeFlowRule(DeviceId deviceId) {}
139
140 /**
Daniele Moro43ac2892021-07-15 17:02:59 +0200141 * Removes all flow entries of given device and application ID from store.
142 *
143 * @param deviceId device id
144 * @param appId application id
145 * @return true if operation was successful, false otherwise.
146 */
147 boolean purgeFlowRules(DeviceId deviceId, ApplicationId appId);
148
149 /**
Victor Silva139bca42016-08-18 11:46:35 -0300150 * Removes all flow entries from store.
151 */
152 void purgeFlowRules();
Charles Chan0c7c43b2016-01-14 17:39:20 -0800153
154 /**
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700155 * Updates the flow table statistics of the specified device using
156 * the given statistics.
157 *
158 * @param deviceId device identifier
159 * @param tableStats list of table statistics
160 * @return ready to send event describing what occurred;
161 */
162 FlowRuleEvent updateTableStatistics(DeviceId deviceId,
163 List<TableStatisticsEntry> tableStats);
164
165 /**
166 * Returns the flow table statistics associated with a device.
167 *
168 * @param deviceId the device ID
169 * @return the flow table statistics
170 */
171 Iterable<TableStatisticsEntry> getTableStatistics(DeviceId deviceId);
Patryk Konopka7e40c012017-06-06 13:38:06 +0200172
173 /**
174 * Returns number of flow rules in ADDED state for specified device.
175 *
176 * @param deviceId the device ID
177 * @return number of flow rules in ADDED state
Jordan Haltermanb81fdc12019-03-04 18:12:20 -0800178 * @deprecated since 2.1
Patryk Konopka7e40c012017-06-06 13:38:06 +0200179 */
Jordan Haltermanb81fdc12019-03-04 18:12:20 -0800180 @Deprecated
Patryk Konopka7e40c012017-06-06 13:38:06 +0200181 long getActiveFlowRuleCount(DeviceId deviceId);
tombe988312014-09-19 18:38:47 -0700182}