blob: 957ecf25f62467f767d0d7319a66ba8b4fd72747 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 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
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.core.ApplicationId;
19import org.onosproject.net.DeviceId;
tom8bb16062014-09-12 14:47:46 -070020
Brian O'Connor72cb19a2015-01-16 16:14:41 -080021import java.util.concurrent.Future;
22
tom8bb16062014-09-12 14:47:46 -070023/**
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 */
30public interface FlowRuleService {
31
32 /**
Brian O'Connor72cb19a2015-01-16 16:14:41 -080033 * The topic used for obtaining globally unique ids.
34 */
35 static String FLOW_OP_TOPIC = "flow-ops-ids";
36
37 /**
tom9b4030d2014-10-06 10:39:03 -070038 * Returns the number of flow rules in the system.
39 *
40 * @return flow rule count
41 */
42 int getFlowRuleCount();
43
44 /**
tom8bb16062014-09-12 14:47:46 -070045 * Returns the collection of flow entries applied on the specified device.
tom4d0c6632014-09-15 23:27:01 -070046 * This will include flow rules which may not yet have been applied to
47 * the device.
tom8bb16062014-09-12 14:47:46 -070048 *
49 * @param deviceId device identifier
50 * @return collection of flow rules
51 */
alshabib1c319ff2014-10-04 20:29:09 -070052 Iterable<FlowEntry> getFlowEntries(DeviceId deviceId);
tom8bb16062014-09-12 14:47:46 -070053
tom73d6d1e2014-09-17 20:08:01 -070054 // TODO: add createFlowRule factory method and execute operations method
55
tom8bb16062014-09-12 14:47:46 -070056 /**
tom4d0c6632014-09-15 23:27:01 -070057 * Applies the specified flow rules onto their respective devices. These
58 * flow rules will be retained by the system and re-applied anytime the
59 * device reconnects to the controller.
tom8bb16062014-09-12 14:47:46 -070060 *
61 * @param flowRules one or more flow rules
tom8bb16062014-09-12 14:47:46 -070062 */
alshabib219ebaa2014-09-22 15:41:24 -070063 void applyFlowRules(FlowRule... flowRules);
tom8bb16062014-09-12 14:47:46 -070064
65 /**
tom4d0c6632014-09-15 23:27:01 -070066 * Removes the specified flow rules from their respective devices. If the
67 * device is not presently connected to the controller, these flow will
68 * be removed once the device reconnects.
alshabib369d2942014-09-12 17:59:35 -070069 *
70 * @param flowRules one or more flow rules
71 * throws SomeKindOfException that indicates which ones were removed and
72 * which ones failed
73 */
74 void removeFlowRules(FlowRule... flowRules);
75
alshabiba68eb962014-09-24 20:34:13 -070076 /**
77 * Removes all rules by id.
78 *
79 * @param appId id to remove
80 */
81 void removeFlowRulesById(ApplicationId appId);
82
83 /**
84 * Returns a list of rules with this application id.
85 *
86 * @param id the id to look up
87 * @return collection of flow rules
88 */
89 Iterable<FlowRule> getFlowRulesById(ApplicationId id);
tom4d0c6632014-09-15 23:27:01 -070090
alshabib902d41b2014-10-07 16:52:05 -070091 /**
alshabibaa7e7de2014-11-12 19:20:44 -080092 * Returns a list of rules filterd by application and group id.
93 *
94 * @param appId the application id to lookup
95 * @param groupId the groupid to lookup
96 * @return collection of flow rules
97 */
98 Iterable<FlowRule> getFlowRulesByGroupId(ApplicationId appId, short groupId);
99
100 /**
alshabib902d41b2014-10-07 16:52:05 -0700101 * Applies a batch operation of FlowRules.
102 *
Yuta HIGUCHI5c947272014-11-03 21:39:21 -0800103 * @param batch batch operation to apply
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800104 * @return future indicating the state of the batch operation, due to the
105 * deprecation of this api the future will immediately return
alshabib902d41b2014-10-07 16:52:05 -0700106 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800107 @Deprecated
alshabib902d41b2014-10-07 16:52:05 -0700108 Future<CompletedBatchOperation> applyBatch(FlowRuleBatchOperation batch);
alshabib58747a62014-10-07 11:05:30 -0700109
alshabib369d2942014-09-12 17:59:35 -0700110 /**
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800111 * Applies a batch operation of FlowRules.
112 *
113 * @param ops batch operation to apply
114 */
115 void apply(FlowRuleOperations ops);
116
117 /**
tom8bb16062014-09-12 14:47:46 -0700118 * Adds the specified flow rule listener.
119 *
120 * @param listener flow rule listener
121 */
122 void addListener(FlowRuleListener listener);
123
124 /**
125 * Removes the specified flow rule listener.
126 *
127 * @param listener flow rule listener
128 */
129 void removeListener(FlowRuleListener listener);
tom8bb16062014-09-12 14:47:46 -0700130}