Floodlight源码阅读之网络拓扑

2024-05-10 18:18

本文主要是介绍Floodlight源码阅读之网络拓扑,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在上一篇文章中介绍Floodlight怎样做拓扑发现,这篇文章介绍一下网络拓扑是怎样形成的。TopologyManager这个类负责网络拓扑的产生。这个类首先实现了IFloodlightModule这个接口,是Floodlight的一个模块。其实是实现了ILinkDiscoveryListener用于监听网络中链路的变化;还实现了IOFMessageListener用于接收和处理网络包。

和其他的Floodlight模块一样,首先看启动方法startup。

    @Overridepublic void startUp(FloodlightModuleContext context) {clearCurrentTopology();// Initialize role to floodlight provider role.this.role = floodlightProviderService.getRole();ScheduledExecutorService ses = threadPoolService.getScheduledExecutor();newInstanceTask = new SingletonTask(ses, new UpdateTopologyWorker());if (role != HARole.STANDBY) {newInstanceTask.reschedule(TOPOLOGY_COMPUTE_INTERVAL_MS, TimeUnit.MILLISECONDS);}linkDiscoveryService.addListener(this);floodlightProviderService.addOFMessageListener(OFType.PACKET_IN, this);floodlightProviderService.addHAListener(this.haListener);addRestletRoutable();}

在这个启动方法中第一行就是清理拓扑

    /*** Clears the current topology. Note that this does NOT* send out updates.*/public void clearCurrentTopology() {this.clear();linksUpdated = true;dtLinksUpdated = true;tunnelPortsUpdated = true;createNewInstance("startup");lastUpdateTime = new Date();}
clear方法清理所以内存中保存的节点链路拓扑信息。

    public void clear() {switchPorts.clear();tunnelPorts.clear();switchPortLinks.clear();portBroadcastDomainLinks.clear();directLinks.clear();}
关于这个nosql内存数据库下一章讲解。

当清理完数据后开始创建新的拓扑

  /*** This function computes a new topology instance.* It ignores links connected to all broadcast domain ports* and tunnel ports. The method returns if a new instance of* topology was created or not.*/protected boolean createNewInstance(String reason) {Set<NodePortTuple> blockedPorts = new HashSet<NodePortTuple>();if (!linksUpdated) return false;Map<NodePortTuple, Set<Link>> openflowLinks;openflowLinks =new HashMap<NodePortTuple, Set<Link>>();Set<NodePortTuple> nptList = switchPortLinks.keySet();if (nptList != null) {for (NodePortTuple npt : nptList) {Set<Link> linkSet = switchPortLinks.get(npt);if (linkSet == null) continue;openflowLinks.put(npt, new HashSet<Link>(linkSet));}}// Identify all broadcast domain ports.// Mark any port that has inconsistent set of links// as broadcast domain ports as well.Set<NodePortTuple> broadcastDomainPorts =identifyBroadcastDomainPorts();// Remove all links incident on broadcast domain ports.for (NodePortTuple npt : broadcastDomainPorts) {if (switchPortLinks.get(npt) == null) continue;for (Link link : switchPortLinks.get(npt)) {removeLinkFromStructure(openflowLinks, link);}}// Remove all tunnel links.for (NodePortTuple npt : tunnelPorts) {if (switchPortLinks.get(npt) == null) continue;for (Link link : switchPortLinks.get(npt)) {removeLinkFromStructure(openflowLinks, link);}}//switchPorts contains only ports that are part of links. Calculation of broadcast ports needs set of all ports.Map<DatapathId, Set<OFPort>> allPorts = new HashMap<DatapathId, Set<OFPort>>();;for (DatapathId sw : switchPorts.keySet()) {allPorts.put(sw, this.getPorts(sw));}TopologyInstance nt = new TopologyInstance(switchPorts,blockedPorts,openflowLinks,broadcastDomainPorts,tunnelPorts,switchPortLinks,allPorts,portBroadcastDomainLinks);nt.compute();// We set the instances with and without tunnels to be identical.// If needed, we may compute them differently.currentInstance = nt;currentInstanceWithoutTunnels = nt;TopologyEventInfo topologyInfo =new TopologyEventInfo(0, nt.getClusters().size(),new HashMap<DatapathId, List<NodePortTuple>>(),0);eventCategory.newEventWithFlush(new TopologyEvent(reason, topologyInfo));return true;}

主要计算方法是nt.conpute()这个方法

这个方法有七步看代码如下

    public void compute() {// Step 1: Compute clusters ignoring broadcast domain links// Create nodes for clusters in the higher level topology// Must ignore blocked links.identifyOpenflowDomains();// Step 1.1: Add links to clusters// Avoid adding blocked links to clustersaddLinksToOpenflowDomains();// Step 2. Compute shortest path trees in each cluster for// unicast routing.  The trees are rooted at the destination.// Cost for tunnel links and direct links are the same.calculateShortestPathTreeInClusters();// Step 3. Compute broadcast tree in each cluster.// Cost for tunnel links are high to discourage use of// tunnel links.  The cost is set to the number of nodes// in the cluster + 1, to use as minimum number of// clusters as possible.calculateBroadcastNodePortsInClusters();// Step 4. Compute e2e shortest path trees on entire topology for unicast routing.// The trees are rooted at the destination.// Cost for tunnel links and direct links are the same.calculateAllShortestPaths();// Compute the archipelagos (def: cluster of islands). An archipelago will// simply be a group of connected islands. Each archipelago will have its own// finiteBroadcastTree which will be randomly chosen.calculateArchipelagos();// Step 5. Compute broadcast tree for the whole topology (needed to avoid loops).// Cost for tunnel links are high to discourage use of// tunnel links.  The cost is set to the number of nodes// in the cluster + 1, to use as minimum number of// clusters as possible.calculateAllBroadcastNodePorts();// Step 6. Compute set of ports for broadcasting. Edge ports are included.calculateBroadcastPortMap();// Step 7. print topology.printTopology();}

identifyOpenflowDomains这个方法通过深度优先遍历算法遍历拓扑节点

addLinksToOpenflowDomains添加集群直接的的link

calculateShortestPathTreeInClusters通过给链路添加权重在通clusterDijkstra最短路径算法计算拓扑最短路径

后面几个方法是整个网络的最短路径计算,详细部分文章后面一一解说




这篇关于Floodlight源码阅读之网络拓扑的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/977190

相关文章

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

Java ArrayList扩容机制 (源码解读)

结论:初始长度为10,若所需长度小于1.5倍原长度,则按照1.5倍扩容。若不够用则按照所需长度扩容。 一. 明确类内部重要变量含义         1:数组默认长度         2:这是一个共享的空数组实例,用于明确创建长度为0时的ArrayList ,比如通过 new ArrayList<>(0),ArrayList 内部的数组 elementData 会指向这个 EMPTY_EL

如何在Visual Studio中调试.NET源码

今天偶然在看别人代码时,发现在他的代码里使用了Any判断List<T>是否为空。 我一般的做法是先判断是否为null,再判断Count。 看了一下Count的源码如下: 1 [__DynamicallyInvokable]2 public int Count3 {4 [__DynamicallyInvokable]5 get

工厂ERP管理系统实现源码(JAVA)

工厂进销存管理系统是一个集采购管理、仓库管理、生产管理和销售管理于一体的综合解决方案。该系统旨在帮助企业优化流程、提高效率、降低成本,并实时掌握各环节的运营状况。 在采购管理方面,系统能够处理采购订单、供应商管理和采购入库等流程,确保采购过程的透明和高效。仓库管理方面,实现库存的精准管理,包括入库、出库、盘点等操作,确保库存数据的准确性和实时性。 生产管理模块则涵盖了生产计划制定、物料需求计划、

论文阅读笔记: Segment Anything

文章目录 Segment Anything摘要引言任务模型数据引擎数据集负责任的人工智能 Segment Anything Model图像编码器提示编码器mask解码器解决歧义损失和训练 Segment Anything 论文地址: https://arxiv.org/abs/2304.02643 代码地址:https://github.com/facebookresear

Spring 源码解读:自定义实现Bean定义的注册与解析

引言 在Spring框架中,Bean的注册与解析是整个依赖注入流程的核心步骤。通过Bean定义,Spring容器知道如何创建、配置和管理每个Bean实例。本篇文章将通过实现一个简化版的Bean定义注册与解析机制,帮助你理解Spring框架背后的设计逻辑。我们还将对比Spring中的BeanDefinition和BeanDefinitionRegistry,以全面掌握Bean注册和解析的核心原理。

音视频入门基础:WAV专题(10)——FFmpeg源码中计算WAV音频文件每个packet的pts、dts的实现

一、引言 从文章《音视频入门基础:WAV专题(6)——通过FFprobe显示WAV音频文件每个数据包的信息》中我们可以知道,通过FFprobe命令可以打印WAV音频文件每个packet(也称为数据包或多媒体包)的信息,这些信息包含该packet的pts、dts: 打印出来的“pts”实际是AVPacket结构体中的成员变量pts,是以AVStream->time_base为单位的显

kubelet组件的启动流程源码分析

概述 摘要: 本文将总结kubelet的作用以及原理,在有一定基础认识的前提下,通过阅读kubelet源码,对kubelet组件的启动流程进行分析。 正文 kubelet的作用 这里对kubelet的作用做一个简单总结。 节点管理 节点的注册 节点状态更新 容器管理(pod生命周期管理) 监听apiserver的容器事件 容器的创建、删除(CRI) 容器的网络的创建与删除

软件架构模式:5 分钟阅读

原文: https://orkhanscience.medium.com/software-architecture-patterns-5-mins-read-e9e3c8eb47d2 软件架构模式:5 分钟阅读 当有人潜入软件工程世界时,有一天他需要学习软件架构模式的基础知识。当我刚接触编码时,我不知道从哪里获得简要介绍现有架构模式的资源,这样它就不会太详细和混乱,而是非常抽象和易

red5-server源码

red5-server源码:https://github.com/Red5/red5-server