本文整理汇总了Java中net.floodlightcontroller.topology.ITopologyService.getPorts方法的典型用法代码示例。如果您正苦于以下问题:Java ITopologyService.getPorts方法的具体用法?Java ITopologyService.getPorts怎么用?Java ITopologyService.getPorts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.floodlightcontroller.topology.ITopologyService
的用法示例。
在下文中一共展示了ITopologyService.getPorts方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: retrieve
import net.floodlightcontroller.topology.ITopologyService; //导入方法依赖的package包/类
@Get("json")
public List<NodePortTuple> retrieve() {
List<NodePortTuple> result = new ArrayList<NodePortTuple>();
IOFSwitchService switchService =
(IOFSwitchService) getContext().getAttributes().
get(IOFSwitchService.class.getCanonicalName());
ITopologyService topologyService =
(ITopologyService) getContext().getAttributes().
get(ITopologyService.class.getCanonicalName());
if (switchService == null || topologyService == null)
return result;
Set<DatapathId> switches = switchService.getAllSwitchDpids();
if (switches == null) return result;
for(DatapathId sw: switches) {
Set<OFPort> ports = topologyService.getPorts(sw);
if (ports == null) continue;
for(OFPort p: ports) {
result.add(new NodePortTuple(sw, p));
}
}
return result;
}
示例2: retrieve
import net.floodlightcontroller.topology.ITopologyService; //导入方法依赖的package包/类
@Get("json")
public List<NodePortTuple> retrieve() {
List<NodePortTuple> result = new ArrayList<NodePortTuple>();
IFloodlightProviderService floodlightProvider =
(IFloodlightProviderService)getContext().getAttributes().
get(IFloodlightProviderService.class.getCanonicalName());
ITopologyService topology=
(ITopologyService)getContext().getAttributes().
get(ITopologyService.class.getCanonicalName());
if (floodlightProvider == null || topology == null)
return result;
Set<Long> switches = floodlightProvider.getAllSwitchDpids();
if (switches == null) return result;
for(long sw: switches) {
Set<Short> ports = topology.getPorts(sw);
if (ports == null) continue;
for(short p: ports) {
result.add(new NodePortTuple(sw, p));
}
}
return result;
}