updated message dispatcher to send the multipart request message to library
[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 queueKeeper;
25     private ErrorHandler errorHandler;
26
27     /**
28      *
29      */
30     public SwitchConnectionHandlerImpl() {
31         queueKeeper = new QueueKeeperLightImpl();
32         queueKeeper.setTranslatorMapping(OFSessionUtil.getTranslatorMap());
33         queueKeeper.setPopListenersMapping(OFSessionUtil.getPopListenerMapping());
34         queueKeeper.init();
35
36         errorHandler = new ErrorHandlerQueueImpl();
37         new Thread(errorHandler).start();
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 }