blob: a3447d6d7858415e4b139d2c4041a692b2541fbf [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.http.header;
import static org.apache.juneau.internal.ExceptionUtils.*;
import static org.apache.juneau.internal.StringUtils.*;
import static java.util.Optional.*;
import java.net.*;
import java.util.*;
import java.util.function.*;
/**
* Category of headers that consist of a single URL value.
*
* <p>
* <h5 class='figure'>Example</h5>
* <p class='bcode w800'>
* Location: http://www.w3.org/pub/WWW/People.html
* </p>
*
* <ul class='seealso'>
* <li class='extlink'>{@doc ExtRFC2616}
* </ul>
*/
public class BasicUriHeader extends BasicHeader {
private static final long serialVersionUID = 1L;
/**
* Convenience creator.
*
* @param name The header name.
* @param value
* The header value.
* <br>Must be parsable by {@link URI#create(String)}.
* <br>Can be <jk>null</jk>.
* @return A new header bean, or <jk>null</jk> if the name is <jk>null</jk> or empty or the value is <jk>null</jk>.
*/
public static BasicUriHeader of(String name, String value) {
if (isEmpty(name) || value == null)
return null;
return new BasicUriHeader(name, value);
}
/**
* Convenience creator.
*
* @param name The header name.
* @param value
* The header value.
* <br>Can be <jk>null</jk>.
* @return A new header bean, or <jk>null</jk> if the name is <jk>null</jk> or empty or the value is <jk>null</jk>.
*/
public static BasicUriHeader of(String name, URI value) {
if (isEmpty(name) || value == null)
return null;
return new BasicUriHeader(name, value);
}
/**
* Convenience creator with delayed value.
*
* <p>
* Header value is re-evaluated on each call to {@link #getValue()}.
*
* @param name The header name.
* @param value
* The supplier of the header value.
* <br>Can be <jk>null</jk>.
* @return A new header bean, or <jk>null</jk> if the name is <jk>null</jk> or empty or the value is <jk>null</jk>.
*/
public static BasicUriHeader of(String name, Supplier<URI> value) {
if (isEmpty(name) || value == null)
return null;
return new BasicUriHeader(name, value);
}
private final URI value;
private final Supplier<URI> supplier;
/**
* Constructor.
*
* @param name The header name.
* @param value
* The header value.
* <br>Must be parsable by {@link URI#create(String)}.
* <br>Can be <jk>null</jk>.
*/
public BasicUriHeader(String name, String value) {
super(name, value);
this.value = parse(value);
this.supplier = null;
}
/**
* Constructor.
*
* @param name The header name.
* @param value
* The header value.
* <br>Can be <jk>null</jk>.
*/
public BasicUriHeader(String name, URI value) {
super(name, serialize(value));
this.value = value;
this.supplier = null;
}
/**
* Constructor with delayed value.
*
* <p>
* Header value is re-evaluated on each call to {@link #getValue()}.
*
* @param name The header name.
* @param value
* The supplier of the header value.
* <br>Can be <jk>null</jk>.
*/
public BasicUriHeader(String name, Supplier<URI> value) {
super(name, null);
this.value = null;
this.supplier = value;
}
@Override /* Header */
public String getValue() {
if (supplier != null)
return serialize(supplier.get());
return super.getValue();
}
/**
* Returns this header as a {@link URI}.
*
* @return This header as a {@link URI}, or {@link Optional#empty()} if the value is <jk>null</jk>
*/
public Optional<URI> asURI() {
if (supplier != null)
return ofNullable(supplier.get());
return ofNullable(value);
}
private static String serialize(URI value) {
return stringify(value);
}
private URI parse(String value) {
try {
return URI.create(value);
} catch (IllegalArgumentException e) {
throw runtimeException("Value ''{0}'' could not be parsed as a URI.", value);
}
}
}