f26375bf5a28d78f155d841a31574868d064cfcb
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / SwitchConnectionHandlerImpl.java
1 /**
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowplugin.openflow.md.core;
10
11 import java.net.InetAddress;
12
13 import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
14 import org.opendaylight.openflowjava.protocol.api.connection.SwitchConnectionHandler;
15 import org.opendaylight.openflowplugin.openflow.md.core.session.OFSessionUtil;
16 import org.opendaylight.openflowplugin.openflow.md.queue.QueueKeeperLightImpl;
17
18 /**
19  * @author mirehak
20  *
21  */
22 public class SwitchConnectionHandlerImpl implements SwitchConnectionHandler {
23     
24     private QueueKeeperLightImpl<Object> queueKeeper;
25     private ErrorHandler errorHandler;
26
27     /**
28      * 
29      */
30     public SwitchConnectionHandlerImpl() {
31         queueKeeper = new QueueKeeperLightImpl<>();
32         queueKeeper.setListenerMapping(OFSessionUtil.getListenersMap());
33         queueKeeper.init();
34         // TODO: add pop-listeners consuming object processed via queue
35         //queueKeeper.addPopListener(listener);
36         
37         errorHandler = new ErrorHandlerQueueImpl();
38     }
39
40     @Override
41     public boolean accept(InetAddress address) {
42         // TODO:: add policy derived rules
43         return true;
44     }
45
46     @Override
47     public void onSwitchConnected(ConnectionAdapter connectionAdapter) {
48         ConnectionConductor conductor = ConnectionConductorFactory.createConductor(
49                 connectionAdapter, queueKeeper);
50         conductor.setErrorHandler(errorHandler);
51     }
52
53 }