/* * 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.openflowplugin.learningswitch; import java.util.Collection; import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.mdsal.binding.api.DataObjectModification.ModificationType; import org.opendaylight.mdsal.binding.api.DataTreeChangeListener; import org.opendaylight.mdsal.binding.api.DataTreeModification; import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.Table; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.opendaylight.yangtools.yang.common.Uint8; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class WakeupOnNode implements DataTreeChangeListener { private static final Logger LOG = LoggerFactory.getLogger(WakeupOnNode.class); private LearningSwitchHandler learningSwitchHandler; @Override public void onDataTreeChanged(@NonNull Collection> modifications) { Uint8 requiredTableId = Uint8.ZERO; // TODO add flow for (DataTreeModification
modification : modifications) { if (modification.getRootNode().getModificationType() == ModificationType.SUBTREE_MODIFIED) { DataObject table = modification.getRootNode().getDataAfter(); if (table instanceof Table) { Table tableSure = (Table) table; LOG.trace("table: {}", table); if (requiredTableId.equals(tableSure.getId())) { InstanceIdentifier
tablePath = modification.getRootPath().getRootIdentifier(); learningSwitchHandler.onSwitchAppeared(tablePath); } } } } } /** * Sets the LearningSwitchHandler. * * @param learningSwitchHandler the learningSwitchHandler to set */ public void setLearningSwitchHandler( LearningSwitchHandler learningSwitchHandler) { this.learningSwitchHandler = learningSwitchHandler; } }