X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fstreams%2Flisteners%2FNotificator.java;h=cf1bcd6a30b6c4d22464e3678f2c468a995479c8;hp=d1cb25861ae0496c299cc9f4c67ebf5314a871e4;hb=de3e413b633b7555ae8f3fe2ec163dbb7dda5da8;hpb=24fa75eae25771889b94c316f55282c39795d166 diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/streams/listeners/Notificator.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/streams/listeners/Notificator.java index d1cb25861a..cf1bcd6a30 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/streams/listeners/Notificator.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/streams/listeners/Notificator.java @@ -1,34 +1,81 @@ +/* + * 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.streams.listeners; import java.util.Map; +import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; -import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; - +/** + * {@link Notificator} is responsible to create, remove and find {@link ListenerAdapter} listener. + */ public class Notificator { private static Map listenersByStreamName = new ConcurrentHashMap<>(); - private static Map listenersByInstanceIdentifier = new ConcurrentHashMap<>(); + private static Map listenersByInstanceIdentifier = new ConcurrentHashMap<>(); private static final Lock lock = new ReentrantLock(); private Notificator() { } + /** + * Returns list of all stream names + */ + public static Set getStreamNames() { + return listenersByStreamName.keySet(); + } + + /** + * Gets {@link ListenerAdapter} specified by stream name. + * + * @param streamName + * The name of the stream. + * @return {@link ListenerAdapter} specified by stream name. + */ public static ListenerAdapter getListenerFor(String streamName) { return listenersByStreamName.get(streamName); } - public static ListenerAdapter getListenerFor(InstanceIdentifier path) { + /** + * Gets {@link ListenerAdapter} listener specified by {@link YangInstanceIdentifier} path. + * + * @param path + * Path to data in data repository. + * @return ListenerAdapter + */ + public static ListenerAdapter getListenerFor(YangInstanceIdentifier path) { return listenersByInstanceIdentifier.get(path); } - public static boolean existListenerFor(InstanceIdentifier path) { + /** + * Checks if the listener specified by {@link YangInstanceIdentifier} path exist. + * + * @param path + * Path to data in data repository. + * @return True if the listener exist, false otherwise. + */ + public static boolean existListenerFor(YangInstanceIdentifier path) { return listenersByInstanceIdentifier.containsKey(path); } - public static ListenerAdapter createListener(InstanceIdentifier path, String streamName) { + /** + * Creates new {@link ListenerAdapter} listener from {@link YangInstanceIdentifier} path and stream name. + * + * @param path + * Path to data in data repository. + * @param streamName + * The name of the stream. + * @return New {@link ListenerAdapter} listener from {@link YangInstanceIdentifier} path and stream name. + */ + public static ListenerAdapter createListener(YangInstanceIdentifier path, String streamName) { ListenerAdapter listener = new ListenerAdapter(path, streamName); try { lock.lock(); @@ -40,11 +87,24 @@ public class Notificator { return listener; } - public static void removeListener(InstanceIdentifier path) { + /** + * Looks for listener determined by {@link YangInstanceIdentifier} path and removes it. + * + * @param path + * InstanceIdentifier + */ + public static void removeListener(YangInstanceIdentifier path) { ListenerAdapter listener = listenersByInstanceIdentifier.get(path); deleteListener(listener); } + /** + * Creates String representation of stream name from URI. Removes slash from URI in start and end position. + * + * @param uri + * URI for creation stream name. + * @return String representation of stream name. + */ public static String createStreamNameFromUri(String uri) { if (uri == null) { return null; @@ -59,6 +119,9 @@ public class Notificator { return result; } + /** + * Removes all listeners. + */ public static void removeAllListeners() { for (ListenerAdapter listener : listenersByInstanceIdentifier.values()) { try { @@ -75,12 +138,24 @@ public class Notificator { } } + /** + * Checks if listener has at least one subscriber. In case it doesn't have any, delete listener. + * + * @param listener + * ListenerAdapter + */ public static void removeListenerIfNoSubscriberExists(ListenerAdapter listener) { if (!listener.hasSubscribers()) { deleteListener(listener); } } + /** + * Delete {@link ListenerAdapter} listener specified in parameter. + * + * @param listener + * ListenerAdapter + */ private static void deleteListener(ListenerAdapter listener) { if (listener != null) { try { @@ -97,4 +172,4 @@ public class Notificator { } } -} \ No newline at end of file +}