org.apache.jackrabbit.oak.namepath.impl.LocalNameMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* 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.oak.namepath.impl;
import static java.util.Objects.requireNonNull;
import static org.apache.jackrabbit.guava.common.base.Preconditions.checkArgument;
import java.util.Map;
import org.apache.jackrabbit.oak.api.Root;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Name mapper with local namespace mappings.
*/
public class LocalNameMapper extends GlobalNameMapper {
protected final Map local;
private static final Logger log = LoggerFactory.getLogger(LocalNameMapper.class);
public LocalNameMapper(Root root, Map local) {
super(root);
this.local = local;
}
public LocalNameMapper(
Map global, Map local) {
super(global);
this.local = local;
}
@Override @NotNull
public synchronized Map getSessionLocalMappings() {
return local;
}
@Override @NotNull
public synchronized String getJcrName(@NotNull String oakName) {
requireNonNull(oakName);
checkArgument(!oakName.startsWith(":"), oakName); // hidden name
checkArgument(!isExpandedName(oakName), oakName); // expanded name
if (!local.isEmpty()) {
int colon = oakName.indexOf(':');
if (colon > 0) {
String oakPrefix = oakName.substring(0, colon);
String uri = getNamespacesProperty(oakPrefix);
if (uri == null) {
throw new IllegalStateException(
"No namespace mapping found for " + oakName);
}
for (Map.Entry entry : local.entrySet()) {
if (uri.equals(entry.getValue())) {
String jcrPrefix = entry.getKey();
if (jcrPrefix.equals(oakPrefix)) {
return oakName;
} else {
return jcrPrefix + oakName.substring(colon);
}
}
}
// local mapping not found for this URI, make sure there
// is no conflicting local mapping for the prefix
if (local.containsKey(oakPrefix)) {
for (int i = 2; true; i++) {
String jcrPrefix = oakPrefix + i;
if (!local.containsKey(jcrPrefix)) {
log.warn("no prefix found for namespace name '" + uri + "', using unmapped temporary prefix '"
+ jcrPrefix + "' for now (see OAK-10544)");
return jcrPrefix + oakName.substring(colon);
}
}
}
}
}
return oakName;
}
@Override @Nullable
public synchronized String getOakNameOrNull(@NotNull String jcrName) {
requireNonNull(jcrName);
if (jcrName.startsWith("{")) {
String oakName = getOakNameFromExpanded(jcrName);
if (oakName != jcrName) {
return oakName;
} // else not an expanded name, so fall through to local mapping
}
if (!local.isEmpty()) {
int colon = jcrName.indexOf(':');
if (colon > 0) {
String jcrPrefix = jcrName.substring(0, colon);
String uri = local.get(jcrPrefix);
if (uri != null) {
String oakPrefix = getOakPrefixOrNull(uri);
if (oakPrefix == null) {
return null;
} else if (jcrPrefix.equals(oakPrefix)) {
return jcrName;
} else {
return oakPrefix + jcrName.substring(colon);
}
}
// Check that a global mapping is present and not remapped
String mapping = getNamespacesProperty(jcrPrefix);
if (mapping != null
&& local.values().contains(mapping)) {
return null;
}
}
}
return jcrName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy