blob: 4d4f0d9354e203d3ea38aa32875578c20eefeb9b [file] [log] [blame]
/*
* 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.sling.resourceresolver.impl.mapping;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* The <code>Mapping</code> class conveys the mapping configuration used by the
* {@link org.apache.sling.resourceresolver.impl.ResourceResolverFactoryImpl}.
*/
public class Mapping {
/**
* defines the 'inbound' direction, that is mapping request path to item
* path
*/
public static final int INBOUND = 1;
/** defined the 'outbound' direction, that is mapping item path to URL path */
public static final int OUTBOUND = 2;
/** defines the 'both' direction */
public static final int BOTH = 3;
/** Simple mapper instance mapping path to URLs 1:1 in both directions */
public static final Mapping DIRECT = new Mapping("", "", BOTH) {
@Override
public String mapHandle(String handle) {
return handle;
}
@Override
public boolean mapsInbound() {
return true;
}
@Override
public boolean mapsOutbound() {
return true;
}
@Override
public String mapUri(String uriPath) {
return uriPath;
}
};
// Regular expression to split mapping configuration strings into three
// groups:
// 1 - external path prefix
// 2 - direction (Outbound (>), Bidirectional (:), Inbound (>))
// 3 - internap path prefix
private static final Pattern CONFIG_SPLITTER = Pattern
.compile("(.+)([:<>])(.+)");
/** the 'from' (inside, repository) mapping */
private final String from;
/** the 'to' (outside, URL) mapping */
private final String to;
/** the length of the 'from' field */
private final int fromLength;
/** the length of the 'to' field */
private final int toLength;
/** the mapping direction */
private final int direction;
public Mapping(String config) {
this(split(config));
}
public Mapping(String[] parts) {
this.from = parts[0];
this.to = parts[2];
this.fromLength = this.from.length();
this.toLength = this.to.length();
this.direction = ">".equals(parts[1]) ? Mapping.INBOUND : ("<"
.equals(parts[1]) ? Mapping.OUTBOUND : Mapping.BOTH);
}
@Override
public String toString() {
return "Mapping (from=" + from + ", to=" + to + ", direction="
+ direction + ", lengths=" + fromLength + "/" + toLength;
}
/**
* Replaces the prefix <em>to</em> by the new prefix <em>from</em>, if and
* only if <code>uriPath</code> starts with the <em>to</em> prefix. If
* <code>uriPath</code> does not start with the <em>to</em> prefix, or if
* this mapping is not defined as a 'inward' mapping, <code>null</code> is
* returned.
*
* @param uriPath
* The URI path for which to replace the <em>to</em> prefix by
* the <em>from</em> prefix.
* @return The string after replacement or <code>null</code> if the
* <code>uriPath</code> does not start with the <em>to</em> prefix,
* or {@link #mapsInbound()} returns <code>false</code>.
*/
public String mapUri(String uriPath) {
return (this.mapsInbound() && uriPath.startsWith(this.to)) ? this.from
+ uriPath.substring(this.toLength) : null;
}
/**
* Replaces the prefix <em>from</em> by the new prefix <em>to</em>, if and
* only if <code>handle</code> starts with the <em>from</em> prefix. If
* <code>uriPath</code> does not start with the <em>from</em> prefix, or if
* this mapping is not defined as a 'outward' mapping, <code>null</code> is
* returned.
*
* @param handle
* The URI path for which to replace the <em>from</em> prefix by
* the <em>to</em> prefix.
* @return The string after replacement or <code>null</code> if the
* <code>handle</code> does not start with the <em>from</em> prefix,
* or {@link #mapsOutbound()} returns <code>false</code>.
*/
public String mapHandle(String handle) {
return (this.mapsOutbound() && handle.startsWith(this.from)) ? this.to
+ handle.substring(this.fromLength) : null;
}
// TODO: temporary
public String getFrom() {
return from;
}
// TODO: temporary
public String getTo() {
return to;
}
/**
* Checks, if this mapping is defined for inbound mapping.
*
* @return <code>true</code> if this mapping is defined for inbound mapping;
* <code>false</code> otherwise
*/
public boolean mapsInbound() {
return (this.direction & Mapping.INBOUND) > 0;
}
/**
* Checks, if this mapping is defined for outbound mapping.
*
* @return <code>true</code> if this mapping is defined for outbound
* mapping; <code>false</code> otherwise
*/
public boolean mapsOutbound() {
return (this.direction & Mapping.OUTBOUND) > 0;
}
/**
* Constructs a new mapping with the given mapping string and the direction
*/
private Mapping(String from, String to, int dir) {
this.from = from;
this.to = to;
this.fromLength = from.length();
this.toLength = to.length();
this.direction = dir;
}
public static String[] split(String map) {
// standard case of mapping <path>[<:>]<path>
Matcher mapMatch = CONFIG_SPLITTER.matcher(map);
if (mapMatch.matches()) {
return new String[] { mapMatch.group(1), mapMatch.group(2),
mapMatch.group(3) };
}
// backwards compatibility using "-" instead of ":"
int dash = map.indexOf('-');
if (dash > 0) {
return new String[] { map.substring(0, dash),
map.substring(dash, dash + 1),
map.substring(dash + 1, map.length()) };
}
return new String[] { map, "-", map };
}
}