Floodlight 源码解读 :Main

本文详细解析了Floodlight控制器的Main函数,包括命令行参数解析、模块加载流程、服务获取以及初始化和启动模块的过程。重点介绍了IFloodlightModule接口的实现,如getModuleServices(), getServiceImple(), getModuleDependencies()等方法,以及ServiceLoader在模块和服务注册中的作用。整个流程涉及配置文件读取、依赖处理和模块初始化启动,为理解Floodlight的运行机制提供了深入洞察。" 126048746,10912945,R语言时间序列分析:筛选与索引操作,"['R语言', '数据挖掘', '机器学习', '数据分析']
摘要由CSDN通过智能技术生成

Floodlight 的 Main 解析图


需要理解的概念

模块(Module)

Module 是指继承了 IFloodlightModule 接口的类

IFloodlightModule的相关注释

 Defines an interface for loadable Floodlight modules.
 At a high level, these functions are called in the following order:

  getModuleServices() : 获得模块实现的服务列表
  getServiceImpls(); 实例化并返回:服务实现类-实现此服务的对象 映射
  getModuleDependencies() : 获得模块依赖的列表
  init() : internal initializations (<em>don't</em> touch other modules)
  startUp() : external initializations (<em>do</em> touch other modules)

所有可加载的模块都有这几种方法,在接下来的加载模块时需要使用到。
每个具体的模块都会重写这几个函数,下面举个 FloodlightProvider 的例子。

getModuleServices()
@Override
public Collection<Class<? extends IFloodlightService>> getModuleServices() {
  
    Collection<Class<? extends IFloodlightService>> services =
            new ArrayList<Class<? extends IFloodlightService>>(1);
    services.add(IFloodlightProviderService.class);
    return services;
}

获得 FloodlightProvider 的服务 IFloodlightProviderService

getServiceImple()
@Override
public Map<Class<? extends IFloodlightService>,
           IFloodlightService> getServiceImpls() {
  
    controller = new Controller();

    Map<Class<? extends IFloodlightService>,
        IFloodlightService> m =
            new HashMap<Class<? extends IFloodlightService>,
                        IFloodlightService>();
    m.put(IFloodlightProviderService.class, cont
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值