blob: 2d37f87b8b6bc8cf8fbfa6a45e1d24308a569745 [file] [log] [blame]
alshabib1d2bc402015-07-31 17:04:11 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
alshabib1d2bc402015-07-31 17:04:11 -07003 *
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 */
alshabib10c810b2015-08-18 16:59:04 -070016package org.onosproject.net.meter;
alshabib1d2bc402015-07-31 17:04:11 -070017
Daniele Moro43ac2892021-07-15 17:02:59 +020018import org.onosproject.core.ApplicationId;
alshabib1d2bc402015-07-31 17:04:11 -070019import org.onosproject.event.ListenerService;
alshabib70aaa1b2015-09-25 14:30:59 -070020import org.onosproject.net.DeviceId;
alshabib1d2bc402015-07-31 17:04:11 -070021
alshabib58fe6dc2015-08-19 17:16:13 -070022import java.util.Collection;
23
alshabib1d2bc402015-07-31 17:04:11 -070024/**
25 * Service for add/updating and removing meters. Meters are
26 * are assigned to flow to rate limit them and provide a certain
27 * quality of service.
28 */
29public interface MeterService
30 extends ListenerService<MeterEvent, MeterListener> {
31
32 /**
33 * Adds a meter to the system and performs it installation.
34 *
alshabibe1248b62015-08-20 17:21:55 -070035 * @param meter a meter
36 * @return a meter (with a meter id)
alshabib1d2bc402015-07-31 17:04:11 -070037 */
alshabibe1248b62015-08-20 17:21:55 -070038 Meter submit(MeterRequest meter);
alshabib1d2bc402015-07-31 17:04:11 -070039
40 /**
41 * Remove a meter from the system and the dataplane.
42 *
43 * @param meter a meter to remove
alshabibe1248b62015-08-20 17:21:55 -070044 * @param meterId the meter id of the meter to remove.
Wailok Shum79919522021-08-22 19:35:34 +080045 * @deprecated in onos-2.5, replace MeterId with MeterCellId
alshabib1d2bc402015-07-31 17:04:11 -070046 */
Wailok Shum79919522021-08-22 19:35:34 +080047 @Deprecated
alshabibe1248b62015-08-20 17:21:55 -070048 void withdraw(MeterRequest meter, MeterId meterId);
alshabib1d2bc402015-07-31 17:04:11 -070049
50 /**
Wailok Shum79919522021-08-22 19:35:34 +080051 * Remove a meter from the system and the dataplane.
52 *
53 * @param meter a meter to remove
54 * @param meterCellId the meter cell id of the meter to remove.
55 */
56 void withdraw(MeterRequest meter, MeterCellId meterCellId);
57
58 /**
alshabib1d2bc402015-07-31 17:04:11 -070059 * Fetch the meter by the meter id.
60 *
alshabib70aaa1b2015-09-25 14:30:59 -070061 * @param deviceId a device id
alshabib1d2bc402015-07-31 17:04:11 -070062 * @param id a meter id
63 * @return a meter
Wailok Shum79919522021-08-22 19:35:34 +080064 * @deprecated in onos-2.5, Replace MeterId with MeterCellId
alshabib1d2bc402015-07-31 17:04:11 -070065 */
Wailok Shum79919522021-08-22 19:35:34 +080066 @Deprecated
alshabib70aaa1b2015-09-25 14:30:59 -070067 Meter getMeter(DeviceId deviceId, MeterId id);
alshabib1d2bc402015-07-31 17:04:11 -070068
69 /**
Wailok Shum79919522021-08-22 19:35:34 +080070 * Fetch the meter by the meter id.
71 *
72 * @param deviceId a device id
73 * @param id a meter cell id
74 * @return a meter
75 */
76 Meter getMeter(DeviceId deviceId, MeterCellId id);
77
78 /**
alshabib58fe6dc2015-08-19 17:16:13 -070079 * Fetches all the meters.
80 *
81 * @return a collection of meters
82 */
83 Collection<Meter> getAllMeters();
84
Jian Li1932b932016-01-03 00:35:40 -080085 /**
86 * Fetches the meters by the device id.
87 *
88 * @param deviceId a device id
89 * @return a collection of meters
90 */
91 Collection<Meter> getMeters(DeviceId deviceId);
Pier Luigibdcd9672017-10-13 13:54:48 +020092
93 /**
pierventrec0914ec2021-08-27 15:25:02 +020094 * Fetches the meters by the device id and scope.
95 *
96 * @param deviceId a device id
97 * @param scope meters scope
98 * @return a collection of meters
99 */
100 Collection<Meter> getMeters(DeviceId deviceId, MeterScope scope);
101
102 /**
Pier Luigibdcd9672017-10-13 13:54:48 +0200103 * Allocates a new meter id in the system.
104 *
105 * @param deviceId the device id
106 * @return the allocated meter id, null if there is an internal error
107 * or there are no meter ids available
Wailok Shumf013a782021-07-26 16:51:01 +0800108 * @deprecated in onos-2.5
Pier Luigibdcd9672017-10-13 13:54:48 +0200109 */
Wailok Shumf013a782021-07-26 16:51:01 +0800110 @Deprecated
Pier Luigibdcd9672017-10-13 13:54:48 +0200111 MeterId allocateMeterId(DeviceId deviceId);
112
113 /**
114 * Frees the given meter id.
115 *
116 * @param deviceId the device id
117 * @param meterId the id to be freed
Wailok Shumf013a782021-07-26 16:51:01 +0800118 * @deprecated in onos-2.5
Pier Luigibdcd9672017-10-13 13:54:48 +0200119 */
Wailok Shumf013a782021-07-26 16:51:01 +0800120 @Deprecated
Pier Luigibdcd9672017-10-13 13:54:48 +0200121 void freeMeterId(DeviceId deviceId, MeterId meterId);
Andrea Campanella23250502020-05-13 15:36:57 +0200122
123 /**
124 * Purges all the meters on the specified device.
125 * @param deviceId device identifier
126 */
Daniele Moro43ac2892021-07-15 17:02:59 +0200127 default void purgeMeters(DeviceId deviceId) {
Andrea Campanella23250502020-05-13 15:36:57 +0200128 //Default implementation does nothing
129 }
130
Daniele Moro43ac2892021-07-15 17:02:59 +0200131 /**
132 * Purges all the meters on the given device and for the given application.
133 *
134 * @param deviceId device identifier
135 * @param appId application identifier
136 */
137 default void purgeMeters(DeviceId deviceId, ApplicationId appId) {
138 throw new UnsupportedOperationException("purgeMeter not implemented");
139 }
140
alshabib1d2bc402015-07-31 17:04:11 -0700141}