blob: 362cbaca70b45825c0d6a8736ad0476e0eb922ae [file] [log] [blame]
andreaeb70a942015-10-16 21:34:46 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
andreaeb70a942015-10-16 21:34:46 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yuta HIGUCHIe3ae8212017-04-20 10:18:41 -070017package org.onosproject.netconf.ctl.impl;
andreaeb70a942015-10-16 21:34:46 -070018
19import org.onosproject.netconf.NetconfDevice;
20import org.onosproject.netconf.NetconfDeviceInfo;
Andrea Campanella101417d2015-12-11 17:58:07 -080021import org.onosproject.netconf.NetconfException;
andreaeb70a942015-10-16 21:34:46 -070022import org.onosproject.netconf.NetconfSession;
Andrea Campanella8b1cb672016-01-25 13:58:58 -080023import org.onosproject.netconf.NetconfSessionFactory;
Andrea Campanella1cd641b2015-12-07 17:28:34 -080024import org.slf4j.Logger;
25import org.slf4j.LoggerFactory;
andreaeb70a942015-10-16 21:34:46 -070026
27import java.io.IOException;
28
29/**
Ryan Gouldingd57dea42016-12-03 13:01:15 -050030 * Default implementation of a NETCONF device.
andreaeb70a942015-10-16 21:34:46 -070031 */
Andrea Campanella950310c2016-02-12 18:14:38 -080032public class DefaultNetconfDevice implements NetconfDevice {
andreaeb70a942015-10-16 21:34:46 -070033
Andrea Campanella1cd641b2015-12-07 17:28:34 -080034 public static final Logger log = LoggerFactory
Andrea Campanella50d25212016-02-26 13:06:23 -080035 .getLogger(DefaultNetconfDevice.class);
Andrea Campanella1cd641b2015-12-07 17:28:34 -080036
andreaeb70a942015-10-16 21:34:46 -070037 private NetconfDeviceInfo netconfDeviceInfo;
Andrea Campanella7e6200a2016-03-21 09:48:40 -070038 private boolean deviceState = true;
Andrea Campanella7bbe7b12017-05-03 16:03:38 -070039 private final NetconfSessionFactory sessionFactory;
andreaeb70a942015-10-16 21:34:46 -070040 private NetconfSession netconfSession;
andreaeb70a942015-10-16 21:34:46 -070041
Yuta HIGUCHIe3ae8212017-04-20 10:18:41 -070042 // will block until hello RPC handshake completes
Andrea Campanella950310c2016-02-12 18:14:38 -080043 /**
44 * Creates a new default NETCONF device with the information provided.
Yuta HIGUCHI0454d702017-03-17 10:08:38 -070045 * The device gets created only if no exception is thrown while connecting to
Andrea Campanella950310c2016-02-12 18:14:38 -080046 * it and establishing the NETCONF session.
47 * @param deviceInfo information about the device to be created.
48 * @throws NetconfException if there are problems in creating or establishing
49 * the underlying NETCONF connection and session.
50 */
51 public DefaultNetconfDevice(NetconfDeviceInfo deviceInfo)
Andrea Campanella8b1cb672016-01-25 13:58:58 -080052 throws NetconfException {
andreaeb70a942015-10-16 21:34:46 -070053 netconfDeviceInfo = deviceInfo;
Andrea Campanella7bbe7b12017-05-03 16:03:38 -070054 sessionFactory = new NetconfSessionMinaImpl.MinaSshNetconfSessionFactory();
55 try {
56 netconfSession = sessionFactory.createNetconfSession(deviceInfo);
57 } catch (IOException e) {
58 deviceState = false;
59 throw new NetconfException("Cannot create connection and session for device " +
60 deviceInfo, e);
61 }
62 }
63
64 // will block until hello RPC handshake completes
65 /**
66 * Creates a new default NETCONF device with the information provided.
67 * The device gets created only if no exception is thrown while connecting to
68 * it and establishing the NETCONF session.
69 *
70 * @param deviceInfo information about the device to be created.
71 * @param factory the factory used to create the session
72 * @throws NetconfException if there are problems in creating or establishing
73 * the underlying NETCONF connection and session.
74 */
75 public DefaultNetconfDevice(NetconfDeviceInfo deviceInfo, NetconfSessionFactory factory)
76 throws NetconfException {
77 netconfDeviceInfo = deviceInfo;
78 sessionFactory = factory;
andreaeb70a942015-10-16 21:34:46 -070079 try {
Andrea Campanella8b1cb672016-01-25 13:58:58 -080080 netconfSession = sessionFactory.createNetconfSession(deviceInfo);
andreaeb70a942015-10-16 21:34:46 -070081 } catch (IOException e) {
Andrea Campanella7e6200a2016-03-21 09:48:40 -070082 deviceState = false;
Andrea Campanella101417d2015-12-11 17:58:07 -080083 throw new NetconfException("Cannot create connection and session for device " +
84 deviceInfo, e);
andreaeb70a942015-10-16 21:34:46 -070085 }
andreaeb70a942015-10-16 21:34:46 -070086 }
87
88 @Override
89 public boolean isActive() {
90 return deviceState;
91 }
92
93 @Override
94 public NetconfSession getSession() {
95 return netconfSession;
96 }
97
98 @Override
99 public void disconnect() {
100 deviceState = false;
Andrea Campanella1cd641b2015-12-07 17:28:34 -0800101 try {
102 netconfSession.close();
103 } catch (IOException e) {
Andrea Campanella50d25212016-02-26 13:06:23 -0800104 log.warn("Cannot communicate with the device {} session already closed", netconfDeviceInfo);
Andrea Campanella1cd641b2015-12-07 17:28:34 -0800105 }
andreaeb70a942015-10-16 21:34:46 -0700106 }
107
108 @Override
109 public NetconfDeviceInfo getDeviceInfo() {
110 return netconfDeviceInfo;
111 }
Andrea Campanella8b1cb672016-01-25 13:58:58 -0800112
Andrea Campanella8b1cb672016-01-25 13:58:58 -0800113
andreaeb70a942015-10-16 21:34:46 -0700114}