-
Notifications
You must be signed in to change notification settings - Fork 466
Expand file tree
/
Copy pathCollectionModel.java
More file actions
359 lines (306 loc) · 9.8 KB
/
CollectionModel.java
File metadata and controls
359 lines (306 loc) · 9.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
/*
* Copyright 2012-2024 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 java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.Objects;
import org.jspecify.annotations.NonNull;
import org.jspecify.annotations.Nullable;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.core.ResolvableType;
import org.springframework.core.ResolvableTypeProvider;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* General helper to easily create a wrapper for a collection of entities.
*
* @author Oliver Gierke
* @author Greg Turnquist
*/
public class CollectionModel<T> extends RepresentationModel<CollectionModel<T>>
implements Iterable<T>, ResolvableTypeProvider {
// Not final to allow population by Jackson
private Collection<T> content;
private @Nullable ResolvableType fallbackType;
private @Nullable ResolvableType fullType;
/**
* Creates an empty {@link CollectionModel} instance.
*/
protected CollectionModel() {
this(Collections.emptyList());
}
protected CollectionModel(Iterable<T> content) {
this(content, Links.NONE, null);
}
protected CollectionModel(Iterable<T> content, Iterable<Link> links, @Nullable ResolvableType fallbackType) {
Assert.notNull(content, "Content must not be null!");
Assert.notNull(links, "Links must not be null!");
this.content = new ArrayList<>();
for (T element : content) {
this.content.add(element);
}
this.add(links);
this.fallbackType = fallbackType;
}
/**
* Creates a new empty collection model.
*
* @param <T>
* @return
* @since 1.1
*/
public static <T> CollectionModel<T> empty() {
return of(Collections.emptyList());
}
/**
* Creates a new empty collection model with the given type defined as fallback type.
*
* @param <T>
* @return
* @since 1.4
* @see #withFallbackType(Class, Class...)
*/
public static <T> CollectionModel<T> empty(Class<T> elementType, Class<?>... generics) {
return empty(ResolvableType.forClassWithGenerics(elementType, generics));
}
/**
* Creates a new empty collection model with the given type defined as fallback type.
*
* @param <T>
* @return
* @since 1.4
* @see #withFallbackType(ParameterizedTypeReference)
*/
public static <T> CollectionModel<T> empty(ParameterizedTypeReference<T> type) {
return empty(ResolvableType.forType(type.getType()));
}
/**
* Creates a new empty collection model with the given type defined as fallback type.
*
* @param <T>
* @return
* @since 1.4
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> empty(ResolvableType elementType) {
return new CollectionModel<>(Collections.emptyList(), Collections.emptyList(), elementType);
}
/**
* Creates a new empty collection model with the given links.
*
* @param <T>
* @param links must not be {@literal null}.
* @return
* @since 1.1
*/
public static <T> CollectionModel<T> empty(Link... links) {
return of(Collections.emptyList(), links);
}
/**
* Creates a new empty collection model with the given links.
*
* @param <T>
* @param links must not be {@literal null}.
* @return
* @since 1.1
*/
public static <T> CollectionModel<T> empty(Iterable<Link> links) {
return of(Collections.emptyList(), links);
}
/**
* Creates a {@link CollectionModel} instance with the given content.
*
* @param content must not be {@literal null}.
* @return
* @since 1.1
* @see #withFallbackType(Class, Class...)
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> of(Iterable<T> content) {
return of(content, Collections.emptyList());
}
/**
* Creates a {@link CollectionModel} instance with the given content and {@link Link}s (optional).
*
* @param content must not be {@literal null}.
* @param links the links to be added to the {@link CollectionModel}.
* @return
* @since 1.1
* @see #withFallbackType(Class, Class...)
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> of(Iterable<T> content, Link... links) {
return of(content, Arrays.asList(links));
}
/**
* s Creates a {@link CollectionModel} instance with the given content and {@link Link}s.
*
* @param content must not be {@literal null}.
* @param links the links to be added to the {@link CollectionModel}.
* @return
* @since 1.1
* @see #withFallbackType(Class, Class...)
* @see #withFallbackType(ResolvableType)
*/
public static <T> CollectionModel<T> of(Iterable<T> content, Iterable<Link> links) {
return new CollectionModel<>(content, links, null);
}
/**
* Creates a new {@link CollectionModel} instance by wrapping the given domain class instances into a
* {@link EntityModel}.
*
* @param content must not be {@literal null}.
* @return
*/
@SuppressWarnings("unchecked")
public static <T extends EntityModel<S>, S> CollectionModel<T> wrap(Iterable<S> content) {
Assert.notNull(content, "Content must not be null!");
ArrayList<T> resources = new ArrayList<>();
for (S element : content) {
resources.add((T) EntityModel.of(element));
}
return CollectionModel.of(resources);
}
/**
* Returns the underlying elements.
*
* @return the content will never be {@literal null}.
*/
@JsonProperty("content")
public Collection<T> getContent() {
return Collections.unmodifiableCollection(content);
}
/**
* Declares the given type as fallback element type in case the underlying collection is empty. This allows client
* components to still apply type matches at runtime.
*
* @param type must not be {@literal null}.
* @return will never be {@literal null}.
* @since 1.4
*/
public CollectionModel<T> withFallbackType(Class<? super T> type, Class<?>... generics) {
Assert.notNull(type, "Fallback type must not be null!");
Assert.notNull(generics, "Generics must not be null!");
return withFallbackType(ResolvableType.forClassWithGenerics(type, generics));
}
/**
* Declares the given type as fallback element type in case the underlying collection is empty. This allows client
* components to still apply type matches at runtime.
*
* @param type must not be {@literal null}.
* @return will never be {@literal null}.
* @since 1.4
*/
public CollectionModel<T> withFallbackType(ParameterizedTypeReference<?> type) {
Assert.notNull(type, "Fallback type must not be null!");
return withFallbackType(ResolvableType.forType(type));
}
/**
* Declares the given type as fallback element type in case the underlying collection is empty. This allows client
* components to still apply type matches at runtime.
*
* @param type must not be {@literal null}.
* @return will never be {@literal null}.
* @since 1.4
*/
public CollectionModel<T> withFallbackType(ResolvableType type) {
Assert.notNull(type, "Fallback type must not be null!");
return new CollectionModel<>(content, getLinks(), type);
}
/*
* (non-Javadoc)
* @see org.springframework.core.ResolvableTypeProvider#getResolvableType()
*/
@NonNull
@Override
@JsonIgnore
public ResolvableType getResolvableType() {
if (fullType == null) {
ResolvableType elementType = deriveElementType(this.content, fallbackType);
Class<?> type = this.getClass();
this.fullType = elementType == null || type.getTypeParameters().length == 0 //
? ResolvableType.forClass(type) //
: ResolvableType.forClassWithGenerics(type, elementType);
}
return fullType;
}
/*
* (non-Javadoc)
* @see java.lang.Iterable#iterator()
*/
@Override
public Iterator<T> iterator() {
return content.iterator();
}
/*
* (non-Javadoc)
* @see org.springframework.hateoas.RepresentationModel#toString()
*/
@Override
public String toString() {
return String.format("CollectionModel { content: %s, fallbackType: %s, %s }", //
getContent(), fallbackType, super.toString());
}
/*
* (non-Javadoc)
* @see org.springframework.hateoas.RepresentationModel#equals(java.lang.Object)
*/
@Override
public boolean equals(@Nullable Object obj) {
if (obj == this) {
return true;
}
if (obj == null || !obj.getClass().equals(getClass())) {
return false;
}
CollectionModel<?> that = (CollectionModel<?>) obj;
return Objects.equals(this.content, that.content)
&& Objects.equals(this.fallbackType, that.fallbackType)
&& super.equals(obj);
}
/*
* (non-Javadoc)
* @see org.springframework.hateoas.RepresentationModel#hashCode()
*/
@Override
public int hashCode() {
return super.hashCode() + Objects.hash(content, fallbackType);
}
/**
* Determines the most common element type from the given elements defaulting to the given fallback type.
*
* @param elements must not be {@literal null}.
* @param fallbackType can be {@literal null}.
* @return
*/
@Nullable
private static ResolvableType deriveElementType(Collection<?> elements, @Nullable ResolvableType fallbackType) {
if (elements.isEmpty()) {
return fallbackType;
}
return elements.stream()
.filter(Objects::nonNull)
.<Class<?>> map(Object::getClass)
.reduce(ClassUtils::determineCommonAncestor)
.map(ResolvableType::forClass)
.orElse(fallbackType);
}
}