本文整理汇总了Java中org.projectfloodlight.openflow.protocol.OFAggregateStatsReply类的典型用法代码示例。如果您正苦于以下问题:Java OFAggregateStatsReply类的具体用法?Java OFAggregateStatsReply怎么用?Java OFAggregateStatsReply使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
OFAggregateStatsReply类属于org.projectfloodlight.openflow.protocol包,在下文中一共展示了OFAggregateStatsReply类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: aggregateStatsProcess
import org.projectfloodlight.openflow.protocol.OFAggregateStatsReply; //导入依赖的package包/类
@Override
public void aggregateStatsProcess(Dpid dpid, OFAggregateStatsReply reply) {
//magic number
if (reply.getXid() != 1126) {
return;
}
AggregateStatisticsFeature asf = new AggregateStatisticsFeature();
UnitAggregateStatistics uas =
new UnitAggregateStatistics(reply.getPacketCount().getValue(),
reply.getByteCount().getValue(), reply.getFlowCount());
Date date = new java.sql.Timestamp(Calendar.getInstance().getTime().getTime());
uas.setDate(date);
FeatureIndex fi = new FeatureIndex();
fi.setSwitchDatapathId(dpid.value());
asf.addFeatureData(fi, uas);
providerService.aggregateStatsHandler(asf);
}
示例2: serializeAggregateReply
import org.projectfloodlight.openflow.protocol.OFAggregateStatsReply; //导入依赖的package包/类
public static void serializeAggregateReply(List<OFAggregateStatsReply> aggregateReplies, JsonGenerator jGen) throws IOException, JsonProcessingException{
OFAggregateStatsReply aggregateReply = aggregateReplies.get(0); // There are only one aggregateReply from the switch
jGen.writeObjectFieldStart("aggregate");
jGen.writeStringField("version", aggregateReply.getVersion().toString()); //return the enum name
jGen.writeNumberField("flowCount", aggregateReply.getFlowCount());
jGen.writeNumberField("packetCount", aggregateReply.getPacketCount().getValue());
jGen.writeNumberField("byteCount", aggregateReply.getByteCount().getValue());
switch (aggregateReply.getVersion()) {
case OF_10:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer10.toWireValue(aggregateReply.getFlags()));
break;
case OF_11:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer11.toWireValue(aggregateReply.getFlags()));
break;
case OF_12:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer12.toWireValue(aggregateReply.getFlags()));
break;
case OF_13:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer13.toWireValue(aggregateReply.getFlags()));
break;
case OF_14:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer14.toWireValue(aggregateReply.getFlags()));
break;
default:
break;
}
jGen.writeEndObject(); // end match
}
示例3: serializeAggregateReply
import org.projectfloodlight.openflow.protocol.OFAggregateStatsReply; //导入依赖的package包/类
public static void serializeAggregateReply(List<OFAggregateStatsReply> aggregateReplies, JsonGenerator jGen) throws IOException, JsonProcessingException{
OFAggregateStatsReply aggregateReply = aggregateReplies.get(0); // There are only one aggregateReply from the switch
jGen.writeObjectFieldStart("aggregate");
jGen.writeStringField("version", aggregateReply.getVersion().toString()); //return the enum name
jGen.writeNumberField("flowCount", aggregateReply.getFlowCount());
jGen.writeNumberField("packetCount", aggregateReply.getPacketCount().getValue());
jGen.writeNumberField("byteCount", aggregateReply.getByteCount().getValue());
switch (aggregateReply.getVersion()) {
case OF_10:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer10.toWireValue(aggregateReply.getFlags()));
break;
case OF_11:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer11.toWireValue(aggregateReply.getFlags()));
break;
case OF_12:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer12.toWireValue(aggregateReply.getFlags()));
break;
case OF_13:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer13.toWireValue(aggregateReply.getFlags()));
break;
case OF_14:
jGen.writeNumberField("flags", OFStatsReplyFlagsSerializerVer14.toWireValue(aggregateReply.getFlags()));
break;
default:
break;
}
jGen.writeEndObject(); // end match
}
示例4: of
import org.projectfloodlight.openflow.protocol.OFAggregateStatsReply; //导入依赖的package包/类
public static AggregateStatistics of(OFAggregateStatsReply statsReply) {
return new AggregateStatistics(statsReply.getPacketCount(),
statsReply.getByteCount(), statsReply.getFlowCount());
}
示例5: aggregateStatsProcess
import org.projectfloodlight.openflow.protocol.OFAggregateStatsReply; //导入依赖的package包/类
/**
* Notify that the aggregate statistics event is arrived.
* @param dpid the switch where the event occured.
* @param reply the aggregate statistics.
*/
void aggregateStatsProcess(Dpid dpid, OFAggregateStatsReply reply);