blob: 8566ef5b1d4123de7a82748cc4981521af3fda0e [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.statistic;
alshabiba43aa252014-10-21 21:36:41 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.net.ConnectPoint;
19import org.onosproject.net.flow.FlowEntry;
20import org.onosproject.net.flow.FlowRule;
alshabiba43aa252014-10-21 21:36:41 -070021
22import java.util.Set;
23
24/**
25 * Store to house the computed statistics.
26 */
27public interface StatisticStore {
28
29 /**
30 * Lay the foundation for receiving flow stats for this rule.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080031 *
Brian O'Connorabafb502014-12-02 22:26:20 -080032 * @param rule a {@link org.onosproject.net.flow.FlowRule}
alshabiba43aa252014-10-21 21:36:41 -070033 */
34 void prepareForStatistics(FlowRule rule);
35
36 /**
37 * Remove entries associated with this rule.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080038 *
Brian O'Connorabafb502014-12-02 22:26:20 -080039 * @param rule {@link org.onosproject.net.flow.FlowRule}
alshabiba43aa252014-10-21 21:36:41 -070040 */
41 void removeFromStatistics(FlowRule rule);
42
43 /**
44 * Adds a stats observation for a flow rule.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080045 *
Brian O'Connorabafb502014-12-02 22:26:20 -080046 * @param rule a {@link org.onosproject.net.flow.FlowEntry}
alshabiba43aa252014-10-21 21:36:41 -070047 */
48 void addOrUpdateStatistic(FlowEntry rule);
49
50 /**
51 * Fetches the current observed stats values.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080052 *
alshabiba43aa252014-10-21 21:36:41 -070053 * @param connectPoint the port to fetch information for
54 * @return set of current flow rules
55 */
56 Set<FlowEntry> getCurrentStatistic(ConnectPoint connectPoint);
57
58 /**
59 * Fetches the current observed stats values.
Sho SHIMIZUcf6090b2014-11-13 17:34:46 -080060 *
alshabiba43aa252014-10-21 21:36:41 -070061 * @param connectPoint the port to fetch information for
62 * @return set of current values
63 */
64 Set<FlowEntry> getPreviousStatistic(ConnectPoint connectPoint);
65}