/* * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.netvirt.elan.l2gw.listeners; import org.opendaylight.controller.md.sal.binding.api.ClusteredDataChangeListener; import org.opendaylight.controller.md.sal.binding.api.DataBroker; import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipService; import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker; import org.opendaylight.genius.datastoreutils.AsyncClusteredDataChangeListenerBase; import org.opendaylight.genius.utils.hwvtep.HwvtepSouthboundUtils; import org.opendaylight.netvirt.elan.l2gw.jobs.LogicalSwitchAddedJob; import org.opendaylight.netvirt.elan.l2gw.utils.ElanL2GatewayMulticastUtils; import org.opendaylight.netvirt.elan.l2gw.utils.ElanL2GatewayUtils; import org.opendaylight.netvirt.elan.l2gw.utils.L2GatewayConnectionUtils; import org.opendaylight.netvirt.elan.utils.ElanClusterUtils; import org.opendaylight.netvirt.elan.utils.ElanUtils; import org.opendaylight.netvirt.neutronvpn.api.l2gw.L2GatewayDevice; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid; import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.l2gateways.rev150712.l2gateway.attributes.Devices; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.HwvtepNodeName; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.hwvtep.global.attributes.LogicalSwitches; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * The listener class for listening to {@code LogicalSwitches} * add/delete/update. * * @see LogicalSwitches */ public class HwvtepLogicalSwitchListener extends AsyncClusteredDataChangeListenerBase { /** The Constant LOG. */ private static final Logger LOG = LoggerFactory.getLogger(HwvtepLogicalSwitchListener.class); /** The node id. */ private NodeId nodeId; /** The logical switch name. */ private String logicalSwitchName; /** The physical device. */ private Devices physicalDevice; /** The l2 gateway device. */ private L2GatewayDevice l2GatewayDevice; // The default vlan id private Integer defaultVlanId; // Id of L2 Gateway connection responsible for this logical switch creation private Uuid l2GwConnId; private final DataBroker broker; private final ElanL2GatewayUtils elanL2GatewayUtils; private final EntityOwnershipService entityOwnershipService; private final ElanUtils elanUtils; private final ElanL2GatewayMulticastUtils elanL2GatewayMulticastUtils; /** * Instantiates a new hardware vtep logical switch listener. * * @param dataBroker DataBroker * @param elanL2GatewayUtils l2 gateway utils * @param entityOwnershipService the entity ownership service * @param elanUtils the ELAN utilities * @param elanL2GatewayMulticastUtils l2 gateway multicast utils * @param l2GatewayDevice the l2 gateway device * @param logicalSwitchName the logical switch name * @param physicalDevice the physical device * @param defaultVlanId the default vlan id * @param l2GwConnId l2 gateway connection id */ public HwvtepLogicalSwitchListener(DataBroker dataBroker, ElanL2GatewayUtils elanL2GatewayUtils, EntityOwnershipService entityOwnershipService, ElanUtils elanUtils, ElanL2GatewayMulticastUtils elanL2GatewayMulticastUtils, L2GatewayDevice l2GatewayDevice, String logicalSwitchName, Devices physicalDevice, Integer defaultVlanId, Uuid l2GwConnId) { super(LogicalSwitches.class, HwvtepLogicalSwitchListener.class); this.broker = dataBroker; this.elanL2GatewayUtils = elanL2GatewayUtils; this.entityOwnershipService = entityOwnershipService; this.elanUtils = elanUtils; this.elanL2GatewayMulticastUtils = elanL2GatewayMulticastUtils; this.nodeId = new NodeId(l2GatewayDevice.getHwvtepNodeId()); this.logicalSwitchName = logicalSwitchName; this.physicalDevice = physicalDevice; this.l2GatewayDevice = l2GatewayDevice; this.defaultVlanId = defaultVlanId; this.l2GwConnId = l2GwConnId; } /* * (non-Javadoc) * * @see * org.opendaylight.genius.datastoreutils.AsyncClusteredDataChangeListenerBase# * getWildCardPath() */ @Override public InstanceIdentifier getWildCardPath() { return HwvtepSouthboundUtils.createLogicalSwitchesInstanceIdentifier(nodeId, new HwvtepNodeName(logicalSwitchName)); } /* * (non-Javadoc) * * @see * org.opendaylight.genius.datastoreutils.AsyncClusteredDataChangeListenerBase# * getDataChangeListener() */ @Override protected ClusteredDataChangeListener getDataChangeListener() { return HwvtepLogicalSwitchListener.this; } /* * (non-Javadoc) * * @see * org.opendaylight.genius.datastoreutils.AsyncClusteredDataChangeListenerBase# * getDataChangeScope() */ @Override protected AsyncDataBroker.DataChangeScope getDataChangeScope() { return AsyncDataBroker.DataChangeScope.BASE; } /* * (non-Javadoc) * * @see * org.opendaylight.genius.datastoreutils.AsyncClusteredDataChangeListenerBase# * remove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier, * org.opendaylight.yangtools.yang.binding.DataObject) */ @Override protected void remove(InstanceIdentifier identifier, LogicalSwitches deletedLogicalSwitch) { LOG.trace("Received Remove DataChange Notification for identifier: {}, LogicalSwitches: {}", identifier, deletedLogicalSwitch); } /* * (non-Javadoc) * * @see * org.opendaylight.genius.datastoreutils.AsyncClusteredDataChangeListenerBase# * update(org.opendaylight.yangtools.yang.binding.InstanceIdentifier, * org.opendaylight.yangtools.yang.binding.DataObject, * org.opendaylight.yangtools.yang.binding.DataObject) */ @Override protected void update(InstanceIdentifier identifier, LogicalSwitches logicalSwitchOld, LogicalSwitches logicalSwitchNew) { LOG.trace("Received Update DataChange Notification for identifier: {}, LogicalSwitches old: {}, new: {}." + "No Action Performed.", identifier, logicalSwitchOld, logicalSwitchNew); } @Override @SuppressWarnings("checkstyle:IllegalCatch") protected void add(InstanceIdentifier identifier, LogicalSwitches logicalSwitchNew) { LOG.debug("Received Add DataChange Notification for identifier: {}, LogicalSwitches: {}", identifier, logicalSwitchNew); try { L2GatewayDevice elanDevice = L2GatewayConnectionUtils.addL2DeviceToElanL2GwCache( logicalSwitchNew.getHwvtepNodeName().getValue(), l2GatewayDevice, l2GwConnId); LogicalSwitchAddedJob logicalSwitchAddedWorker = new LogicalSwitchAddedJob(broker, elanL2GatewayUtils, elanUtils, elanL2GatewayMulticastUtils, logicalSwitchName, physicalDevice, elanDevice, defaultVlanId); ElanClusterUtils.runOnlyInLeaderNode(entityOwnershipService, logicalSwitchAddedWorker.getJobKey() , "create vlan mappings and mcast configurations", logicalSwitchAddedWorker); } catch (RuntimeException e) { LOG.error("Failed to handle HwVTEPLogicalSwitch - add for: {}", identifier, e); } finally { try { // This listener is specific to handle a specific logical // switch, hence closing it. LOG.trace("Closing LogicalSwitches listener for node: {}, logicalSwitch: {}", nodeId.getValue(), logicalSwitchName); // TODO use https://git.opendaylight.org/gerrit/#/c/44145/ when merged, and remove @SuppressWarnings close(); } catch (Exception e) { LOG.warn("Failed to close HwVTEPLogicalSwitchListener", e); } } } }