当前位置: 首页>>代码示例>>Java>>正文


Java IDebugEventService类代码示例

本文整理汇总了Java中net.floodlightcontroller.debugevent.IDebugEventService的典型用法代码示例。如果您正苦于以下问题:Java IDebugEventService类的具体用法?Java IDebugEventService怎么用?Java IDebugEventService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


IDebugEventService类属于net.floodlightcontroller.debugevent包,在下文中一共展示了IDebugEventService类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: init

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context)
		throws FloodlightModuleException {
	linkDiscoveryService = context.getServiceImpl(ILinkDiscoveryService.class);
	threadPoolService = context.getServiceImpl(IThreadPoolService.class);
	floodlightProviderService = context.getServiceImpl(IFloodlightProviderService.class);
	switchService = context.getServiceImpl(IOFSwitchService.class);
	restApiService = context.getServiceImpl(IRestApiService.class);
	debugCounterService = context.getServiceImpl(IDebugCounterService.class);
	debugEventService = context.getServiceImpl(IDebugEventService.class);

	switchPorts = new HashMap<DatapathId, Set<OFPort>>();
	switchPortLinks = new HashMap<NodePortTuple, Set<Link>>();
	directLinks = new HashMap<NodePortTuple, Set<Link>>();
	portBroadcastDomainLinks = new HashMap<NodePortTuple, Set<Link>>();
	tunnelPorts = new HashSet<NodePortTuple>();
	topologyAware = new ArrayList<ITopologyListener>();
	ldUpdates = new LinkedBlockingQueue<LDUpdate>();
	haListener = new HAListenerDelegate();
	registerTopologyDebugCounters();
	registerTopologyDebugEvents();
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:23,代码来源:TopologyManager.java

示例2: init

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context) throws FloodlightModuleException {
   controller.setStorageSourceService(
       context.getServiceImpl(IStorageSourceService.class));
   controller.setPktInProcessingService(
       context.getServiceImpl(IPktInProcessingTimeService.class));
   controller.setDebugCounter(
       context.getServiceImpl(IDebugCounterService.class));
   controller.setDebugEvent(
       context.getServiceImpl(IDebugEventService.class));
   controller.setRestApiService(
       context.getServiceImpl(IRestApiService.class));
   controller.setThreadPoolService(
       context.getServiceImpl(IThreadPoolService.class));
   controller.setSyncService(
       context.getServiceImpl(ISyncService.class));
   controller.setSwitchService(
	   context.getServiceImpl(IOFSwitchService.class));
   controller.init(context.getConfigParams(this));
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:21,代码来源:FloodlightProvider.java

示例3: setupSyncManager

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
protected void setupSyncManager(FloodlightModuleContext fmc,
                                SyncManager syncManager, Node thisNode)
        throws Exception {        
    fmc.addService(IThreadPoolService.class, tp);
    fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
    fmc.addService(IDebugEventService.class, new MockDebugEventService());
    fmc.addConfigParam(syncManager, "configProviders", 
                       PropertyCCProvider.class.getName());
    fmc.addConfigParam(syncManager, "nodes", nodeString);
    fmc.addConfigParam(syncManager, "thisNode", ""+thisNode.getNodeId());
    fmc.addConfigParam(syncManager, "persistenceEnabled", "false");
    fmc.addConfigParam(syncManager, "authScheme", "CHALLENGE_RESPONSE");
    fmc.addConfigParam(syncManager, "keyStorePath", 
                       keyStoreFile.getAbsolutePath());
    fmc.addConfigParam(syncManager, "keyStorePassword", keyStorePassword);
    tp.init(fmc);
    syncManager.init(fmc);

    tp.startUp(fmc);
    syncManager.startUp(fmc);

    syncManager.registerStore("global", Scope.GLOBAL);
    syncManager.registerStore("local", Scope.LOCAL);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:25,代码来源:SyncManagerTest.java

示例4: setUp

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
    FloodlightModuleContext fmc = new FloodlightModuleContext();
    tp = new ThreadPool();

    syncManager = new SyncManager();
    remoteSyncManager = new RemoteSyncManager();

    fmc.addService(IThreadPoolService.class, tp);
    fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
    fmc.addService(IDebugEventService.class, new MockDebugEventService());
    fmc.addConfigParam(syncManager, "persistenceEnabled", "false");
    
    tp.init(fmc);
    syncManager.init(fmc);
    remoteSyncManager.init(fmc);

    tp.startUp(fmc);
    syncManager.startUp(fmc);
    remoteSyncManager.startUp(fmc);

    syncManager.registerStore("local", Scope.LOCAL);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:24,代码来源:RemoteStoreTest.java

示例5: SetUp

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Before 
public void SetUp() throws Exception {
    fmc = new FloodlightModuleContext();
    linkDiscovery = EasyMock.createMock(ILinkDiscoveryService.class);
    mockFloodlightProvider = new MockFloodlightProvider();
    fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
    fmc.addService(IOFSwitchService.class, new MockSwitchManager());
    fmc.addService(ILinkDiscoveryService.class, linkDiscovery);
    fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
    fmc.addService(IDebugEventService.class, new MockDebugEventService());
    MockThreadPoolService tp = new MockThreadPoolService();
    topologyManager = new TopologyManager();
    fmc.addService(IThreadPoolService.class, tp);
    topologyManager.init(fmc);
    tp.init(fmc);
    tp.startUp(fmc);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:18,代码来源:TopologyInstanceTest.java

示例6: SetUp

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Before 
public void SetUp() throws Exception {
    fmc = new FloodlightModuleContext();
    linkDiscovery = EasyMock.createMock(ILinkDiscoveryService.class);
    mockFloodlightProvider = new MockFloodlightProvider();
    fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
    fmc.addService(ILinkDiscoveryService.class, linkDiscovery);
    fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
    fmc.addService(IDebugEventService.class, new MockDebugEventService());
    MockThreadPoolService tp = new MockThreadPoolService();
    topologyManager  = new TopologyManager();
    fmc.addService(IThreadPoolService.class, tp);
    topologyManager.init(fmc);
    tp.init(fmc);
    tp.startUp(fmc);
}
 
开发者ID:nsg-ethz,项目名称:iTAP-controller,代码行数:17,代码来源:TopologyInstanceTest.java

示例7: setupSyncManager

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
protected void setupSyncManager(FloodlightModuleContext fmc,
                                SyncManager syncManager, Node thisNode)
        throws Exception {        
    fmc.addService(IThreadPoolService.class, tp);
    fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
    fmc.addService(IDebugEventService.class, new MockDebugEventService());
    fmc.addConfigParam(syncManager, "configProviders", 
                       PropertyCCProvider.class.getName());
    fmc.addConfigParam(syncManager, "nodes", nodeString);
    fmc.addConfigParam(syncManager, "thisNodeId", ""+thisNode.getNodeId());
    fmc.addConfigParam(syncManager, "persistenceEnabled", "false");
    fmc.addConfigParam(syncManager, "authScheme", "CHALLENGE_RESPONSE");
    fmc.addConfigParam(syncManager, "keyStorePath", 
                       keyStoreFile.getAbsolutePath());
    fmc.addConfigParam(syncManager, "keyStorePassword", keyStorePassword);
    tp.init(fmc);
    syncManager.init(fmc);

    tp.startUp(fmc);
    syncManager.startUp(fmc);

    syncManager.registerStore("global", Scope.GLOBAL);
    syncManager.registerStore("local", Scope.LOCAL);
}
 
开发者ID:DylanAPDavis,项目名称:arscheduler,代码行数:25,代码来源:SyncManagerTest.java

示例8: registerDebugEvent

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
public void registerDebugEvent(String packageName,
                               IDebugEventService debugEvents)
                               throws MaxEventsRegistered {
    try {
        evReconcileQueryDebugEvent =
            debugEvents.registerEvent(
                packageName,
                this.toString().toLowerCase().replace("_", "-"),
                this.getDescription(),
                EventType.ALWAYS_LOG,
                FlowReconcileQueryDebugEvent.class,
                500);
    } catch (MaxEventsRegistered e) {
        throw e;
    }
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:17,代码来源:FlowReconcileQuery.java

示例9: init

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context)
        throws FloodlightModuleException {
    linkDiscovery = context.getServiceImpl(ILinkDiscoveryService.class);
    threadPool = context.getServiceImpl(IThreadPoolService.class);
    floodlightProvider =
            context.getServiceImpl(IFloodlightProviderService.class);
    restApi = context.getServiceImpl(IRestApiService.class);
    debugCounters = context.getServiceImpl(IDebugCounterService.class);
    debugEvents = context.getServiceImpl(IDebugEventService.class);

    switchPorts = new HashMap<Long,Set<Short>>();
    switchPortLinks = new HashMap<NodePortTuple, Set<Link>>();
    directLinks = new HashMap<NodePortTuple, Set<Link>>();
    portBroadcastDomainLinks = new HashMap<NodePortTuple, Set<Link>>();
    tunnelPorts = new HashSet<NodePortTuple>();
    topologyAware = new ArrayList<ITopologyListener>();
    ldUpdates = new LinkedBlockingQueue<LDUpdate>();
    haListener = new HAListenerDelegate();
    registerTopologyDebugCounters();
    registerTopologyDebugEvents();
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:23,代码来源:TopologyManager.java

示例10: init

import net.floodlightcontroller.debugevent.IDebugEventService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context) throws FloodlightModuleException {
   controller.setStorageSourceService(
       context.getServiceImpl(IStorageSourceService.class));
   controller.setPktInProcessingService(
       context.getServiceImpl(IPktInProcessingTimeService.class));
   controller.setCounterStore(
       context.getServiceImpl(ICounterStoreService.class));
   controller.setDebugCounter(
       context.getServiceImpl(IDebugCounterService.class));
   controller.setDebugEvent(
       context.getServiceImpl(IDebugEventService.class));
   controller.setRestApiService(
       context.getServiceImpl(IRestApiService.class));
   controller.setThreadPoolService(
       context.getServiceImpl(IThreadPoolService.class));
   controller.setSyncService(
       context.getServiceImpl(ISyncService.class));
   controller.init(context.getConfigParams(this));
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:21,代码来源:FloodlightProvider.java


注:本文中的net.floodlightcontroller.debugevent.IDebugEventService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。