Merge "Fixed sal-netconf-connector readConfiguration"
[controller.git] / opendaylight / netconf / netconf-client / src / main / java / org / opendaylight / controller / netconf / client / NetconfClient.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.controller.netconf.client;
10
11 import io.netty.util.concurrent.Future;
12 import io.netty.util.concurrent.GlobalEventExecutor;
13
14 import java.io.Closeable;
15 import java.io.IOException;
16 import java.net.InetSocketAddress;
17 import java.util.Set;
18 import java.util.concurrent.CancellationException;
19 import java.util.concurrent.ExecutionException;
20
21 import org.opendaylight.controller.netconf.api.NetconfMessage;
22 import org.opendaylight.protocol.framework.NeverReconnectStrategy;
23 import org.opendaylight.protocol.framework.ReconnectStrategy;
24 import org.opendaylight.protocol.framework.TimedReconnectStrategy;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 import com.google.common.base.Preconditions;
29 import com.google.common.collect.Sets;
30
31 public class NetconfClient implements Closeable {
32
33     private static final Logger logger = LoggerFactory.getLogger(NetconfClient.class);
34
35     public static final int DEFAULT_CONNECT_TIMEOUT = 5000;
36     private final NetconfClientDispatcher dispatch;
37     private final String label;
38     private final NetconfClientSession clientSession;
39     private final NetconfClientSessionListener sessionListener;
40     private final long sessionId;
41     private final InetSocketAddress address;
42
43     // TODO test reconnecting constructor
44     public NetconfClient(String clientLabelForLogging, InetSocketAddress address, int connectionAttempts,
45             int attemptMsTimeout, NetconfClientDispatcher netconfClientDispatcher) throws InterruptedException {
46         this(clientLabelForLogging, address, getReconnectStrategy(connectionAttempts, attemptMsTimeout),
47                 netconfClientDispatcher);
48     }
49
50     private NetconfClient(String clientLabelForLogging, InetSocketAddress address, ReconnectStrategy strat, NetconfClientDispatcher netconfClientDispatcher) throws InterruptedException {
51         this.label = clientLabelForLogging;
52         dispatch = netconfClientDispatcher;
53         sessionListener = new NetconfClientSessionListener();
54         Future<NetconfClientSession> clientFuture = dispatch.createClient(address, sessionListener, strat);
55         this.address = address;
56         clientSession = get(clientFuture);
57         this.sessionId = clientSession.getSessionId();
58     }
59
60     private NetconfClientSession get(Future<NetconfClientSession> clientFuture) throws InterruptedException {
61         try {
62             return clientFuture.get();
63         } catch (CancellationException e) {
64             throw new RuntimeException("Netconf client interrupted", e);
65         } catch (ExecutionException e) {
66             throw new IllegalStateException("Unable to create netconf client", e);
67         }
68     }
69
70     public static NetconfClient clientFor(String clientLabelForLogging, InetSocketAddress address, ReconnectStrategy strat, NetconfClientDispatcher netconfClientDispatcher) throws InterruptedException {
71         return new NetconfClient(clientLabelForLogging,address,strat,netconfClientDispatcher);
72     }
73
74     public NetconfClient(String clientLabelForLogging, InetSocketAddress address, int connectTimeoutMs,
75             NetconfClientDispatcher netconfClientDispatcher) throws InterruptedException {
76         this(clientLabelForLogging, address,
77                 new NeverReconnectStrategy(GlobalEventExecutor.INSTANCE, connectTimeoutMs), netconfClientDispatcher);
78     }
79
80     public NetconfClient(String clientLabelForLogging, InetSocketAddress address,
81             NetconfClientDispatcher netconfClientDispatcher) throws InterruptedException {
82         this(clientLabelForLogging, address, new NeverReconnectStrategy(GlobalEventExecutor.INSTANCE,
83                 DEFAULT_CONNECT_TIMEOUT), netconfClientDispatcher);
84     }
85
86     public NetconfMessage sendMessage(NetconfMessage message) {
87         return sendMessage(message, 5, 1000);
88     }
89
90     public NetconfMessage sendMessage(NetconfMessage message, int attempts, int attemptMsDelay) {
91         Preconditions.checkState(clientSession.isUp(), "Session was not up yet");
92         clientSession.sendMessage(message);
93         try {
94             return sessionListener.getLastMessage(attempts, attemptMsDelay);
95         } catch (InterruptedException e) {
96             throw new RuntimeException(this + " Cannot read message from " + address, e);
97         } catch (IllegalStateException e) {
98             throw new IllegalStateException(this + " Cannot read message from " + address, e);
99         }
100     }
101
102     @Override
103     public void close() throws IOException {
104         clientSession.close();
105     }
106
107     public NetconfClientDispatcher getNetconfClientDispatcher() {
108         return dispatch;
109     }
110
111     private static ReconnectStrategy getReconnectStrategy(int connectionAttempts, int attemptMsTimeout) {
112         return new TimedReconnectStrategy(GlobalEventExecutor.INSTANCE, attemptMsTimeout, 1000, 1.0, null,
113                 Long.valueOf(connectionAttempts), null);
114     }
115
116     @Override
117     public String toString() {
118         final StringBuffer sb = new StringBuffer("NetconfClient{");
119         sb.append("label=").append(label);
120         sb.append(", sessionId=").append(sessionId);
121         sb.append('}');
122         return sb.toString();
123     }
124
125     public long getSessionId() {
126         return sessionId;
127     }
128
129     public Set<String> getCapabilities() {
130         Preconditions.checkState(clientSession != null, "Client was not initialized successfully");
131         return Sets.newHashSet(clientSession.getServerCapabilities());
132     }
133
134     public NetconfClientSession getClientSession() {
135         return clientSession;
136     }
137 }