blob: e91de42e1c6c6dfec7146a62544830565a27645a [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.juneau;
import static org.apache.juneau.common.internal.StringUtils.*;
import static org.apache.juneau.internal.ArrayUtils.copyOf;
import static org.apache.juneau.internal.CollectionUtils.*;
import java.util.*;
import java.util.function.*;
import org.apache.http.*;
import org.apache.http.message.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.common.internal.*;
import org.apache.juneau.internal.*;
/**
* A parsed <c>Accept-Encoding</c> or similar header value.
*
* <p>
* The returned ranges are sorted such that the most acceptable value is available at ordinal position
* <js>'0'</js>, and the least acceptable at position n-1.
*
* <h5 class='topic'>RFC2616 Specification</h5>
*
* The Accept-Encoding request-header field is similar to Accept, but restricts the content-codings (section 3.5) that
* are acceptable in the response.
*
* <p class='bcode'>
* Accept-Encoding = "Accept-Encoding" ":"
* 1#( codings [ ";" "q" "=" qvalue ] )
* codings = ( content-coding | "*" )
* </p>
*
* <p>
* Examples of its use are:
* <p class='bcode'>
* Accept-Encoding: compress, gzip
* Accept-Encoding:
* Accept-Encoding: *
* Accept-Encoding: compress;q=0.5, gzip;q=1.0
* Accept-Encoding: gzip;q=1.0, identity; q=0.5, *;q=0
* </p>
*
* <h5 class='section'>See Also:</h5><ul>
* <li class='link'><a class="doclink" href="../../../index.html#juneau-rest-common">juneau-rest-common</a>
* <li class='extlink'><a class="doclink" href="https://www.w3.org/Protocols/rfc2616/rfc2616.html">Hypertext Transfer Protocol -- HTTP/1.1</a>
* </ul>
*/
@BeanIgnore
public class StringRanges {
//-----------------------------------------------------------------------------------------------------------------
// Static
//-----------------------------------------------------------------------------------------------------------------
/** Represents an empty string ranges object. */
public static final StringRanges EMPTY = new StringRanges("");
private static final Cache<String,StringRanges> CACHE = Cache.of(String.class, StringRanges.class).build();
/**
* Returns a parsed string range header value.
*
* @param value The raw header value.
* @return A parsed header value.
*/
public static StringRanges of(String value) {
return isEmpty(value) ? EMPTY : CACHE.get(value, ()->new StringRanges(value));
}
/**
* Returns a parsed string range header value.
*
* @param value The raw header value.
* @return A parsed header value.
*/
public static StringRanges of(StringRange...value) {
return value == null ? null : new StringRanges(value);
}
//-----------------------------------------------------------------------------------------------------------------
// Instance
//-----------------------------------------------------------------------------------------------------------------
private final StringRange[] value;
private final String string;
/**
* Constructor.
*
* @param value The string range header value.
*/
public StringRanges(String value) {
this(parse(value));
}
/**
* Constructor.
*
* @param value The string range header value.
*/
public StringRanges(StringRange...value) {
this.string = join(value, ", ");
this.value = copyOf(value);
}
/**
* Constructor.
*
* @param e The parsed string range header value.
*/
public StringRanges(HeaderElement...e) {
value = new StringRange[e.length];
for (int i = 0; i < e.length; i++)
value[i] = new StringRange(e[i]);
Arrays.sort(value, RANGE_COMPARATOR);
this.string = value.length == 1 ? value[0].toString() : StringUtils.join(value, ", ");
}
/**
* Compares two StringRanges for equality.
*
* <p>
* The values are first compared according to <c>qValue</c> values.
* Should those values be equal, the <c>type</c> is then lexicographically compared (case-insensitive) in
* ascending order, with the <js>"*"</js> type demoted last in that order.
*/
private static final Comparator<StringRange> RANGE_COMPARATOR = (o1, o2) -> {
// Compare q-values.
int qCompare = Float.compare(o2.getQValue(), o1.getQValue());
if (qCompare != 0)
return qCompare;
// Compare media-types.
// Note that '*' comes alphabetically before letters, so just do a reverse-alphabetical comparison.
return o2.toString().compareTo(o1.toString());
};
/**
* Given a list of media types, returns the best match for this string range header.
*
* <p>
* Note that fuzzy matching is allowed on the media types where the string range header may
* contain additional subtype parts.
* <br>For example, given identical q-values and an string range value of <js>"text/json+activity"</js>,
* the media type <js>"text/json"</js> will match if <js>"text/json+activity"</js> or <js>"text/activity+json"</js>
* isn't found.
* <br>The purpose for this is to allow serializers to match when artifacts such as <c>id</c> properties are
* present in the header.
*
* <p>
* See <a class="doclink" href="https://www.w3.org/TR/activitypub/#retrieving-objects">ActivityPub / Retrieving Objects</a>
*
* @param names The names to match against.
* @return The index into the array of the best match, or <c>-1</c> if no suitable matches could be found.
*/
public int match(List<String> names) {
if (string.isEmpty())
return -1;
int matchQuant = 0, matchIndex = -1;
float q = 0f;
// Media ranges are ordered by 'q'.
// So we only need to search until we've found a match.
for (StringRange mr : value) {
float q2 = mr.getQValue();
if (q2 < q || q2 == 0)
break;
for (int i = 0; i < names.size(); i++) {
String mt = names.get(i);
int matchQuant2 = mr.match(mt);
if (matchQuant2 > matchQuant) {
matchIndex = i;
matchQuant = matchQuant2;
q = q2;
}
}
}
return matchIndex;
}
/**
* Returns the {@link MediaRange} at the specified index.
*
* @param index The index position of the media range.
* @return The {@link MediaRange} at the specified index or <jk>null</jk> if the index is out of range.
*/
public StringRange getRange(int index) {
if (index < 0 || index >= value.length)
return null;
return value[index];
}
/**
* Returns the string ranges that make up this object.
*
* @return The string ranges that make up this object.
*/
public List<StringRange> toList() {
return ulist(value);
}
/**
* Performs an action on the string ranges that make up this object.
*
* @param action The action to perform.
* @return This object.
*/
public StringRanges forEachRange(Consumer<StringRange> action) {
for (StringRange r : value)
action.accept(r);
return this;
}
private static HeaderElement[] parse(String value) {
return value == null ? null : BasicHeaderValueParser.parseElements(emptyIfNull(trim(value)), null);
}
@Override /* Object */
public String toString() {
return string;
}
}