Improve NETCONF session ID handling
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / TesttoolNegotiationFactory.java
1 /*
2  * Copyright (c) 2015 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 package org.opendaylight.netconf.test.tool;
9
10 import io.netty.util.Timer;
11 import java.net.SocketAddress;
12 import java.util.HashMap;
13 import java.util.Map;
14 import java.util.Set;
15 import org.opendaylight.netconf.server.NetconfServerSessionNegotiatorFactory;
16 import org.opendaylight.netconf.server.api.SessionIdProvider;
17 import org.opendaylight.netconf.server.api.monitoring.NetconfMonitoringService;
18 import org.opendaylight.netconf.server.api.operations.NetconfOperationService;
19 import org.opendaylight.netconf.server.api.operations.NetconfOperationServiceFactory;
20 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.base._1._0.rev110601.SessionIdType;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23
24 public class TesttoolNegotiationFactory extends NetconfServerSessionNegotiatorFactory {
25     private static final Logger LOG = LoggerFactory.getLogger(TesttoolNegotiationFactory.class);
26
27     private final Map<SocketAddress, NetconfOperationService> cachedOperationServices = new HashMap<>();
28
29     public TesttoolNegotiationFactory(final Timer timer, final NetconfOperationServiceFactory netconfOperationProvider,
30             final SessionIdProvider idProvider, final long connectionTimeoutMillis,
31             final NetconfMonitoringService monitoringService) {
32         super(timer, netconfOperationProvider, idProvider, connectionTimeoutMillis, monitoringService,
33             NetconfServerSessionNegotiatorFactory.DEFAULT_BASE_CAPABILITIES);
34     }
35
36     public TesttoolNegotiationFactory(final Timer timer, final NetconfOperationServiceFactory netconfOperationProvider,
37             final SessionIdProvider idProvider, final long connectionTimeoutMillis,
38             final NetconfMonitoringService monitoringService, final Set<String> baseCapabilities) {
39         super(timer, netconfOperationProvider, idProvider, connectionTimeoutMillis,
40             monitoringService, baseCapabilities);
41     }
42
43     @Override
44     protected NetconfOperationService getOperationServiceForAddress(final SessionIdType sessionId,
45             final SocketAddress socketAddress) {
46         if (cachedOperationServices.containsKey(socketAddress)) {
47             LOG.debug("Session {}: Getting cached operation service factory for test tool device on address {}",
48                 sessionId.getValue(), socketAddress);
49             return cachedOperationServices.get(socketAddress);
50         } else {
51             final NetconfOperationService service = getOperationServiceFactory().createService(sessionId);
52             cachedOperationServices.put(socketAddress, service);
53             LOG.debug("Session {}: Creating new operation service factory for test tool device on address {}",
54                 sessionId.getValue(), socketAddress);
55             return service;
56         }
57     }
58 }