/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.netconf.impl.mapping.operations; import com.google.common.base.Optional; import com.google.common.base.Preconditions; import java.util.Collections; import org.opendaylight.netconf.api.DocumentedException; import org.opendaylight.netconf.api.xml.XmlElement; import org.opendaylight.netconf.api.xml.XmlNetconfConstants; import org.opendaylight.netconf.api.xml.XmlUtil; import org.opendaylight.netconf.impl.NetconfServerSession; import org.opendaylight.netconf.util.mapping.AbstractSingletonNetconfOperation; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; public class DefaultCloseSession extends AbstractSingletonNetconfOperation implements DefaultNetconfOperation { private static final Logger LOG = LoggerFactory.getLogger(DefaultCloseSession.class); public static final String CLOSE_SESSION = "close-session"; private final AutoCloseable sessionResources; private NetconfServerSession session; public DefaultCloseSession(final String netconfSessionIdForReporting, final AutoCloseable sessionResources) { super(netconfSessionIdForReporting); this.sessionResources = sessionResources; } @Override protected String getOperationName() { return CLOSE_SESSION; } /** * Close netconf operation router associated to this session, which in turn * closes NetconfOperationServiceSnapshot with all NetconfOperationService * instances. */ @SuppressWarnings("checkstyle:IllegalCatch") @Override protected Element handleWithNoSubsequentOperations(final Document document, final XmlElement operationElement) throws DocumentedException { try { sessionResources.close(); Preconditions.checkNotNull(session, "Session was not set").delayedClose(); LOG.info("Session {} closing", session.getSessionId()); } catch (final Exception e) { throw new DocumentedException("Unable to properly close session " + getNetconfSessionIdForReporting(), e, DocumentedException.ErrorType.APPLICATION, DocumentedException.ErrorTag.OPERATION_FAILED, DocumentedException.ErrorSeverity.ERROR, Collections.singletonMap( DocumentedException.ErrorSeverity.ERROR.toString(), e.getMessage())); } return XmlUtil.createElement(document, XmlNetconfConstants.OK, Optional.absent()); } @Override public void setNetconfSession(final NetconfServerSession netconfServerSession) { this.session = netconfServerSession; } }