blob: 32eb3cbffa5fb1765439108c4691279981743240 [file] [log] [blame]
/**
* Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior
* University
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
**/
package org.openflow.protocol.factory;
import java.util.List;
import org.jboss.netty.buffer.ChannelBuffer;
import org.openflow.protocol.OFType;
import org.openflow.protocol.statistics.OFStatistics;
import org.openflow.protocol.statistics.OFStatisticsType;
/**
* The interface to factories used for retrieving OFStatistics instances. All
* methods are expected to be thread-safe.
* @author David Erickson (daviderickson@cs.stanford.edu)
*/
public interface OFStatisticsFactory {
/**
* Retrieves an OFStatistics instance corresponding to the specified
* OFStatisticsType
* @param t the type of the containing OFMessage, only accepts statistics
* request or reply
* @param st the type of the OFStatistics to be retrieved
* @return an OFStatistics instance
*/
public OFStatistics getStatistics(OFType t, OFStatisticsType st);
/**
* Attempts to parse and return all OFStatistics contained in the given
* ByteBuffer, beginning at the ByteBuffer's position, and ending at
* position+length.
* @param t the type of the containing OFMessage, only accepts statistics
* request or reply
* @param st the type of the OFStatistics to be retrieved
* @param data the ChannelBuffer to parse for OpenFlow Statistics
* @param length the number of Bytes to examine for OpenFlow Statistics
* @return a list of OFStatistics instances
*/
public List<OFStatistics> parseStatistics(OFType t,
OFStatisticsType st, ChannelBuffer data, int length);
/**
* Attempts to parse and return all OFStatistics contained in the given
* ByteBuffer, beginning at the ByteBuffer's position, and ending at
* position+length.
* @param t the type of the containing OFMessage, only accepts statistics
* request or reply
* @param st the type of the OFStatistics to be retrieved
* @param data the ChannelBuffer to parse for OpenFlow Statistics
* @param length the number of Bytes to examine for OpenFlow Statistics
* @param limit the maximum number of messages to return, 0 means no limit
* @return a list of OFStatistics instances
*/
public List<OFStatistics> parseStatistics(OFType t,
OFStatisticsType st, ChannelBuffer data, int length, int limit);
}