blob: f7007680198b96e8ceb0ea0fbb3317ef266c6646 [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
andreaeb70a942015-10-16 21:34:46 -070027/**
Ryan Gouldingd57dea42016-12-03 13:01:15 -050028 * Default implementation of a NETCONF device.
andreaeb70a942015-10-16 21:34:46 -070029 */
Andrea Campanella950310c2016-02-12 18:14:38 -080030public class DefaultNetconfDevice implements NetconfDevice {
andreaeb70a942015-10-16 21:34:46 -070031
Andrea Campanella1cd641b2015-12-07 17:28:34 -080032 public static final Logger log = LoggerFactory
Andrea Campanella50d25212016-02-26 13:06:23 -080033 .getLogger(DefaultNetconfDevice.class);
Andrea Campanella1cd641b2015-12-07 17:28:34 -080034
andreaeb70a942015-10-16 21:34:46 -070035 private NetconfDeviceInfo netconfDeviceInfo;
Andrea Campanella7e6200a2016-03-21 09:48:40 -070036 private boolean deviceState = true;
Andrea Campanella7bbe7b12017-05-03 16:03:38 -070037 private final NetconfSessionFactory sessionFactory;
andreaeb70a942015-10-16 21:34:46 -070038 private NetconfSession netconfSession;
andreaeb70a942015-10-16 21:34:46 -070039
Yuta HIGUCHIe3ae8212017-04-20 10:18:41 -070040 // will block until hello RPC handshake completes
Andrea Campanella950310c2016-02-12 18:14:38 -080041 /**
42 * Creates a new default NETCONF device with the information provided.
Yuta HIGUCHI0454d702017-03-17 10:08:38 -070043 * The device gets created only if no exception is thrown while connecting to
Andrea Campanella950310c2016-02-12 18:14:38 -080044 * it and establishing the NETCONF session.
45 * @param deviceInfo information about the device to be created.
46 * @throws NetconfException if there are problems in creating or establishing
47 * the underlying NETCONF connection and session.
48 */
49 public DefaultNetconfDevice(NetconfDeviceInfo deviceInfo)
Andrea Campanella8b1cb672016-01-25 13:58:58 -080050 throws NetconfException {
andreaeb70a942015-10-16 21:34:46 -070051 netconfDeviceInfo = deviceInfo;
Andrea Campanella7bbe7b12017-05-03 16:03:38 -070052 sessionFactory = new NetconfSessionMinaImpl.MinaSshNetconfSessionFactory();
53 try {
54 netconfSession = sessionFactory.createNetconfSession(deviceInfo);
Yuta HIGUCHI234eaf32017-09-06 13:45:05 -070055 } catch (NetconfException e) {
Andrea Campanella7bbe7b12017-05-03 16:03:38 -070056 deviceState = false;
57 throw new NetconfException("Cannot create connection and session for device " +
58 deviceInfo, e);
59 }
60 }
61
62 // will block until hello RPC handshake completes
63 /**
64 * Creates a new default NETCONF device with the information provided.
65 * The device gets created only if no exception is thrown while connecting to
66 * it and establishing the NETCONF session.
67 *
68 * @param deviceInfo information about the device to be created.
69 * @param factory the factory used to create the session
70 * @throws NetconfException if there are problems in creating or establishing
71 * the underlying NETCONF connection and session.
72 */
73 public DefaultNetconfDevice(NetconfDeviceInfo deviceInfo, NetconfSessionFactory factory)
74 throws NetconfException {
75 netconfDeviceInfo = deviceInfo;
76 sessionFactory = factory;
andreaeb70a942015-10-16 21:34:46 -070077 try {
Andrea Campanella8b1cb672016-01-25 13:58:58 -080078 netconfSession = sessionFactory.createNetconfSession(deviceInfo);
Yuta HIGUCHI234eaf32017-09-06 13:45:05 -070079 } catch (NetconfException e) {
Andrea Campanella7e6200a2016-03-21 09:48:40 -070080 deviceState = false;
Andrea Campanella101417d2015-12-11 17:58:07 -080081 throw new NetconfException("Cannot create connection and session for device " +
82 deviceInfo, e);
andreaeb70a942015-10-16 21:34:46 -070083 }
andreaeb70a942015-10-16 21:34:46 -070084 }
85
86 @Override
87 public boolean isActive() {
88 return deviceState;
89 }
90
91 @Override
92 public NetconfSession getSession() {
93 return netconfSession;
94 }
95
96 @Override
97 public void disconnect() {
98 deviceState = false;
Andrea Campanella1cd641b2015-12-07 17:28:34 -080099 try {
100 netconfSession.close();
Yuta HIGUCHI234eaf32017-09-06 13:45:05 -0700101 } catch (NetconfException e) {
Andrea Campanella50d25212016-02-26 13:06:23 -0800102 log.warn("Cannot communicate with the device {} session already closed", netconfDeviceInfo);
Andrea Campanella1cd641b2015-12-07 17:28:34 -0800103 }
andreaeb70a942015-10-16 21:34:46 -0700104 }
105
106 @Override
107 public NetconfDeviceInfo getDeviceInfo() {
108 return netconfDeviceInfo;
109 }
Andrea Campanella8b1cb672016-01-25 13:58:58 -0800110
Andrea Campanella8b1cb672016-01-25 13:58:58 -0800111
andreaeb70a942015-10-16 21:34:46 -0700112}