blob: 07493a887a166ba122ad8fe2ac1e526125b7b49b [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
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.net.DeviceId;
Ray Milkey7bf273c2017-09-27 16:15:15 -070019import org.onosproject.net.flow.oldbatch.FlowRuleBatchEvent;
20import org.onosproject.net.flow.oldbatch.FlowRuleBatchOperation;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.store.Store;
tombe988312014-09-19 18:38:47 -070022
Thomas Vachuskaa8e74772018-02-26 11:33:35 -080023import java.util.List;
24
tombe988312014-09-19 18:38:47 -070025/**
tome4729872014-09-23 00:37:37 -070026 * Manages inventory of flow rules; not intended for direct use.
tombe988312014-09-19 18:38:47 -070027 */
Madan Jampani117aaae2014-10-23 10:04:05 -070028public interface FlowRuleStore extends Store<FlowRuleBatchEvent, FlowRuleStoreDelegate> {
tombe988312014-09-19 18:38:47 -070029
30 /**
Thomas Vachuskaa8e74772018-02-26 11:33:35 -080031 * Returns the number of flow rules in the store.
tom9b4030d2014-10-06 10:39:03 -070032 *
33 * @return number of flow rules
34 */
35 int getFlowRuleCount();
36
37 /**
Thomas Vachuskaa8e74772018-02-26 11:33:35 -080038 * Returns the number of flow rules for the given device in the store.
39 *
40 * @param deviceId device identifier
41 * @return number of flow rules for the given device
42 */
43 default int getFlowRuleCount(DeviceId deviceId) {
44 return 0;
45 }
46
47 /**
Jordan Haltermanb81fdc12019-03-04 18:12:20 -080048 * Returns the number of flow rules in the given state for the given device.
49 *
50 * @param deviceId the device identifier
51 * @param state the state for which to count flow rules
52 * @return number of flow rules in the given state for the given device
53 */
54 default int getFlowRuleCount(DeviceId deviceId, FlowEntry.FlowEntryState state) {
55 return 0;
56 }
57
58 /**
alshabiba68eb962014-09-24 20:34:13 -070059 * Returns the stored flow.
tom9b4030d2014-10-06 10:39:03 -070060 *
alshabiba68eb962014-09-24 20:34:13 -070061 * @param rule the rule to look for
62 * @return a flow rule
63 */
alshabib1c319ff2014-10-04 20:29:09 -070064 FlowEntry getFlowEntry(FlowRule rule);
alshabiba68eb962014-09-24 20:34:13 -070065
66 /**
tombe988312014-09-19 18:38:47 -070067 * Returns the flow entries associated with a device.
68 *
69 * @param deviceId the device ID
70 * @return the flow entries
71 */
alshabib1c319ff2014-10-04 20:29:09 -070072 Iterable<FlowEntry> getFlowEntries(DeviceId deviceId);
tombe988312014-09-19 18:38:47 -070073
74 /**
Thomas Vachuska4b420772014-10-30 16:46:17 -070075 * // TODO: Better description of method behavior.
alshabib219ebaa2014-09-22 15:41:24 -070076 * Stores a new flow rule without generating events.
tombe988312014-09-19 18:38:47 -070077 *
78 * @param rule the flow rule to add
Sho SHIMIZUbe63b232015-06-30 10:57:58 -070079 * @deprecated in Cardinal Release
tombe988312014-09-19 18:38:47 -070080 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -080081 @Deprecated
Madan Jampani117aaae2014-10-23 10:04:05 -070082 void storeFlowRule(FlowRule rule);
83
84 /**
85 * Stores a batch of flow rules.
Thomas Vachuska4b420772014-10-30 16:46:17 -070086 *
Madan Jampani117aaae2014-10-23 10:04:05 -070087 * @param batchOperation batch of flow rules.
Yuta HIGUCHI885868f2014-11-13 19:12:07 -080088 * A batch can contain flow rules for a single device only.
Brian O'Connor72cb19a2015-01-16 16:14:41 -080089 *
Madan Jampani117aaae2014-10-23 10:04:05 -070090 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -080091 void storeBatch(FlowRuleBatchOperation batchOperation);
Madan Jampani117aaae2014-10-23 10:04:05 -070092
93 /**
94 * Invoked on the completion of a storeBatch operation.
Thomas Vachuska4b420772014-10-30 16:46:17 -070095 *
96 * @param event flow rule batch event
Madan Jampani117aaae2014-10-23 10:04:05 -070097 */
98 void batchOperationComplete(FlowRuleBatchEvent event);
alshabib219ebaa2014-09-22 15:41:24 -070099
100 /**
alshabib1c319ff2014-10-04 20:29:09 -0700101 * Marks a flow rule for deletion. Actual deletion will occur
102 * when the provider indicates that the flow has been removed.
alshabib219ebaa2014-09-22 15:41:24 -0700103 *
104 * @param rule the flow rule to delete
105 */
Madan Jampani117aaae2014-10-23 10:04:05 -0700106 void deleteFlowRule(FlowRule rule);
tombe988312014-09-19 18:38:47 -0700107
108 /**
109 * Stores a new flow rule, or updates an existing entry.
110 *
111 * @param rule the flow rule to add or update
112 * @return flow_added event, or null if just an update
113 */
alshabib1c319ff2014-10-04 20:29:09 -0700114 FlowRuleEvent addOrUpdateFlowRule(FlowEntry rule);
tombe988312014-09-19 18:38:47 -0700115
116 /**
alshabib1c319ff2014-10-04 20:29:09 -0700117 * @param rule the flow entry to remove
tombe988312014-09-19 18:38:47 -0700118 * @return flow_removed event, or null if nothing removed
119 */
alshabib1c319ff2014-10-04 20:29:09 -0700120 FlowRuleEvent removeFlowRule(FlowEntry rule);
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700121
122 /**
Charles Chan93fa7272016-01-26 22:27:02 -0800123 * Marks a flow rule as PENDING_ADD during retry.
124 *
125 * Emits flow_update event if the state is changed
126 *
127 * @param rule the flow rule that is retrying
128 * @return flow_updated event, or null if nothing updated
129 */
130 FlowRuleEvent pendingFlowRule(FlowEntry rule);
131
132 /**
Charles Chan0c7c43b2016-01-14 17:39:20 -0800133 * Removes all flow entries of given device from store.
134 *
135 * @param deviceId device id
136 */
Victor Silva139bca42016-08-18 11:46:35 -0300137 default void purgeFlowRule(DeviceId deviceId) {}
138
139 /**
140 * Removes all flow entries from store.
141 */
142 void purgeFlowRules();
Charles Chan0c7c43b2016-01-14 17:39:20 -0800143
144 /**
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700145 * Updates the flow table statistics of the specified device using
146 * the given statistics.
147 *
148 * @param deviceId device identifier
149 * @param tableStats list of table statistics
150 * @return ready to send event describing what occurred;
151 */
152 FlowRuleEvent updateTableStatistics(DeviceId deviceId,
153 List<TableStatisticsEntry> tableStats);
154
155 /**
156 * Returns the flow table statistics associated with a device.
157 *
158 * @param deviceId the device ID
159 * @return the flow table statistics
160 */
161 Iterable<TableStatisticsEntry> getTableStatistics(DeviceId deviceId);
Patryk Konopka7e40c012017-06-06 13:38:06 +0200162
163 /**
164 * Returns number of flow rules in ADDED state for specified device.
165 *
166 * @param deviceId the device ID
167 * @return number of flow rules in ADDED state
Jordan Haltermanb81fdc12019-03-04 18:12:20 -0800168 * @deprecated since 2.1
Patryk Konopka7e40c012017-06-06 13:38:06 +0200169 */
Jordan Haltermanb81fdc12019-03-04 18:12:20 -0800170 @Deprecated
Patryk Konopka7e40c012017-06-06 13:38:06 +0200171 long getActiveFlowRuleCount(DeviceId deviceId);
tombe988312014-09-19 18:38:47 -0700172}