All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.hateoas.TemplateVariables Maven / Gradle / Ivy

/*
 * Copyright 2014-2022 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.hateoas;

import static org.springframework.hateoas.TemplateVariable.VariableType.*;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Objects;
import java.util.stream.Stream;

import org.springframework.hateoas.TemplateVariable.VariableType;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

/**
 * Wrapper type for a collection of {@link TemplateVariable}.
 *
 * @author Oliver Gierke
 */
public final class TemplateVariables implements Iterable, Serializable {

	public static final TemplateVariables NONE = new TemplateVariables();
	private static final long serialVersionUID = -7736592281223783079L;

	private final List variables;

	/**
	 * Creates a new {@link TemplateVariables} for the given {@link TemplateVariable}s.
	 *
	 * @param variables must not be {@literal null}.
	 */
	public TemplateVariables(TemplateVariable... variables) {
		this(Arrays.asList(variables));
	}

	/**
	 * Creates a new {@link TemplateVariables} for the given {@link TemplateVariable}s.
	 *
	 * @param variables must not be {@literal null}.
	 */
	public TemplateVariables(List variables) {

		Assert.notNull(variables, "Template variables must not be null!");
		Assert.noNullElements(variables.toArray(), "Variables must not contain null values!");

		boolean requestParameterFound = false;
		List processed = new ArrayList<>(variables.size());

		for (TemplateVariable variable : variables) {

			boolean isRequestParameter = variable.isRequestParameterVariable();

			processed.add(isRequestParameter && requestParameterFound
					? variable.withType(REQUEST_PARAM_CONTINUED)
					: variable);

			if (isRequestParameter) {
				requestParameterFound = true;
			}
		}

		this.variables = Collections.unmodifiableList(processed);
	}

	/**
	 * Concatenates the given {@link TemplateVariable}s to the current one.
	 *
	 * @param variables must not be {@literal null}.
	 * @return
	 */
	public TemplateVariables concat(TemplateVariable... variables) {
		return concat(Arrays.asList(variables));
	}

	/**
	 * Concatenates the given {@link TemplateVariable}s to the current one.
	 *
	 * @param variables must not be {@literal null}.
	 * @return
	 */
	public TemplateVariables concat(Collection variables) {

		List result = new ArrayList<>(this.variables.size() + variables.size());
		result.addAll(this.variables);
		for (TemplateVariable otherVariable : variables) {
			if (!containsEquivalentFor(otherVariable)) {
				result.add(otherVariable);
			}
		}
		return new TemplateVariables(result);
	}

	/**
	 * Concatenates the given {@link TemplateVariables} to the current one.
	 *
	 * @param variables must not be {@literal null}.
	 * @return
	 */
	public TemplateVariables concat(TemplateVariables variables) {
		return concat(variables.variables);
	}

	/**
	 * Returns the contained {@link TemplateVariable}s as {@link List}.
	 *
	 * @return
	 */
	public List asList() {
		return this.variables;
	}

	public Stream stream() {
		return this.variables.stream();
	}

	private boolean containsEquivalentFor(TemplateVariable candidate) {
		for (TemplateVariable variable : variables) {
			if (variable.isEquivalent(candidate)) {
				return true;
			}
		}
		return false;
	}

	/*
	 * (non-Javadoc)
	 * @see java.lang.Iterable#iterator()
	 */
	@Override
	public Iterator iterator() {
		return this.variables.iterator();
	}

	/*
	 * (non-Javadoc)
	 * @see java.lang.Object#toString()
	 */
	@Override
	public String toString() {
		return toString(false);
	}

	/**
	 * Returns the string representation of the template but forcing a continued style of expressing request parameters.
	 *
	 * @param appended
	 * @return
	 */
	String toString(boolean appended) {

		if (variables.isEmpty()) {
			return "";
		}

		StringBuilder builder = new StringBuilder();
		TemplateVariable previous = null;

		for (TemplateVariable variable : variables) {

			VariableType type = variable.getType();
			type = appended && type.equals(REQUEST_PARAM) ? REQUEST_PARAM_CONTINUED : type;

			if (previous == null) {
				builder.append("{").append(type.toString());
			} else if (!previous.isCombinable(variable)) {
				builder.append("}{").append(type.toString());
			} else {
				builder.append(",");
			}

			previous = variable;
			builder.append(variable.essence());
		}

		return builder.append("}").toString();
	}

	@Override
	public boolean equals(@Nullable Object o) {

		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}
		TemplateVariables that = (TemplateVariables) o;
		return Objects.equals(this.variables, that.variables);
	}

	@Override
	public int hashCode() {
		return Objects.hash(this.variables);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy