X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fdom%2Fbroker%2Fimpl%2FHashMapDataStore.xtend;h=12835ccf0a235ec2a312e32313818525425c6f36;hb=b98d04e31ad212b8549a3cf849ce864bbba90717;hp=e9ed71a05287982faad6438962b3324c66c5cb6c;hpb=24feaa3333de6eadfc99a63cce0f95479e3b5f96;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/impl/HashMapDataStore.xtend b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/impl/HashMapDataStore.xtend index e9ed71a052..12835ccf0a 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/impl/HashMapDataStore.xtend +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/impl/HashMapDataStore.xtend @@ -1,3 +1,10 @@ +/* + * 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.controller.sal.dom.broker.impl import org.opendaylight.controller.md.sal.common.api.data.DataModification @@ -11,9 +18,11 @@ import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier import org.opendaylight.yangtools.yang.data.api.CompositeNode import org.opendaylight.controller.sal.core.api.data.DataStore import java.util.HashSet +import org.slf4j.LoggerFactory +import org.slf4j.Logger -class HashMapDataStore implements DataStore, AutoCloseable { - +final class HashMapDataStore implements DataStore, AutoCloseable { + private val Logger LOG = LoggerFactory.getLogger(HashMapDataStore) val Map configuration = new ConcurrentHashMap(); val Map operational = new ConcurrentHashMap(); @@ -21,12 +30,11 @@ class HashMapDataStore implements DataStore, AutoCloseable { override containsConfigurationPath(InstanceIdentifier path) { - throw new UnsupportedOperationException("TODO: auto-generated method stub") - + return configuration.containsKey(path) } override containsOperationalPath(InstanceIdentifier path) { - throw new UnsupportedOperationException("TODO: auto-generated method stub") + return operational.containsKey(path) } override getStoredConfigurationPaths() { @@ -38,10 +46,12 @@ class HashMapDataStore implements DataStore, AutoCloseable { } override readConfigurationData(InstanceIdentifier path) { + LOG.trace("Reading configuration path {}", path) configuration.get(path); } override readOperationalData(InstanceIdentifier path) { + LOG.trace("Reading operational path {}", path) operational.get(path); } @@ -57,15 +67,25 @@ class HashMapDataStore implements DataStore, AutoCloseable { def RpcResult finish(HashMapDataStoreTransaction transaction) { val modification = transaction.modification; - configuration.putAll(modification.updatedConfigurationData); - operational.putAll(modification.updatedOperationalData); - for (removal : modification.removedConfigurationData) { + LOG.trace("Removing configuration path {}", removal) remove(configuration,removal); } for (removal : modification.removedOperationalData) { + LOG.trace("Removing operational path {}", removal) remove(operational,removal); } + if (LOG.isTraceEnabled()) { + for (a : modification.updatedConfigurationData.keySet) { + LOG.trace("Adding configuration path {}", a) + } + for (a : modification.updatedOperationalData.keySet) { + LOG.trace("Adding operational path {}", a) + } + } + configuration.putAll(modification.updatedConfigurationData); + operational.putAll(modification.updatedOperationalData); + return Rpcs.getRpcResult(true, null, Collections.emptySet); } @@ -77,6 +97,7 @@ class HashMapDataStore implements DataStore, AutoCloseable { } } for(pathToRemove : affected) { + LOG.trace("Removed path {}", pathToRemove) map.remove(pathToRemove); }