/* * Copyright (c) 2014 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.sal.connect.netconf.sal.tx; import org.opendaylight.netconf.sal.connect.netconf.util.NetconfBaseOps; import org.opendaylight.netconf.sal.connect.netconf.util.NetconfRpcFutureCallback; import org.opendaylight.netconf.sal.connect.util.RemoteDeviceId; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Tx implementation for netconf devices that support only candidate datastore and writable running * The sequence goes exactly as with only candidate supported, with one addition: * */ public class WriteCandidateRunningTx extends WriteCandidateTx { private static final Logger LOG = LoggerFactory.getLogger(WriteCandidateRunningTx.class); public WriteCandidateRunningTx(final RemoteDeviceId id, final NetconfBaseOps netOps, final boolean rollbackSupport) { super(id, netOps, rollbackSupport); } @Override protected synchronized void init() { lockRunning(); super.init(); } @Override protected void cleanupOnSuccess() { super.cleanupOnSuccess(); unlockRunning(); } private void lockRunning() { resultsFutures.add(netOps.lockRunning(new NetconfRpcFutureCallback("Lock running", id))); } /** * This has to be non blocking since it is called from a callback on commit and its netty threadpool that is really sensitive to blocking calls */ private void unlockRunning() { netOps.unlockRunning(new NetconfRpcFutureCallback("Unlock running", id)); } }