Move Identifier from Spring Data Relational to Spring Data JDBC.

Fix split-package between spring.data.jdbc and spring.data.relational across modules.

Closes #972.
This commit is contained in:
Mark Paluch
2021-05-17 11:41:55 +02:00
parent dfaaa51a34
commit 79200f4059

View File

@@ -0,0 +1,293 @@
/*
* Copyright 2019-2021 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.data.jdbc.core.convert;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import org.springframework.data.relational.core.sql.SqlIdentifier;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
/**
* {@literal Identifier} represents a composite id of an entity that may be composed of one or many parts. Parts or all
* of the entity might not have a representation as a property in the entity but might only be derived from other
* entities referencing it.
*
* @author Jens Schauder
* @author Mark Paluch
* @since 1.1
*/
public final class Identifier {
private static final Identifier EMPTY = new Identifier(Collections.emptyList());
private final List<SingleIdentifierValue> parts;
private Identifier(List<SingleIdentifierValue> parts) {
this.parts = parts;
}
/**
* Returns an empty {@link Identifier}.
*
* @return an empty {@link Identifier}.
*/
public static Identifier empty() {
return EMPTY;
}
/**
* Creates an {@link Identifier} from {@code name}, {@code value}, and a {@link Class target type}.
*
* @param name must not be {@literal null} or empty.
* @param value
* @param targetType must not be {@literal null}.
* @return the {@link Identifier} for {@code name}, {@code value}, and a {@link Class target type}.
*/
public static Identifier of(SqlIdentifier name, Object value, Class<?> targetType) {
Assert.notNull(name, "Name must not be empty!");
Assert.notNull(targetType, "Target type must not be null!");
return new Identifier(Collections.singletonList(new SingleIdentifierValue(name, value, targetType)));
}
/**
* Creates an {@link Identifier} from a {@link Map} of name to value tuples.
*
* @param map must not be {@literal null}.
* @return the {@link Identifier} from a {@link Map} of name to value tuples.
*/
public static Identifier from(Map<SqlIdentifier, Object> map) {
Assert.notNull(map, "Map must not be null!");
if (map.isEmpty()) {
return empty();
}
List<SingleIdentifierValue> values = new ArrayList<>();
map.forEach((k, v) -> {
values.add(new SingleIdentifierValue(k, v, v != null ? ClassUtils.getUserClass(v) : Object.class));
});
return new Identifier(Collections.unmodifiableList(values));
}
/**
* Creates a new {@link Identifier} from the current instance and sets the value for {@code key}. Existing key
* definitions for {@code name} are overwritten if they already exist.
*
* @param name must not be {@literal null} or empty.
* @param value
* @param targetType must not be {@literal null}.
* @return the {@link Identifier} containing all existing keys and the key part for {@code name}, {@code value}, and a
* {@link Class target type}.
*/
public Identifier withPart(SqlIdentifier name, Object value, Class<?> targetType) {
Assert.notNull(name, "Name must not be null!");
Assert.notNull(targetType, "Target type must not be null!");
boolean overwritten = false;
List<SingleIdentifierValue> keys = new ArrayList<>(this.parts.size() + 1);
for (SingleIdentifierValue singleValue : this.parts) {
if (singleValue.getName().equals(name)) {
overwritten = true;
keys.add(new SingleIdentifierValue(singleValue.getName(), value, targetType));
} else {
keys.add(singleValue);
}
}
if (!overwritten) {
keys.add(new SingleIdentifierValue(name, value, targetType));
}
return new Identifier(Collections.unmodifiableList(keys));
}
/**
* Returns a {@link Map} containing the identifier name to value tuples.
*
* @return a {@link Map} containing the identifier name to value tuples.
*/
public Map<SqlIdentifier, Object> toMap() {
Map<SqlIdentifier, Object> result = new StringKeyedLinkedHashMap<>(getParts().size());
forEach((name, value, type) -> result.put(name, value));
return result;
}
/**
* @return the {@link SingleIdentifierValue key parts}.
*/
public Collection<SingleIdentifierValue> getParts() {
return this.parts;
}
/**
* Performs the given action for each element of the {@link Identifier} until all elements have been processed or the
* action throws an exception. Unless otherwise specified by the implementing class, actions are performed in the
* order of iteration (if an iteration order is specified). Exceptions thrown by the action are relayed to the caller.
*
* @param consumer the action, must not be {@literal null}.
*/
public void forEach(IdentifierConsumer consumer) {
Assert.notNull(consumer, "IdentifierConsumer must not be null");
getParts().forEach(it -> consumer.accept(it.name, it.value, it.targetType));
}
/**
* Returns the number of key parts in this collection.
*
* @return the number of key parts in this collection.
*/
public int size() {
return this.parts.size();
}
/**
* A single value of an Identifier consisting of the column name, the value and the target type which is to be used to
* store the element in the database.
*
* @author Jens Schauder
*/
static final class SingleIdentifierValue {
private final SqlIdentifier name;
private final Object value;
private final Class<?> targetType;
private SingleIdentifierValue(SqlIdentifier name, @Nullable Object value, Class<?> targetType) {
Assert.notNull(name, "Name must not be null.");
Assert.notNull(targetType, "TargetType must not be null.");
this.name = name;
this.value = value;
this.targetType = targetType;
}
public SqlIdentifier getName() {
return this.name;
}
public Object getValue() {
return this.value;
}
public Class<?> getTargetType() {
return this.targetType;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
SingleIdentifierValue that = (SingleIdentifierValue) o;
return name.equals(that.name) && value.equals(that.value) && targetType.equals(that.targetType);
}
@Override
public int hashCode() {
return Objects.hash(name, value, targetType);
}
@Override
public String toString() {
return "SingleIdentifierValue{" + "name=" + name + ", value=" + value + ", targetType=" + targetType + '}';
}
}
/**
* Represents an operation that accepts identifier key parts (name, value and {@link Class target type}) defining a
* contract to consume {@link Identifier} values.
*
* @author Mark Paluch
*/
@FunctionalInterface
public interface IdentifierConsumer {
/**
* Performs this operation on the given arguments.
*
* @param name
* @param value
* @param targetType
*/
void accept(SqlIdentifier name, Object value, Class<?> targetType);
}
private static class StringKeyedLinkedHashMap<V> extends LinkedHashMap<SqlIdentifier, V> {
public StringKeyedLinkedHashMap(int initialCapacity) {
super(initialCapacity);
}
@Override
public V get(Object key) {
if (key instanceof String) {
for (SqlIdentifier sqlIdentifier : keySet()) {
if (sqlIdentifier.getReference().equals(key)) {
return super.get(sqlIdentifier);
}
}
}
return super.get(key);
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Identifier that = (Identifier) o;
return Objects.equals(parts, that.parts);
}
@Override
public int hashCode() {
return Objects.hash(parts);
}
@Override
public String toString() {
return "Identifier{" + "parts=" + parts + '}';
}
}