f3200c9b3ae5df43110eed896c17da77553b6358
[netconf.git] / netconf / mdsal-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, final String address,
30             final String port) {
31         final InetSocketAddress inetAddress = getInetAddress(address, port);
32         tcpServer = netconfServerDispatcher.createServer(inetAddress);
33         tcpServer.addListener(future -> {
34             if (future.isDone() && future.isSuccess()) {
35                 LOG.info("Netconf TCP endpoint started successfully at {}", inetAddress);
36             } else {
37                 LOG.warn("Unable to start TCP netconf server at {}", inetAddress, future.cause());
38                 throw new RuntimeException("Unable to start TCP netconf server", future.cause());
39             }
40         });
41     }
42
43     private static InetSocketAddress getInetAddress(final String bindingAddress, final String portNumber) {
44         final IpAddress ipAddress = IpAddressBuilder.getDefaultInstance(bindingAddress);
45         final InetAddress inetAd = IetfInetUtil.INSTANCE.inetAddressFor(ipAddress);
46         return new InetSocketAddress(inetAd, Integer.parseInt(portNumber));
47     }
48
49     @Override
50     public void close() {
51         if (tcpServer.isDone()) {
52             tcpServer.channel().close();
53         } else {
54             tcpServer.cancel(true);
55         }
56     }
57 }