All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.bookkeeper.util.SubTreeCache Maven / Gradle / Ivy

There is a newer version: 4.17.1
Show newest version
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

package org.apache.bookkeeper.util;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Caching layer for traversing and monitoring changes on a znode subtree.
 *
 * 

ZooKeeper does not provide a way to perform a recursive watch on a subtree. * In order to detect changes to a subtree, we need to maintain a * cache of nodes which have been listed and have not changed since. This would * mirror the set of nodes with live watches in ZooKeeper (since we can't * cancel them at the moment). * *

In order to avoid having to pre-read the whole subtree up front, we'll weaken * the guarantee to only require firing the watcher for updates on nodes read since * the watcher was registered which happened after the read. We'll also permit * spurious events elsewhere in the tree to avoid having to distinguish between * nodes which were read before and after a watch was established. * *

Finally, we'll allow (require, even) the user to cancel a registered watcher * once no longer interested. */ public class SubTreeCache { private static final Logger LOG = LoggerFactory.getLogger(SubTreeCache.class); /** * A tree provider. */ public interface TreeProvider { List getChildren( String path, Watcher watcher) throws InterruptedException, KeeperException; } private class SubTreeNode implements Watcher { String path; private List children; SubTreeNode(String path) { this.path = path; } private void setChildren(List children) { this.children = children; } @Override public void process(WatchedEvent event) { synchronized (SubTreeCache.this) { handleEvent(event); cachedNodes.remove(path); } } private List getChildren() { return new ArrayList(children); } } TreeProvider provider; Set pendingWatchers = new HashSet<>(); Map cachedNodes = new HashMap<>(); public SubTreeCache(TreeProvider provider) { this.provider = provider; } private synchronized void handleEvent(WatchedEvent event) { Set toReturn = pendingWatchers; for (Watcher watcher: pendingWatchers) { watcher.process(event); } pendingWatchers.clear(); } /** * Returns children of node. * * @param path Path of which to get children * @return Children of path */ public synchronized List getChildren(String path) throws KeeperException, InterruptedException { SubTreeNode node = cachedNodes.get(path); if (null == node) { node = new SubTreeNode(path); node.setChildren(provider.getChildren(path, node)); cachedNodes.put(path, node); } return node.getChildren(); } /** * Register a watcher. * *

See class header for semantics. * * @param watcher watcher to register */ public synchronized void registerWatcher(Watcher watcher) { pendingWatchers.add(watcher); } /** * Cancel a watcher (noop if not registered or already fired). * * @param watcher Watcher object to cancel */ public synchronized void cancelWatcher(Watcher watcher) { pendingWatchers.remove(watcher); } /** * A watch guard. */ public class WatchGuard implements AutoCloseable { final Watcher w; WatchGuard(Watcher w) { this.w = w; } @Override public void close() { cancelWatcher(w); } } /** * Register watcher and get interest guard object which can be used with try-with-resources. * *

It's important not to leak watchers into this structure. The returned WatchGuard * can be used to ensure that the watch is unregistered upon exiting a scope. * * @param watcher Watcher to register */ public synchronized WatchGuard registerWatcherWithGuard(Watcher watcher) { registerWatcher(watcher); return new WatchGuard(watcher); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy