blob: 065fd1f4df721cdea50c65b36bbcfccad9bc012d [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
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.core.ApplicationId;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070019import org.onosproject.event.ListenerService;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.net.DeviceId;
tom8bb16062014-09-12 14:47:46 -070021
22/**
23 * Service for injecting flow rules into the environment and for obtaining
tom4d0c6632014-09-15 23:27:01 -070024 * information about flow rules already in the environment. This implements
25 * semantics of a distributed authoritative flow table where the master copy
26 * of the flow rules lies with the controller and the devices hold only the
27 * 'cached' copy.
tom8bb16062014-09-12 14:47:46 -070028 */
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070029public interface FlowRuleService
30 extends ListenerService<FlowRuleEvent, FlowRuleListener> {
tom8bb16062014-09-12 14:47:46 -070031
32 /**
Brian O'Connor72cb19a2015-01-16 16:14:41 -080033 * The topic used for obtaining globally unique ids.
34 */
Sho SHIMIZUe2952e42015-09-11 17:11:21 -070035 String FLOW_OP_TOPIC = "flow-ops-ids";
Brian O'Connor72cb19a2015-01-16 16:14:41 -080036
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 *
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800103 * @param ops batch operation to apply
104 */
105 void apply(FlowRuleOperations ops);
106
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700107 /**
108 * Returns the collection of flow table statistics of the specified device.
109 *
110 * @param deviceId device identifier
111 * @return collection of flow table statistics
112 */
113 Iterable<TableStatisticsEntry> getFlowTableStatistics(DeviceId deviceId);
tom8bb16062014-09-12 14:47:46 -0700114}