Bug 5050: Correctly deregister routed RPC.
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / SwitchConnectionHandlerImpl.java
index 4838666431d95d65c86abe8c3e3cdee23c6d66e0..287b605d5524af21e8bde4c24c35c40df7cd3572 100644 (file)
@@ -9,15 +9,52 @@
 package org.opendaylight.openflowplugin.openflow.md.core;
 
 import java.net.InetAddress;
+import java.util.concurrent.ScheduledThreadPoolExecutor;
+import java.util.concurrent.TimeUnit;
 
 import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
 import org.opendaylight.openflowjava.protocol.api.connection.SwitchConnectionHandler;
+import org.opendaylight.openflowplugin.api.openflow.md.core.ConnectionConductor;
+import org.opendaylight.openflowplugin.api.openflow.md.core.ErrorHandler;
+import org.opendaylight.openflowplugin.openflow.md.core.session.OFSessionUtil;
+import org.opendaylight.openflowplugin.openflow.md.queue.QueueProcessorLightImpl;
+import org.opendaylight.openflowplugin.api.openflow.statistics.MessageSpy;
+import org.opendaylight.yangtools.yang.binding.DataContainer;
 
 /**
- * @author mirehak
- *
+ * basic interconnecting piece between plugin and library 
  */
 public class SwitchConnectionHandlerImpl implements SwitchConnectionHandler {
+    
+    private ScheduledThreadPoolExecutor spyPool; 
+
+    private QueueProcessorLightImpl queueProcessor;
+    private ErrorHandler errorHandler;
+    private MessageSpy<DataContainer> messageSpy;
+    private int spyRate = 10;
+
+    /**
+     *
+     */
+    public SwitchConnectionHandlerImpl() {
+        queueProcessor = new QueueProcessorLightImpl();
+        
+        //TODO: implement shutdown invocation upon service stop event
+        spyPool = new ScheduledThreadPoolExecutor(1);
+    }
+
+    /**
+     * wire all up
+     */
+    public void init() {
+        queueProcessor.setTranslatorMapping(OFSessionUtil.getTranslatorMap());
+        queueProcessor.setPopListenersMapping(OFSessionUtil.getPopListenerMapping());
+        queueProcessor.setMessageSpy(messageSpy);
+        
+        queueProcessor.init();
+        
+        spyPool.scheduleAtFixedRate(messageSpy, spyRate, spyRate, TimeUnit.SECONDS);
+    }
 
     @Override
     public boolean accept(InetAddress address) {
@@ -27,8 +64,23 @@ public class SwitchConnectionHandlerImpl implements SwitchConnectionHandler {
 
     @Override
     public void onSwitchConnected(ConnectionAdapter connectionAdapter) {
-        ConnectionConductor conductor = ConnectionConductorFactory.createConductor(connectionAdapter);
-        //TODO:: store conductor
+        ConnectionConductor conductor = ConnectionConductorFactory.createConductor(
+                connectionAdapter, queueProcessor);
+        conductor.setErrorHandler(errorHandler);
+    }
+    
+    /**
+     * @param messageSpy the messageSpy to set
+     */
+    public void setMessageSpy(MessageSpy<DataContainer> messageSpy) {
+        this.messageSpy = messageSpy;
+    }
+    
+    /**
+     * @param errorHandler the errorHandler to set
+     */
+    public void setErrorHandler(ErrorHandler errorHandler) {
+        this.errorHandler = errorHandler;
     }
 
 }