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

org.apache.jackrabbit.spi.commons.namespace.AbstractNamespaceResolver Maven / Gradle / Ivy

/*
 * 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.jackrabbit.spi.commons.namespace;

import java.util.Set;
import java.util.HashSet;
import java.util.Iterator;

/**
 * Provides default implementations for the methods:
 * 
    *
  • {@link #addListener(NamespaceListener)}
  • *
  • {@link #removeListener(NamespaceListener)}
  • *
* Subclasses may overwrite those methods with more efficient implementations * e.g. using caching. This class also adds optional support for * {@link NamespaceListener}s. To enable listener support call the constructor * with supportListeners set to true. The default * constructor will not enable listener support and all listener related * methods will throw an {@link UnsupportedOperationException} in that case. * * @deprecated https://issues.apache.org/jira/browse/JCR-1700 */ public abstract class AbstractNamespaceResolver implements NamespaceResolver { private final Set listeners; /** * Creates a AbstractNamespaceResolver without listener * support. */ public AbstractNamespaceResolver() { this(false); } /** * Creates a AbstractNamespaceResolver with listener support if * supportListeners is set to true. * * @param supportListeners if true listener are supported by * this instance. */ public AbstractNamespaceResolver(boolean supportListeners) { if (supportListeners) { listeners = new HashSet(); } else { listeners = null; } } //--------------------------------------------< NamespaceListener support > /** * Registers listener to get notifications when namespace * mappings change. * * @param listener the listener to register. * @throws UnsupportedOperationException if listener support is not enabled * for this AbstractNamespaceResolver. */ public void addListener(NamespaceListener listener) { if (listeners == null) { throw new UnsupportedOperationException("addListener"); } synchronized (listeners) { listeners.add(listener); } } /** * Removes the listener from this NamespaceRegistery. * * @param listener the listener to remove. * @throws UnsupportedOperationException if listener support is not enabled * for this AbstractNamespaceResolver. */ public void removeListener(NamespaceListener listener) { if (listeners == null) { throw new UnsupportedOperationException("removeListener"); } synchronized (listeners) { listeners.remove(listener); } } /** * Notifies the listeners that a new namespace uri has been * added and mapped to prefix. * * @param prefix the prefix. * @param uri the namespace uri. */ protected void notifyNamespaceAdded(String prefix, String uri) { if (listeners == null) { throw new UnsupportedOperationException("notifyNamespaceAdded"); } // addition is infrequent compared to listener registration // -> use copy-on-read NamespaceListener[] currentListeners; synchronized (listeners) { int i = 0; currentListeners = new NamespaceListener[listeners.size()]; for (Iterator it = listeners.iterator(); it.hasNext();) { currentListeners[i++] = (NamespaceListener) it.next(); } } for (int i = 0; i < currentListeners.length; i++) { currentListeners[i].namespaceAdded(prefix, uri); } } /** * Notifies listeners that an existing namespace uri has been remapped * to a new prefix. * * @param oldPrefix the old prefix. * @param newPrefix the new prefix. * @param uri the associated namespace uri. */ protected void notifyNamespaceRemapped(String oldPrefix, String newPrefix, String uri) { if (listeners == null) { throw new UnsupportedOperationException("notifyNamespaceRemapped"); } // remapping is infrequent compared to listener registration // -> use copy-on-read NamespaceListener[] currentListeners; synchronized (listeners) { int i = 0; currentListeners = new NamespaceListener[listeners.size()]; for (Iterator it = listeners.iterator(); it.hasNext();) { currentListeners[i++] = (NamespaceListener) it.next(); } } for (int i = 0; i < currentListeners.length; i++) { currentListeners[i].namespaceRemapped(oldPrefix, newPrefix, uri); } } /** * Notifies the listeners that the namespace with the given uri * has been removed from the mapping. * * @param uri the namespace uri. * @see NamespaceListener#namespaceRemoved(String) */ protected void notifyNamespaceRemoved(String uri) { if (listeners == null) { throw new UnsupportedOperationException("notifyNamespaceRemapped"); } // removal is infrequent compared to listener registration // -> use copy-on-read NamespaceListener[] currentListeners; synchronized (listeners) { int i = 0; currentListeners = new NamespaceListener[listeners.size()]; for (Iterator it = listeners.iterator(); it.hasNext();) { currentListeners[i++] = (NamespaceListener) it.next(); } } for (int i = 0; i < currentListeners.length; i++) { currentListeners[i].namespaceRemoved(uri); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy