blob: d56518a6a6aecfd69a0315bf2201cd68d660f5c8 [file] [log] [blame]
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -08003 *
4 * 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
7 *
8 * 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.
15 */
16package org.onosproject.net.group;
17
18import org.onosproject.core.ApplicationId;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070019import org.onosproject.event.ListenerService;
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080020import org.onosproject.net.DeviceId;
21
22/**
23 * Service for create/update/delete "group" in the devices.
24 * Flow entries can point to a "group" defined in the devices that enables
25 * to represent additional methods of forwarding like load-balancing or
26 * failover among different group of ports or multicast to all ports
27 * specified in a group.
28 * "group" can also be used for grouping common actions of different flows,
29 * so that in some scenarios only one group entry required to be modified
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -080030 * for all the referencing flow entries instead of modifying all of them.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080031 *
32 * This implements semantics of a distributed authoritative group store
33 * where the master copy of the groups lies with the controller and
34 * the devices hold only the 'cached' copy.
35 */
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070036public interface GroupService
37 extends ListenerService<GroupEvent, GroupListener> {
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080038
39 /**
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -080040 * Creates a group in the specified device with the provided buckets.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080041 * This API provides an option for application to associate a cookie
42 * while creating a group, so that applications can look-up the
43 * groups based on the cookies. These Groups will be retained by
44 * the core system and re-applied if any groups found missing in the
45 * device when it reconnects. This API would immediately return after
46 * submitting the request locally or to a remote Master controller
47 * instance. As a response to this API invocation, GROUP_ADDED or
48 * GROUP_ADD_FAILED notifications would be provided along with cookie
49 * depending on the result of the operation on the device in the
50 * data plane. The caller may also use "getGroup" API to get the
51 * Group object created as part of this request.
52 *
53 * @param groupDesc group creation parameters
54 *
55 */
56 void addGroup(GroupDescription groupDesc);
57
58 /**
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -080059 * Returns a group object associated to an application cookie.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080060 *
61 * NOTE1: The presence of group object in the system does not
62 * guarantee that the "group" is actually created in device.
63 * GROUP_ADDED notification would confirm the creation of
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -080064 * this group in data plane.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080065 *
66 * @param deviceId device identifier
67 * @param appCookie application cookie to be used for lookup
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080068 * @return group associated with the application cookie or
69 * NULL if Group is not found for the provided cookie
70 */
71 Group getGroup(DeviceId deviceId, GroupKey appCookie);
72
73 /**
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -080074 * Appends buckets to existing group. The caller can optionally
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080075 * associate a new cookie during this updation. GROUP_UPDATED or
76 * GROUP_UPDATE_FAILED notifications would be provided along with
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -080077 * cookie depending on the result of the operation on the device.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080078 *
79 * @param deviceId device identifier
80 * @param oldCookie cookie to be used to retrieve the existing group
81 * @param buckets immutable list of group bucket to be added
82 * @param newCookie immutable cookie to be used post update operation
83 * @param appId Application Id
84 */
85 void addBucketsToGroup(DeviceId deviceId,
86 GroupKey oldCookie,
87 GroupBuckets buckets,
88 GroupKey newCookie,
89 ApplicationId appId);
90
91 /**
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -080092 * Removes buckets from existing group. The caller can optionally
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080093 * associate a new cookie during this updation. GROUP_UPDATED or
94 * GROUP_UPDATE_FAILED notifications would be provided along with
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -080095 * cookie depending on the result of the operation on the device.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -080096 *
97 * @param deviceId device identifier
98 * @param oldCookie cookie to be used to retrieve the existing group
99 * @param buckets immutable list of group bucket to be removed
100 * @param newCookie immutable cookie to be used post update operation
101 * @param appId Application Id
102 */
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -0800103 void removeBucketsFromGroup(DeviceId deviceId,
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800104 GroupKey oldCookie,
105 GroupBuckets buckets,
106 GroupKey newCookie,
107 ApplicationId appId);
108
109 /**
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -0800110 * Deletes a group associated to an application cookie.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800111 * GROUP_DELETED or GROUP_DELETE_FAILED notifications would be
112 * provided along with cookie depending on the result of the
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -0800113 * operation on the device.
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800114 *
115 * @param deviceId device identifier
116 * @param appCookie application cookie to be used for lookup
117 * @param appId Application Id
118 */
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -0800119 void removeGroup(DeviceId deviceId, GroupKey appCookie, ApplicationId appId);
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800120
121 /**
Srikanth Vavilapalli0599d512015-01-30 12:57:56 -0800122 * Retrieves all groups created by an application in the specified device
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800123 * as seen by current controller instance.
124 *
125 * @param deviceId device identifier
126 * @param appId application id
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800127 * @return collection of immutable group objects created by the application
128 */
Srikanth Vavilapalli45c27c82015-01-30 12:57:56 -0800129 Iterable<Group> getGroups(DeviceId deviceId, ApplicationId appId);
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800130
131 /**
Jonathan Hart32600692015-03-09 10:38:40 -0700132 * Returns all groups associated with the given device.
133 *
134 * @param deviceId device ID to get groups for
135 * @return iterable of device's groups
136 */
137 Iterable<Group> getGroups(DeviceId deviceId);
138
Srikanth Vavilapalli56db94f2015-01-22 22:30:17 -0800139}