/* * Copyright (c) 2015, 2017 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.openflowplugin.applications.frm.impl; import com.google.common.util.concurrent.Futures; import java.util.Collections; import java.util.concurrent.Future; import org.opendaylight.infrautils.utils.concurrent.LoggingFutures; import org.opendaylight.mdsal.binding.api.DataBroker; import org.opendaylight.mdsal.binding.api.DataTreeIdentifier; import org.opendaylight.mdsal.common.api.LogicalDatastoreType; import org.opendaylight.openflowplugin.applications.frm.ForwardingRulesManager; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Uri; import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node; import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.UpdateTableInputBuilder; import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.table.update.OriginalTableBuilder; import org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.table.update.UpdatedTableBuilder; import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.TableRef; import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.features.TableFeatures; import org.opendaylight.yangtools.concepts.ListenerRegistration; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.opendaylight.yangtools.yang.common.RpcResult; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class TableForwarder extends AbstractListeningCommiter { private static final Logger LOG = LoggerFactory.getLogger(TableForwarder.class); private ListenerRegistration listenerRegistration; public TableForwarder(final ForwardingRulesManager manager, final DataBroker db) { super(manager, db); } @SuppressWarnings("IllegalCatch") @Override public void registerListener() { final DataTreeIdentifier treeId = DataTreeIdentifier.create(LogicalDatastoreType.CONFIGURATION, getWildCardPath()); try { listenerRegistration = dataBroker.registerDataTreeChangeListener(treeId, TableForwarder.this); } catch (final Exception e) { LOG.warn("FRM Table DataTreeChangeListener registration fail!"); LOG.debug("FRM Table DataTreeChangeListener registration fail ..", e); throw new IllegalStateException("TableForwarder startup fail! System needs restart.", e); } } @Override public void deregisterListener() { close(); } @Override public void close() { if (listenerRegistration != null) { listenerRegistration.close(); listenerRegistration = null; } } @Override protected InstanceIdentifier getWildCardPath() { return InstanceIdentifier.create(Nodes.class).child(Node.class).augmentation(FlowCapableNode.class) .child(TableFeatures.class); } @Override public void remove(final InstanceIdentifier identifier, final TableFeatures removeDataObj, final InstanceIdentifier nodeIdent) { // DO Nothing } @Override public void update(final InstanceIdentifier identifier, final TableFeatures original, final TableFeatures update, final InstanceIdentifier nodeIdent) { LOG.debug("Received the Table Update request [Tbl id, node Id, original, upd {} {} {} {}", identifier, nodeIdent, original, update); final TableFeatures originalTableFeatures = original; TableFeatures updatedTableFeatures; if (null == update) { updatedTableFeatures = original; } else { updatedTableFeatures = update; } final UpdateTableInputBuilder builder = new UpdateTableInputBuilder(); builder.setNode(new NodeRef(nodeIdent.firstIdentifierOf(Node.class))); // TODO: reconsider model - this particular field is not used in service // implementation builder.setTableRef(new TableRef(identifier)); builder.setTransactionUri(new Uri(provider.getNewTransactionId())); builder.setUpdatedTable( new UpdatedTableBuilder().setTableFeatures(Collections.singletonList(updatedTableFeatures)).build()); builder.setOriginalTable( new OriginalTableBuilder().setTableFeatures(Collections.singletonList(originalTableFeatures)).build()); LOG.debug("Invoking SalTableService "); if (this.provider.getSalTableService() != null) { LOG.debug(" Handle to SalTableServices {}", this.provider.getSalTableService()); } LoggingFutures.addErrorLogging(this.provider.getSalTableService().updateTable(builder.build()), LOG, "updateTable"); } @Override public Future> add(final InstanceIdentifier identifier, final TableFeatures addDataObj, final InstanceIdentifier nodeIdent) { return Futures.immediateFuture(null); } @Override public void createStaleMarkEntity(InstanceIdentifier identifier, TableFeatures del, InstanceIdentifier nodeIdent) { LOG.debug("NO-OP"); } @Override public Future> removeWithResult(InstanceIdentifier identifier, TableFeatures del, InstanceIdentifier nodeIdent) { return null; } }