org.modeshape.jcr.value.basic.LocalNamespaceRegistry Maven / Gradle / Ivy
/*
* ModeShape (http://www.modeshape.org)
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership. Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
* See the AUTHORS.txt file in the distribution for a full listing of
* individual contributors.
*
* ModeShape is free software. Unless otherwise indicated, all code in ModeShape
* is licensed to you under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* ModeShape is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.modeshape.jcr.value.basic;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.modeshape.common.annotation.NotThreadSafe;
import org.modeshape.common.util.CheckArg;
import org.modeshape.jcr.value.NamespaceRegistry;
/**
* A special {@link NamespaceRegistry} implementation that can be used to track transient registrations for another delegate
* registry.
*/
@NotThreadSafe
public class LocalNamespaceRegistry extends SimpleNamespaceRegistry {
private final NamespaceRegistry delegate;
/**
* @param delegate the namespace registry that this registry should delegate to if not found locally
*/
public LocalNamespaceRegistry( NamespaceRegistry delegate ) {
super();
CheckArg.isNotNull(delegate, "delegate");
this.delegate = delegate;
unregister(DEFAULT_NAMESPACE_URI);
}
/**
* @param delegate the namespace registry that this registry should delegate to if not found locally
* @param defaultNamespaceUri the namespace URI to use for the default prefix
*/
public LocalNamespaceRegistry( NamespaceRegistry delegate,
final String defaultNamespaceUri ) {
super();
CheckArg.isNotNull(delegate, "delegate");
this.delegate = delegate;
register("", defaultNamespaceUri);
}
@Override
public String getDefaultNamespaceUri() {
String result = super.getDefaultNamespaceUri();
if (result == null) result = this.delegate.getDefaultNamespaceUri();
return result;
}
@Override
public String getNamespaceForPrefix( String prefix ) {
String result = super.getNamespaceForPrefix(prefix);
if (result == null) {
result = this.delegate.getNamespaceForPrefix(prefix);
// Catch if this namespace was remapped
if (result != null && super.getPrefixForNamespaceUri(result, false) != null) {
return null;
}
}
return result;
}
@Override
public Set getNamespaces() {
Set delegateNamespaces = this.delegate.getNamespaces();
Set localNamespaces = super.getNamespaces();
if (localNamespaces.isEmpty()) return delegateNamespaces;
// Load the local namespaces first ...
Set namespaces = new HashSet(localNamespaces);
// Now build a map of the local prefixes so we can check for prefixes
Map localNamespacesByPrefix = new HashMap();
for (Namespace ns : localNamespaces)
localNamespacesByPrefix.put(ns.getPrefix(), ns);
// Now iterate over the local namespaces, removing any existing namespace with the same prefix
for (Namespace ns : delegateNamespaces) {
if (localNamespacesByPrefix.get(ns.getPrefix()) != null) continue;
// Try to add the delegate namespace, which won't work if a local with the same URI was already added...
namespaces.add(ns);
}
return Collections.unmodifiableSet(namespaces);
}
/**
* Obtain the set of namespaces that are overridden within this {@link LocalNamespaceRegistry} instance.
*
* @return the set of overridden namespace mappings; never null but possibly empty
*/
public Set getLocalNamespaces() {
return super.getNamespaces();
}
@Override
public String getPrefixForNamespaceUri( String namespaceUri,
boolean generateIfMissing ) {
String result = super.getPrefixForNamespaceUri(namespaceUri, false);
if (result == null) {
result = this.delegate.getPrefixForNamespaceUri(namespaceUri, false);
if (result != null) {
// This was remapped at the session layer
if (!this.getNamespaceForPrefix(result).equals(namespaceUri)) {
result = null;
}
}
}
if (result == null && generateIfMissing) result = super.getPrefixForNamespaceUri(namespaceUri, true);
return result;
}
@Override
public Set getRegisteredNamespaceUris() {
Set uris = new HashSet(this.delegate.getRegisteredNamespaceUris());
uris.addAll(super.getRegisteredNamespaceUris());
return Collections.unmodifiableSet(uris);
}
@Override
public boolean isRegisteredNamespaceUri( String namespaceUri ) {
return super.isRegisteredNamespaceUri(namespaceUri) || this.delegate.isRegisteredNamespaceUri(namespaceUri);
}
@Override
public String register( String prefix,
String namespaceUri ) {
// Just register the namespace locally ...
String previous = super.register(prefix, namespaceUri);
// But check whether there is a "previous" from the delegate ...
if (previous == null && delegate != null) previous = delegate.getPrefixForNamespaceUri(namespaceUri, false);
return previous;
}
@Override
public boolean unregister( String namespaceUri ) {
// Unregister locally ...
return super.unregister(namespaceUri);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy