Merge "Do not start netconf-impl for css netconf endpoint"
[netconf.git] / netconf / netconf-tcp / src / main / java / org / opendaylight / netconf / tcp / NetconfNorthboundTcpServer.java
1 /*
2  * Copyright (c) 2016 Inocybe Technologies 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 package org.opendaylight.netconf.tcp;
9
10 import io.netty.channel.ChannelFuture;
11 import java.net.InetAddress;
12 import java.net.InetSocketAddress;
13 import org.opendaylight.netconf.api.NetconfServerDispatcher;
14 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IetfInetUtil;
15 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
16 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressBuilder;
17 import org.slf4j.Logger;
18 import org.slf4j.LoggerFactory;
19
20 /**
21  * Create an MD-SAL NETCONF server using TCP.
22  */
23 public class NetconfNorthboundTcpServer implements AutoCloseable {
24
25     private static final Logger LOG = LoggerFactory.getLogger(NetconfNorthboundTcpServer.class);
26
27     private final ChannelFuture tcpServer;
28
29     public NetconfNorthboundTcpServer(final NetconfServerDispatcher netconfServerDispatcher,
30                                       final String address,
31                                       final String port) {
32         InetSocketAddress inetAddress = getInetAddress(address, port);
33         tcpServer = netconfServerDispatcher.createServer(inetAddress);
34         tcpServer.addListener(future -> {
35             if (future.isDone() && future.isSuccess()) {
36                 LOG.info("Netconf TCP endpoint started successfully at {}", inetAddress);
37             } else {
38                 LOG.warn("Unable to start TCP netconf server at {}", inetAddress, future.cause());
39                 throw new RuntimeException("Unable to start TCP netconf server", future.cause());
40             }
41         });
42     }
43
44     private static InetSocketAddress getInetAddress(final String bindingAddress, final String portNumber) {
45         IpAddress ipAddress = IpAddressBuilder.getDefaultInstance(bindingAddress);
46         final InetAddress inetAd = IetfInetUtil.INSTANCE.inetAddressFor(ipAddress);
47         return new InetSocketAddress(inetAd, Integer.parseInt(portNumber));
48     }
49
50     @Override
51     public void close() {
52         if (tcpServer.isDone()) {
53             tcpServer.channel().close();
54         } else {
55             tcpServer.cancel(true);
56         }
57     }
58 }